From 894ef16dacf1505df85e45e162a957ed933914f0 Mon Sep 17 00:00:00 2001 From: Andrea Vibelli Date: Tue, 21 Jan 2025 11:44:35 +0100 Subject: [PATCH 1/2] feat(SBOMER-287): Generate release manifests for Text-Only advisories --- .../core/features/sbom/utils/SbomUtils.java | 52 +++++- .../event/EventNotificationFiringUtil.java | 20 ++- .../ReleaseAdvisoryEventsListener.java | 12 +- ...java => StandardAdvisoryReleaseEvent.java} | 5 +- .../release/TextOnlyAdvisoryReleaseEvent.java | 34 ++++ .../feature/sbom/service/AdvisoryService.java | 165 +++++++++++++++--- .../ReleaseAdvisoryEventsListenerTest.java | 20 +-- 7 files changed, 254 insertions(+), 54 deletions(-) rename service/src/main/java/org/jboss/sbomer/service/feature/sbom/errata/event/release/{AdvisoryReleaseEvent.java => StandardAdvisoryReleaseEvent.java} (82%) create mode 100644 service/src/main/java/org/jboss/sbomer/service/feature/sbom/errata/event/release/TextOnlyAdvisoryReleaseEvent.java diff --git a/core/src/main/java/org/jboss/sbomer/core/features/sbom/utils/SbomUtils.java b/core/src/main/java/org/jboss/sbomer/core/features/sbom/utils/SbomUtils.java index dabcdacb6..c17a99286 100644 --- a/core/src/main/java/org/jboss/sbomer/core/features/sbom/utils/SbomUtils.java +++ b/core/src/main/java/org/jboss/sbomer/core/features/sbom/utils/SbomUtils.java @@ -99,6 +99,8 @@ import com.github.packageurl.PackageURL; import com.github.packageurl.PackageURLBuilder; +import org.jboss.sbomer.core.features.sbom.utils.RhVersionPattern; + public class SbomUtils { private SbomUtils() { @@ -175,7 +177,9 @@ private static void setCoordinates(Component component, Artifact artifact) { } else if (scopeName.length == 1) { component.setName(scopeName[0]); } else { - log.warn("Unexpected number of slashes in NPM artifact name {}, using it fully", coordinates.getName()); + log.warn( + "Unexpected number of slashes in NPM artifact name {}, using it fully", + coordinates.getName()); component.setName(coordinates.getName()); } component.setVersion(coordinates.getVersionString()); @@ -1066,4 +1070,50 @@ private static String rebuildPurl(Component component) { return null; } } + + /** + * Creates a new purl with the same name, namespace, subpath, type, version and qualifiers and add the specified + * qualifier. If "redHatComponentsOnly" is true, add the qualifiers only if the component has a Red Hat version. + * Finally rebuilds the purl to make sure it is valid and qualifiers are properly sorted. + * + * @param component the input component which has the purl to modify + * @param qualifiers the Map with the qualifiers key-value + * @param redHatComponentsOnly boolean, true if the qualifiers should be added only to components with Red Hat + * version + * @return The new validated purl as string. + */ + public static String addQualifiersToPurlOfComponent( + Component component, + Map qualifiers, + boolean redHatComponentsOnly) { + + // In case this is not a RH artifact, do not update the purl + if (redHatComponentsOnly && !RhVersionPattern.isRhVersion(component.getVersion()) + && !RhVersionPattern.isRhPurl(component.getPurl())) { + return component.getPurl(); + } + + try { + PackageURL purl = new PackageURL(component.getPurl()); + PackageURLBuilder builder = PackageURLBuilder.aPackageURL() + .withName(purl.getName()) + .withNamespace(purl.getNamespace()) + .withSubpath(purl.getSubpath()) + .withType(purl.getType()) + .withVersion(purl.getVersion()); + + if (purl.getQualifiers() != null) { + // Copy all the original qualifiers + purl.getQualifiers().forEach((k, v) -> builder.withQualifier(k, v)); + } + + // Add the qualifiers + qualifiers.forEach((k, v) -> builder.withQualifier(k, v)); + + return builder.build().toString(); + } catch (MalformedPackageURLException | IllegalArgumentException e) { + log.warn("Error while adding new qualifiers to component with purl {}", component.getPurl(), e); + return component.getPurl(); + } + } } diff --git a/service/src/main/java/org/jboss/sbomer/service/feature/sbom/errata/event/EventNotificationFiringUtil.java b/service/src/main/java/org/jboss/sbomer/service/feature/sbom/errata/event/EventNotificationFiringUtil.java index 0cdd04618..2c0281a2f 100644 --- a/service/src/main/java/org/jboss/sbomer/service/feature/sbom/errata/event/EventNotificationFiringUtil.java +++ b/service/src/main/java/org/jboss/sbomer/service/feature/sbom/errata/event/EventNotificationFiringUtil.java @@ -18,7 +18,8 @@ package org.jboss.sbomer.service.feature.sbom.errata.event; import org.jboss.sbomer.service.feature.sbom.errata.event.comment.RequestEventStatusUpdateEvent; -import org.jboss.sbomer.service.feature.sbom.errata.event.release.AdvisoryReleaseEvent; +import org.jboss.sbomer.service.feature.sbom.errata.event.release.StandardAdvisoryReleaseEvent; +import org.jboss.sbomer.service.feature.sbom.errata.event.release.TextOnlyAdvisoryReleaseEvent; import io.quarkus.arc.Arc; import jakarta.enterprise.event.Event; @@ -42,10 +43,18 @@ public static void notifyRequestEventStatusUpdate(Object requestEventNotificatio } public static void notifyAdvisoryRelease(Object advisoryReleaseNotification) { - AdvisoryReleaseEvent releaseEvent = (AdvisoryReleaseEvent) advisoryReleaseNotification; - log.info( - "Firing async event for advisory release update upon event with id: {}", - releaseEvent.getRequestEventId()); + if (advisoryReleaseNotification instanceof StandardAdvisoryReleaseEvent) { + StandardAdvisoryReleaseEvent releaseEvent = (StandardAdvisoryReleaseEvent) advisoryReleaseNotification; + log.info( + "Firing async event for standard advisory release update upon event with id: {}", + releaseEvent.getRequestEventId()); + } else { + TextOnlyAdvisoryReleaseEvent releaseEvent = (TextOnlyAdvisoryReleaseEvent) advisoryReleaseNotification; + log.info( + "Firing async event for text-only advisory release update upon event with id: {}", + releaseEvent.getRequestEventId()); + } + Event event = Arc.container().beanManager().getEvent(); event.fireAsync(advisoryReleaseNotification).whenComplete((result, throwable) -> { if (throwable != null) { @@ -53,5 +62,4 @@ public static void notifyAdvisoryRelease(Object advisoryReleaseNotification) { } }); } - } diff --git a/service/src/main/java/org/jboss/sbomer/service/feature/sbom/errata/event/release/ReleaseAdvisoryEventsListener.java b/service/src/main/java/org/jboss/sbomer/service/feature/sbom/errata/event/release/ReleaseAdvisoryEventsListener.java index 1dfe18338..7580795b8 100644 --- a/service/src/main/java/org/jboss/sbomer/service/feature/sbom/errata/event/release/ReleaseAdvisoryEventsListener.java +++ b/service/src/main/java/org/jboss/sbomer/service/feature/sbom/errata/event/release/ReleaseAdvisoryEventsListener.java @@ -116,8 +116,8 @@ public class ReleaseAdvisoryEventsListener { private static final String NVR_STANDARD_SEPARATOR = "-"; - public void onReleaseAdvisoryEvent(@ObservesAsync AdvisoryReleaseEvent event) { - log.debug("Event received for advisory release ..."); + public void onReleaseAdvisoryEvent(@ObservesAsync StandardAdvisoryReleaseEvent event) { + log.debug("Event received for standard advisory release ..."); RequestEvent requestEvent = requestEventRepository.findById(event.getRequestEventId()); try { @@ -206,7 +206,7 @@ protected void releaseManifestsForRPMBuilds( Errata erratum, Map> advisoryBuildDetails, V1Beta1RequestRecord advisoryManifestsRecord, - Map releaseGenerations, + Map releaseGenerations, String toolVersion, Component.Type productType, Map> productVersionToCPEs, @@ -240,7 +240,7 @@ protected void releaseManifestsForRPMBuilds( SbomUtils.addMissingSerialNumber(productVersionBom); - SbomGenerationRequest releaseGeneration = releaseGenerations.get(productVersion); + SbomGenerationRequest releaseGeneration = releaseGenerations.get(productVersion.getName()); Sbom sbom = saveReleaseManifestForRPMGeneration( requestEvent, erratum, @@ -276,7 +276,7 @@ protected void releaseManifestsForDockerBuilds( Errata erratum, Map> advisoryBuildDetails, V1Beta1RequestRecord advisoryManifestsRecord, - Map releaseGenerations, + Map releaseGenerations, String toolVersion, Component.Type productType, Map> productVersionToCPEs, @@ -309,7 +309,7 @@ protected void releaseManifestsForDockerBuilds( SbomUtils.addMissingSerialNumber(productVersionBom); - SbomGenerationRequest releaseGeneration = releaseGenerations.get(productVersion); + SbomGenerationRequest releaseGeneration = releaseGenerations.get(productVersion.getName()); Sbom sbom = saveReleaseManifestForDockerGeneration( requestEvent, erratum, diff --git a/service/src/main/java/org/jboss/sbomer/service/feature/sbom/errata/event/release/AdvisoryReleaseEvent.java b/service/src/main/java/org/jboss/sbomer/service/feature/sbom/errata/event/release/StandardAdvisoryReleaseEvent.java similarity index 82% rename from service/src/main/java/org/jboss/sbomer/service/feature/sbom/errata/event/release/AdvisoryReleaseEvent.java rename to service/src/main/java/org/jboss/sbomer/service/feature/sbom/errata/event/release/StandardAdvisoryReleaseEvent.java index 7c8f505f2..5ddcc64f5 100644 --- a/service/src/main/java/org/jboss/sbomer/service/feature/sbom/errata/event/release/AdvisoryReleaseEvent.java +++ b/service/src/main/java/org/jboss/sbomer/service/feature/sbom/errata/event/release/StandardAdvisoryReleaseEvent.java @@ -19,7 +19,6 @@ import java.util.Map; -import org.jboss.sbomer.service.feature.sbom.errata.dto.ErrataBuildList.ProductVersionEntry; import org.jboss.sbomer.service.feature.sbom.model.SbomGenerationRequest; import lombok.Builder; @@ -27,9 +26,9 @@ @Data @Builder(setterPrefix = "with") -public class AdvisoryReleaseEvent { +public class StandardAdvisoryReleaseEvent { final String requestEventId; - final Map releaseGenerations; + final Map releaseGenerations; } diff --git a/service/src/main/java/org/jboss/sbomer/service/feature/sbom/errata/event/release/TextOnlyAdvisoryReleaseEvent.java b/service/src/main/java/org/jboss/sbomer/service/feature/sbom/errata/event/release/TextOnlyAdvisoryReleaseEvent.java new file mode 100644 index 000000000..a931b0a0b --- /dev/null +++ b/service/src/main/java/org/jboss/sbomer/service/feature/sbom/errata/event/release/TextOnlyAdvisoryReleaseEvent.java @@ -0,0 +1,34 @@ +/* + * JBoss, Home of Professional Open Source. + * Copyright 2023 Red Hat, Inc., and individual contributors + * as indicated by the @author tags. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.jboss.sbomer.service.feature.sbom.errata.event.release; + +import java.util.Map; + +import org.jboss.sbomer.service.feature.sbom.model.SbomGenerationRequest; + +import lombok.Builder; +import lombok.Data; + +@Data +@Builder(setterPrefix = "with") +public class TextOnlyAdvisoryReleaseEvent { + + final String requestEventId; + final Map releaseGenerations; + +} diff --git a/service/src/main/java/org/jboss/sbomer/service/feature/sbom/service/AdvisoryService.java b/service/src/main/java/org/jboss/sbomer/service/feature/sbom/service/AdvisoryService.java index e9b4ba351..76a86d9b8 100644 --- a/service/src/main/java/org/jboss/sbomer/service/feature/sbom/service/AdvisoryService.java +++ b/service/src/main/java/org/jboss/sbomer/service/feature/sbom/service/AdvisoryService.java @@ -27,12 +27,13 @@ import java.util.List; import java.util.Map; import java.util.Optional; +import java.util.Set; import java.util.stream.Collectors; import org.eclipse.microprofile.faulttolerance.Retry; import org.eclipse.microprofile.rest.client.inject.RestClient; -import org.jboss.pnc.build.finder.koji.ClientSession; import org.jboss.pnc.build.finder.koji.KojiClientSession; +import org.jboss.pnc.common.Strings; import org.jboss.sbomer.core.SchemaValidator.ValidationResult; import org.jboss.sbomer.core.config.request.ErrataAdvisoryRequestConfig; import org.jboss.sbomer.core.config.request.PncAnalysisRequestConfig; @@ -59,11 +60,13 @@ import org.jboss.sbomer.service.feature.sbom.errata.dto.ErrataBuildList.Build; import org.jboss.sbomer.service.feature.sbom.errata.dto.ErrataBuildList.BuildItem; import org.jboss.sbomer.service.feature.sbom.errata.dto.ErrataBuildList.ProductVersionEntry; +import org.jboss.sbomer.service.feature.sbom.errata.dto.ErrataRelease.ErrataProductVersion; import org.jboss.sbomer.service.feature.sbom.errata.dto.ErrataProduct; import org.jboss.sbomer.service.feature.sbom.errata.dto.ErrataRelease; import org.jboss.sbomer.service.feature.sbom.errata.dto.enums.ErrataStatus; import org.jboss.sbomer.service.feature.sbom.errata.event.comment.RequestEventStatusUpdateEvent; -import org.jboss.sbomer.service.feature.sbom.errata.event.release.AdvisoryReleaseEvent; +import org.jboss.sbomer.service.feature.sbom.errata.event.release.StandardAdvisoryReleaseEvent; +import org.jboss.sbomer.service.feature.sbom.errata.event.release.TextOnlyAdvisoryReleaseEvent; import org.jboss.sbomer.service.feature.sbom.k8s.model.GenerationRequest; import org.jboss.sbomer.service.feature.sbom.k8s.model.GenerationRequestBuilder; import org.jboss.sbomer.service.feature.sbom.k8s.model.SbomGenerationStatus; @@ -194,9 +197,126 @@ private Collection handleTextOnlyAdvisory(RequestEvent re return doIgnoreRequest(requestEvent, reason); } - List requestConfigsWithinNotes = new ArrayList<>(); JsonNode notes = maybeNotes.get(); + // The SBOMs are manually provided inside the notes field "manifest" as a list of purls + if (notes.has("manifest")) { + + log.debug( + "Text-Only Errata Advisory '{}'({}) has a \"manifest\" Notes field", + erratum.getDetails().get().getFulladvisory(), + erratum.getDetails().get().getId()); + + if (ErrataStatus.SHIPPED_LIVE.equals(erratum.getDetails().get().getStatus())) { + // We can proceed with the release event notification, we trust the owners of the advisory to push live + // when appropriate + String productVersionText = erratum.getContent().getContent().getProductVersionText(); + String cpeText = erratum.getContent().getContent().getTextOnlyCpe(); + if (Strings.isEmpty(productVersionText) || Strings.isEmpty(cpeText)) { + String reason = String.format( + "Text-Only Errata Advisory '%s'(%s) does not have Product Version or CPE configured", + erratum.getDetails().get().getFulladvisory(), + erratum.getDetails().get().getId()); + + return doIgnoreRequest(requestEvent, reason); + } + + Map releaseGenerations = createReleaseManifestsGenerationsForType( + erratum, + requestEvent, + Set.of(productVersionText), + GenerationRequestType.BUILD); + + // Send an async notification for the release event + notifyAdvisoryRelease( + TextOnlyAdvisoryReleaseEvent.builder() + .withRequestEventId(requestEvent.getId()) + .withReleaseGenerations(releaseGenerations) + .build()); + + return releaseGenerations.values(); + + } else if (ErrataStatus.QE.equals(erratum.getDetails().get().getStatus())) { + + // Send an async notification for the completed generations (will be used to add comments to Errata) + notifyRequestEventStatusUpdate( + RequestEventStatusUpdateEvent.builder() + .withRequestEventConfig( + ErrataAdvisoryRequestConfig.builder() + .withAdvisoryId(String.valueOf(erratum.getDetails().get().getId())) + .build()) + .withRequestEventStatus(RequestEventStatus.SUCCESS) + .build()); + } + + // There is nothing to do for SBOMer, beside adding comments to the Errata + updateRequest(requestEvent, RequestEventStatus.SUCCESS, null); + + return Collections.emptyList(); + } else { + // The notes contain 1 or more configurations inside a "deliverables" field that SBOMer needs to handle by + // converting them to generations + log.debug( + "Text-Only Errata Advisory '{}'({}) has a \"deliverables\" Notes field", + erratum.getDetails().get().getFulladvisory(), + erratum.getDetails().get().getId()); + + // If the status is SHIPPED_LIVE and there is a successful generation for this advisory, create release + // manifests. Otherwise SBOMer will default to the creation of build manifests. Will change in future! + V1Beta1RequestRecord successfulRequestRecord = null; + if (ErrataStatus.SHIPPED_LIVE.equals(erratum.getDetails().get().getStatus())) { + log.debug( + "Errata status is SHIPPED_LIVE, looking for successful request records for advisory {}", + erratum.getDetails().get().getId()); + successfulRequestRecord = sbomService.searchLastSuccessfulAdvisoryRequestRecord( + requestEvent.getId(), + String.valueOf(erratum.getDetails().get().getId())); + } + + if (successfulRequestRecord == null) { + List requestConfigsWithinNotes = parseRequestConfigsFromJsonNotes( + notes, + requestEvent, + erratum); + return processRequestConfigsWithinNotes(requestEvent, requestConfigsWithinNotes); + } else { + // We can proceed with the release event notification, we trust the owners of the advisory to push live + // when appropriate + String productVersionText = erratum.getContent().getContent().getProductVersionText(); + String cpeText = erratum.getContent().getContent().getTextOnlyCpe(); + if (Strings.isEmpty(productVersionText) || Strings.isEmpty(cpeText)) { + String reason = String.format( + "Text-Only Errata Advisory '%s'(%s) does not have Product Version or CPE configured", + erratum.getDetails().get().getFulladvisory(), + erratum.getDetails().get().getId()); + + return doIgnoreRequest(requestEvent, reason); + } + + Map releaseGenerations = createReleaseManifestsGenerationsForType( + erratum, + requestEvent, + Set.of(productVersionText), + GenerationRequestType.BUILD); + + // Send an async notification for the release event + notifyAdvisoryRelease( + TextOnlyAdvisoryReleaseEvent.builder() + .withRequestEventId(requestEvent.getId()) + .withReleaseGenerations(releaseGenerations) + .build()); + + return releaseGenerations.values(); + } + } + } + + private List parseRequestConfigsFromJsonNotes( + JsonNode notes, + RequestEvent requestEvent, + Errata erratum) { + + List requestConfigsWithinNotes = new ArrayList<>(); if (notes.has("deliverables")) { JsonNode deliverables = notes.path("deliverables"); @@ -209,6 +329,7 @@ private Collection handleTextOnlyAdvisory(RequestEvent re if (requestConfig != null) { requestConfigsWithinNotes.add(requestConfig); } else { + // While it is fine to ignore empty notes, an invalid json notes field should trigger an error String reason = String.format( "Unsupported deliverable type '%s' in Text-Only Errata Advisory '%s' (%s)", type, @@ -225,23 +346,8 @@ private Collection handleTextOnlyAdvisory(RequestEvent re "Text-Only Errata Advisory '{}'({}) has a \"manifest\" Notes field", erratum.getDetails().get().getFulladvisory(), erratum.getDetails().get().getId()); - - // There is nothing to do for SBOMer, beside adding comments to the Errata - updateRequest(requestEvent, RequestEventStatus.SUCCESS, null); - - // Send an async notification for the completed generations (will be used to add comments to Errata) - notifyRequestEventStatusUpdate( - RequestEventStatusUpdateEvent.builder() - .withRequestEventConfig( - ErrataAdvisoryRequestConfig.builder() - .withAdvisoryId(String.valueOf(erratum.getDetails().get().getId())) - .build()) - .withRequestEventStatus(RequestEventStatus.SUCCESS) - .build()); } - - return requestConfigsWithinNotes.isEmpty() ? Collections.emptyList() - : processRequestConfigsWithinNotes(requestEvent, requestConfigsWithinNotes); + return requestConfigsWithinNotes; } private Collection handleStandardAdvisory(RequestEvent requestEvent, Errata erratum) { @@ -415,26 +521,26 @@ protected Collection createBuildManifestsForDockerBuilds( } @Transactional - protected Map createReleaseManifestsGenerationsForType( + protected Map createReleaseManifestsGenerationsForType( Errata erratum, RequestEvent requestEvent, - Map> buildDetails, + Set productVersions, GenerationRequestType type) { // We need to create 1 release manifest per ProductVersion // We will identify the Generation with the {Errata}#{ProductVersion} identifier - Map pvToGenerations = new HashMap(); - buildDetails.keySet().forEach(pv -> { + Map pvToGenerations = new HashMap(); + productVersions.forEach(pvName -> { SbomGenerationRequest sbomGenerationRequest = SbomGenerationRequest.builder() .withId(RandomStringIdGenerator.generate()) - .withIdentifier(erratum.getDetails().get().getFulladvisory() + "#" + pv.getName()) + .withIdentifier(erratum.getDetails().get().getFulladvisory() + "#" + pvName) .withType(type) .withStatus(SbomGenerationStatus.GENERATING) .withConfig(null) // I really don't know what to put here .withRequest(requestEvent) .build(); - pvToGenerations.put(pv, generationRequestRepository.save(sbomGenerationRequest)); + pvToGenerations.put(pvName, generationRequestRepository.save(sbomGenerationRequest)); }); return pvToGenerations; } @@ -455,15 +561,18 @@ protected Collection createReleaseManifestsForBuildsOfTyp return doIgnoreRequest(requestEvent, "Standard Errata RPM release manifest generation is disabled"); } - Map releaseGenerations = createReleaseManifestsGenerationsForType( + Map releaseGenerations = createReleaseManifestsGenerationsForType( erratum, requestEvent, - buildDetails, + buildDetails.keySet() + .stream() + .map(prodVersionEntry -> prodVersionEntry.getName()) + .collect(Collectors.toSet()), type); // Send an async notification for the completed generations (will be used to add comments to Errata) notifyAdvisoryRelease( - AdvisoryReleaseEvent.builder() + StandardAdvisoryReleaseEvent.builder() .withRequestEventId(requestEvent.getId()) .withReleaseGenerations(releaseGenerations) .build()); diff --git a/service/src/test/java/org/jboss/sbomer/service/test/unit/feature/sbom/errata/ReleaseAdvisoryEventsListenerTest.java b/service/src/test/java/org/jboss/sbomer/service/test/unit/feature/sbom/errata/ReleaseAdvisoryEventsListenerTest.java index 918dedfc2..30cc30c83 100644 --- a/service/src/test/java/org/jboss/sbomer/service/test/unit/feature/sbom/errata/ReleaseAdvisoryEventsListenerTest.java +++ b/service/src/test/java/org/jboss/sbomer/service/test/unit/feature/sbom/errata/ReleaseAdvisoryEventsListenerTest.java @@ -52,7 +52,7 @@ import org.jboss.sbomer.service.feature.sbom.errata.dto.ErrataCDNRepo; import org.jboss.sbomer.service.feature.sbom.errata.dto.ErrataCDNRepoNormalized; import org.jboss.sbomer.service.feature.sbom.errata.dto.ErrataVariant; -import org.jboss.sbomer.service.feature.sbom.errata.event.release.AdvisoryReleaseEvent; +import org.jboss.sbomer.service.feature.sbom.errata.event.release.StandardAdvisoryReleaseEvent; import org.jboss.sbomer.service.feature.sbom.errata.event.release.ReleaseAdvisoryEventsListener; import org.jboss.sbomer.service.feature.sbom.k8s.model.SbomGenerationStatus; import org.jboss.sbomer.service.feature.sbom.model.RandomStringIdGenerator; @@ -488,7 +488,7 @@ void testReleaseErrataWithSingleDockerBuild() throws IOException { .collect(Collectors.toList()))); V1Beta1RequestRecord latestAdvisoryRequestManifest = allAdvisoryRequestRecords.get(0); - Map pvToGenerations = new HashMap(); + Map pvToGenerations = new HashMap(); Map generationsMap = new HashMap(); buildDetails.keySet().forEach(pv -> { @@ -503,7 +503,7 @@ void testReleaseErrataWithSingleDockerBuild() throws IOException { .build(); generationsMap.put(generationId, sbomGenerationRequest); - pvToGenerations.put(pv, sbomGenerationRequest); + pvToGenerations.put(pv.getName(), sbomGenerationRequest); }); when(errataClient.getVariant("AppStream-8.10.0.Z.MAIN.EUS")).thenReturn(variant); when(errataClient.getBuildsList(String.valueOf(errata.getDetails().get().getId()))) @@ -527,7 +527,7 @@ void testReleaseErrataWithSingleDockerBuild() throws IOException { when(sbomService.searchLastSuccessfulAdvisoryRequestRecord(anyString(), anyString())) .thenReturn(latestAdvisoryRequestManifest); - AdvisoryReleaseEvent event = AdvisoryReleaseEvent.builder() + StandardAdvisoryReleaseEvent event = StandardAdvisoryReleaseEvent.builder() .withRequestEventId(requestEvent.getId()) .withReleaseGenerations(pvToGenerations) .build(); @@ -629,7 +629,7 @@ void testReleaseErrataWithMultiDockerBuilds() throws IOException { .collect(Collectors.toList()))); V1Beta1RequestRecord latestAdvisoryRequestManifest = allAdvisoryRequestRecords.get(0); - Map pvToGenerations = new HashMap(); + Map pvToGenerations = new HashMap(); Map generationsMap = new HashMap(); buildDetails.keySet().forEach(pv -> { @@ -644,7 +644,7 @@ void testReleaseErrataWithMultiDockerBuilds() throws IOException { .build(); generationsMap.put(generationId, sbomGenerationRequest); - pvToGenerations.put(pv, sbomGenerationRequest); + pvToGenerations.put(pv.getName(), sbomGenerationRequest); }); when(errataClient.getVariant("8Base-RHOSE-4.15")).thenReturn(variant8BaseRHOSE415); @@ -670,7 +670,7 @@ void testReleaseErrataWithMultiDockerBuilds() throws IOException { when(sbomService.searchLastSuccessfulAdvisoryRequestRecord(anyString(), anyString())) .thenReturn(latestAdvisoryRequestManifest); - AdvisoryReleaseEvent event = AdvisoryReleaseEvent.builder() + StandardAdvisoryReleaseEvent event = StandardAdvisoryReleaseEvent.builder() .withRequestEventId(requestEvent.getId()) .withReleaseGenerations(pvToGenerations) .build(); @@ -713,7 +713,7 @@ void testReleaseErrataWithSingleRPMBuild() throws IOException { .collect(Collectors.toList()))); V1Beta1RequestRecord latestAdvisoryRequestManifest = allAdvisoryRequestRecords.get(0); - Map pvToGenerations = new HashMap(); + Map pvToGenerations = new HashMap(); Map generationsMap = new HashMap(); buildDetails.keySet().forEach(pv -> { @@ -728,7 +728,7 @@ void testReleaseErrataWithSingleRPMBuild() throws IOException { .build(); generationsMap.put(generationId, sbomGenerationRequest); - pvToGenerations.put(pv, sbomGenerationRequest); + pvToGenerations.put(pv.getName(), sbomGenerationRequest); }); when(errataClient.getVariant("7ComputeNode-7.2.Z")).thenReturn(variant); when(errataClient.getBuildsList(String.valueOf(errata.getDetails().get().getId()))) @@ -751,7 +751,7 @@ void testReleaseErrataWithSingleRPMBuild() throws IOException { when(sbomService.searchLastSuccessfulAdvisoryRequestRecord(anyString(), anyString())) .thenReturn(latestAdvisoryRequestManifest); - AdvisoryReleaseEvent event = AdvisoryReleaseEvent.builder() + StandardAdvisoryReleaseEvent event = StandardAdvisoryReleaseEvent.builder() .withRequestEventId(requestEvent.getId()) .withReleaseGenerations(pvToGenerations) .build(); From 60e5a153bcfc38739956d2204630f9e0fb87dd23 Mon Sep 17 00:00:00 2001 From: Andrea Vibelli Date: Wed, 22 Jan 2025 17:58:19 +0100 Subject: [PATCH 2/2] chore: add test for manifest based TextOnly advisories --- .../core/features/sbom/utils/SbomUtils.java | 3 - ...ReleaseStandardAdvisoryEventsListener.java | 971 + ...ReleaseTextOnlyAdvisoryEventsListener.java | 470 + .../ReleaseAdvisoryEventsListenerTest.java | 201 +- .../textOnly/manifests/6346322A131A437.json | 88066 ++++++++++++++++ .../release/textOnly/manifests/errata.json | 58 + .../textOnly/manifests/request_event.json | 20 + 7 files changed, 89768 insertions(+), 21 deletions(-) create mode 100644 service/src/main/java/org/jboss/sbomer/service/feature/sbom/errata/event/release/ReleaseStandardAdvisoryEventsListener.java create mode 100644 service/src/main/java/org/jboss/sbomer/service/feature/sbom/errata/event/release/ReleaseTextOnlyAdvisoryEventsListener.java create mode 100644 service/src/test/resources/errata/release/textOnly/manifests/6346322A131A437.json create mode 100644 service/src/test/resources/errata/release/textOnly/manifests/errata.json create mode 100644 service/src/test/resources/errata/release/textOnly/manifests/request_event.json diff --git a/core/src/main/java/org/jboss/sbomer/core/features/sbom/utils/SbomUtils.java b/core/src/main/java/org/jboss/sbomer/core/features/sbom/utils/SbomUtils.java index c17a99286..8b402fd9e 100644 --- a/core/src/main/java/org/jboss/sbomer/core/features/sbom/utils/SbomUtils.java +++ b/core/src/main/java/org/jboss/sbomer/core/features/sbom/utils/SbomUtils.java @@ -82,7 +82,6 @@ import org.jboss.pnc.dto.Artifact; import org.jboss.pnc.dto.Build; import org.jboss.pnc.dto.DeliverableAnalyzerOperation; -import org.jboss.pnc.enums.BuildType; import org.jboss.pnc.restclient.util.ArtifactUtil; import org.jboss.sbomer.core.features.sbom.Constants; import org.jboss.sbomer.core.features.sbom.config.Config; @@ -99,8 +98,6 @@ import com.github.packageurl.PackageURL; import com.github.packageurl.PackageURLBuilder; -import org.jboss.sbomer.core.features.sbom.utils.RhVersionPattern; - public class SbomUtils { private SbomUtils() { diff --git a/service/src/main/java/org/jboss/sbomer/service/feature/sbom/errata/event/release/ReleaseStandardAdvisoryEventsListener.java b/service/src/main/java/org/jboss/sbomer/service/feature/sbom/errata/event/release/ReleaseStandardAdvisoryEventsListener.java new file mode 100644 index 000000000..89d2b63bb --- /dev/null +++ b/service/src/main/java/org/jboss/sbomer/service/feature/sbom/errata/event/release/ReleaseStandardAdvisoryEventsListener.java @@ -0,0 +1,971 @@ +/* + * JBoss, Home of Professional Open Source. + * Copyright 2023 Red Hat, Inc., and individual contributors + * as indicated by the @author tags. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.jboss.sbomer.service.feature.sbom.errata.event.release; + +import java.util.ArrayList; +import java.util.Collection; +import java.util.Collections; +import java.util.Date; +import java.util.HashMap; +import java.util.HashSet; +import java.util.List; +import java.util.Map; +import java.util.Objects; +import java.util.Set; +import java.util.TreeSet; +import java.util.stream.Collectors; + +import org.cyclonedx.model.Bom; +import org.cyclonedx.model.Component; +import org.cyclonedx.model.Dependency; +import org.cyclonedx.model.Metadata; +import org.cyclonedx.model.component.evidence.Identity.Field; +import org.eclipse.microprofile.faulttolerance.Retry; +import org.eclipse.microprofile.rest.client.inject.RestClient; +import org.jboss.sbomer.core.config.request.ErrataAdvisoryRequestConfig; +import org.jboss.sbomer.core.dto.v1beta1.V1Beta1GenerationRecord; +import org.jboss.sbomer.core.dto.v1beta1.V1Beta1RequestManifestRecord; +import org.jboss.sbomer.core.dto.v1beta1.V1Beta1RequestRecord; +import org.jboss.sbomer.core.errors.ApplicationException; +import org.jboss.sbomer.core.features.sbom.enums.GenerationRequestType; +import org.jboss.sbomer.core.features.sbom.enums.GenerationResult; +import org.jboss.sbomer.core.features.sbom.enums.RequestEventStatus; +import org.jboss.sbomer.core.features.sbom.utils.ObjectMapperProvider; +import org.jboss.sbomer.core.features.sbom.utils.SbomUtils; +import org.jboss.sbomer.service.feature.sbom.errata.ErrataClient; +import org.jboss.sbomer.service.feature.sbom.errata.dto.Errata; +import org.jboss.sbomer.service.feature.sbom.errata.dto.ErrataBuildList; +import org.jboss.sbomer.service.feature.sbom.errata.dto.ErrataBuildList.BuildItem; +import org.jboss.sbomer.service.feature.sbom.errata.dto.ErrataBuildList.ProductVersionEntry; +import org.jboss.sbomer.service.feature.sbom.errata.dto.ErrataCDNRepoNormalized; +import org.jboss.sbomer.service.feature.sbom.errata.event.AdvisoryEventUtils; +import org.jboss.sbomer.service.feature.sbom.k8s.model.SbomGenerationStatus; +import org.jboss.sbomer.service.feature.sbom.model.RequestEvent; +import org.jboss.sbomer.service.feature.sbom.model.Sbom; +import org.jboss.sbomer.service.feature.sbom.model.SbomGenerationRequest; +import org.jboss.sbomer.service.feature.sbom.pyxis.PyxisClient; +import org.jboss.sbomer.service.feature.sbom.pyxis.dto.PyxisRepository; +import org.jboss.sbomer.service.feature.sbom.pyxis.dto.PyxisRepositoryDetails; +import org.jboss.sbomer.service.feature.sbom.pyxis.dto.RepositoryCoordinates; +import org.jboss.sbomer.service.feature.sbom.service.RequestEventRepository; +import org.jboss.sbomer.service.feature.sbom.service.SbomGenerationRequestRepository; +import org.jboss.sbomer.service.feature.sbom.service.SbomService; +import org.jboss.sbomer.service.stats.StatsService; + +import com.fasterxml.jackson.databind.node.ArrayNode; +import com.fasterxml.jackson.databind.node.ObjectNode; +import com.github.packageurl.MalformedPackageURLException; +import com.github.packageurl.PackageURL; + +import io.quarkus.narayana.jta.QuarkusTransaction; +import jakarta.enterprise.context.ApplicationScoped; +import jakarta.enterprise.event.ObservesAsync; +import jakarta.inject.Inject; +import jakarta.transaction.Transactional; +import jakarta.transaction.Transactional.TxType; +import lombok.Setter; +import lombok.extern.slf4j.Slf4j; + +@ApplicationScoped +@Slf4j +public class ReleaseStandardAdvisoryEventsListener { + + // Set the long transaction imeout to 10 mins + private static final int INCREASED_TIMEOUT_SEC = 600; + + @Inject + @RestClient + @Setter + ErrataClient errataClient; + + @Inject + @RestClient + @Setter + PyxisClient pyxisClient; + + @Inject + @Setter + SbomService sbomService; + + @Inject + @Setter + StatsService statsService; + + @Inject + @Setter + SbomGenerationRequestRepository generationRequestRepository; + + @Inject + @Setter + RequestEventRepository requestEventRepository; + + private static final String NVR_STANDARD_SEPARATOR = "-"; + + public void onReleaseAdvisoryEvent(@ObservesAsync StandardAdvisoryReleaseEvent event) { + log.debug("Event received for standard advisory release ..."); + + RequestEvent requestEvent = requestEventRepository.findById(event.getRequestEventId()); + try { + ErrataAdvisoryRequestConfig config = (ErrataAdvisoryRequestConfig) requestEvent.getRequestConfig(); + Errata erratum = errataClient.getErratum(config.getAdvisoryId()); + Map> advisoryBuildDetails = getAdvisoryBuildDetails( + config.getAdvisoryId()); + V1Beta1RequestRecord advisoryManifestsRecord = sbomService + .searchLastSuccessfulAdvisoryRequestRecord(requestEvent.getId(), config.getAdvisoryId()); + + String toolVersion = statsService.getStats().getVersion(); + Component.Type productType = AdvisoryEventUtils + .getComponentTypeForProduct(erratum.getDetails().get().getProduct().getShortName()); + + // Associate each ProductVersion to its list of CPEs + Map> productVersionToCPEs = mapProductVersionToCPEs(advisoryBuildDetails); + + // Associate each build (NVR) in an advisory to its build manifest generation + Map nvrToBuildGeneration = mapNVRToBuildGeneration( + advisoryManifestsRecord); + + if (erratum.getDetails().get().getContentTypes().contains("docker")) { + + log.debug( + "Creating release manifests for Docker builds of advisory: '{}'[{}]", + erratum.getDetails().get().getFulladvisory(), + erratum.getDetails().get().getId()); + releaseManifestsForDockerBuilds( + requestEvent, + erratum, + advisoryBuildDetails, + advisoryManifestsRecord, + event.getReleaseGenerations(), + toolVersion, + productType, + productVersionToCPEs, + nvrToBuildGeneration); + } else { + + log.debug( + "Creating release manifests for RPM builds of advisory: '{}'[{}]", + erratum.getDetails().get().getFulladvisory(), + erratum.getDetails().get().getId()); + + releaseManifestsForRPMBuilds( + requestEvent, + erratum, + advisoryBuildDetails, + advisoryManifestsRecord, + event.getReleaseGenerations(), + toolVersion, + productType, + productVersionToCPEs, + nvrToBuildGeneration); + } + } catch (Exception e) { + log.error( + "An error occured during the creation of release manifests for event '{}'", + requestEvent.getId(), + e); + markRequestFailed(requestEvent, event.getReleaseGenerations().values()); + } + + // Let's trigger the update of statuses and advisory comments + doUpdateGenerationsStatus(event.getReleaseGenerations().values()); + } + + @Transactional(value = TxType.REQUIRES_NEW) + protected void markRequestFailed(RequestEvent requestEvent, Collection releaseGenerations) { + String reason = "An error occured during the creation of the release manifest"; + log.error(reason); + + requestEvent = requestEventRepository.findById(requestEvent.getId()); + requestEvent.setEventStatus(RequestEventStatus.FAILED); + requestEvent.setReason(reason); + + for (SbomGenerationRequest generation : releaseGenerations) { + generation = generationRequestRepository.findById(generation.getId()); + generation.setStatus(SbomGenerationStatus.FAILED); + generation.setReason(reason); + } + } + + protected void releaseManifestsForRPMBuilds( + RequestEvent requestEvent, + Errata erratum, + Map> advisoryBuildDetails, + V1Beta1RequestRecord advisoryManifestsRecord, + Map releaseGenerations, + String toolVersion, + Component.Type productType, + Map> productVersionToCPEs, + Map nvrToBuildGeneration) { + + advisoryBuildDetails.forEach((productVersion, buildItems) -> { + + // Create the release manifest for this ProductVersion + Bom productVersionBom = createProductVersionBom( + productVersion, + productType, + productVersionToCPEs, + erratum, + toolVersion); + + Map> generationToCDNs = new HashMap>(); + + for (BuildItem buildItem : buildItems) { + + Component nvrRootComponent = createRootComponentForRPMBuildItem( + buildItem, + nvrToBuildGeneration.get(buildItem.getNvr()), + advisoryManifestsRecord, + erratum.getDetails().get().getProduct().getShortName(), + generationToCDNs); + + // Add the component to the release manifest components and add the purl to the "provides" list + productVersionBom.addComponent(nvrRootComponent); + productVersionBom.getDependencies().get(0).addProvides(new Dependency(nvrRootComponent.getPurl())); + } + + SbomUtils.addMissingSerialNumber(productVersionBom); + + SbomGenerationRequest releaseGeneration = releaseGenerations.get(productVersion.getName()); + Sbom sbom = saveReleaseManifestForRPMGeneration( + requestEvent, + erratum, + productVersion, + toolVersion, + releaseGeneration, + productVersionBom, + advisoryManifestsRecord, + generationToCDNs); + + log.info( + "Saved and modified SBOM '{}' for generation '{}' for ProductVersion '{}' of errata '{}'", + sbom, + releaseGeneration.getId(), + productVersion.getName(), + erratum.getDetails().get().getFulladvisory()); + }); + } + + @Transactional + protected void doUpdateGenerationsStatus(Collection releaseGenerations) { + // Update only one SbomGenerationRequest, because the requestEvent associated is the same for all of them. This + // avoids duplicated comments in the advisory + if (releaseGenerations != null && !releaseGenerations.isEmpty()) { + SbomGenerationRequest generation = releaseGenerations.iterator().next(); + generation = generationRequestRepository.findById(generation.getId()); + SbomGenerationRequest.updateRequestEventStatus(generation); + } + } + + protected void releaseManifestsForDockerBuilds( + RequestEvent requestEvent, + Errata erratum, + Map> advisoryBuildDetails, + V1Beta1RequestRecord advisoryManifestsRecord, + Map releaseGenerations, + String toolVersion, + Component.Type productType, + Map> productVersionToCPEs, + Map nvrToBuildGeneration) { + + advisoryBuildDetails.forEach((productVersion, buildItems) -> { + + // Create the release manifest for this ProductVersion + Bom productVersionBom = createProductVersionBom( + productVersion, + productType, + productVersionToCPEs, + erratum, + toolVersion); + + // Associate each build (NVR == generation) in an advisory to the repositories where it is published to + Map> generationToRepositories = new HashMap>(); + + for (BuildItem buildItem : buildItems) { + Component nvrRootComponent = createRootComponentForDockerBuildItem( + buildItem.getNvr(), + nvrToBuildGeneration.get(buildItem.getNvr()), + advisoryManifestsRecord, + generationToRepositories); + + // Add the component to the release manifest components and add the purl to the "provides" list + productVersionBom.addComponent(nvrRootComponent); + productVersionBom.getDependencies().get(0).addProvides(new Dependency(nvrRootComponent.getPurl())); + } + + SbomUtils.addMissingSerialNumber(productVersionBom); + + SbomGenerationRequest releaseGeneration = releaseGenerations.get(productVersion.getName()); + Sbom sbom = saveReleaseManifestForDockerGeneration( + requestEvent, + erratum, + productVersion, + toolVersion, + releaseGeneration, + productVersionBom, + advisoryManifestsRecord, + generationToRepositories); + + log.info( + "Saved and modified SBOM '{}' for generation '{}' for ProductVersion '{}' of errata '{}'", + sbom, + releaseGeneration.getId(), + productVersion.getName(), + erratum.getDetails().get().getFulladvisory()); + }); + } + + private Bom createProductVersionBom( + ProductVersionEntry productVersion, + Component.Type productType, + Map> productVersionToCPEs, + Errata erratum, + String toolVersion) { + + // Create the release manifest for this ProductVersion + Bom productVersionBom = SbomUtils.createBom(); + Metadata productVersionMetadata = createMetadata( + productVersion.getDescription(), + productVersion.getName(), + productType, + productVersionToCPEs.get(productVersion), + erratum.getDetails().get().getActualShipDate() != null + ? Date.from(erratum.getDetails().get().getActualShipDate()) + : null, + toolVersion); + productVersionBom.setMetadata(productVersionMetadata); + Dependency productVersionDependency = new Dependency(productVersionMetadata.getComponent().getBomRef()); + productVersionBom.setDependencies(List.of(productVersionDependency)); + return productVersionBom; + } + + protected Component createRootComponentForRPMBuildItem( + BuildItem buildItem, + V1Beta1GenerationRecord generation, + V1Beta1RequestRecord advisoryManifestsRecord, + String productShortName, + Map> generationToCDNs) { + + // From the generation triggered from this build (NVR), find the single manifest created and get the manifest + // content, we need to copy the main component + V1Beta1RequestManifestRecord manifestRecord = advisoryManifestsRecord.manifests() + .stream() + .filter(manifest -> manifest.generation().id().equals(generation.id())) + .findFirst() + .orElseThrow( + () -> new ApplicationException( + "Main manifest not found for generation '{}'", + generation.identifier())); + + Sbom manifestSbom = sbomService.get(manifestRecord.id()); + Bom manifestBom = SbomUtils.fromJsonNode(manifestSbom.getSbom()); + Component manifestMainComponent = manifestBom.getComponents().get(0); + + List allCDNs = getCDNDetails(buildItem, productShortName); + generationToCDNs.put(generation.id(), allCDNs); + + // From the manifest get all the archs from the purl 'arch' qualifier + Set manifestArches = getAllArchitectures(manifestBom); + Set evidencePurls = AdvisoryEventUtils + .createPurls(manifestMainComponent.getPurl(), allCDNs, manifestArches); + + // Finally create the root component for this build (NVR) from the manifest + Component nvrRootComponent = SbomUtils.createComponent( + null, + manifestMainComponent.getName(), + manifestMainComponent.getVersion(), + null, + manifestMainComponent.getPurl(), + manifestMainComponent.getType()); + + nvrRootComponent.setSupplier(manifestMainComponent.getSupplier()); + nvrRootComponent.setPublisher(manifestMainComponent.getPublisher()); + nvrRootComponent.setHashes(manifestMainComponent.getHashes()); + nvrRootComponent.setLicenses(manifestMainComponent.getLicenses()); + SbomUtils.setEvidenceIdentities(nvrRootComponent, evidencePurls, Field.PURL); + + return nvrRootComponent; + } + + protected Component createRootComponentForDockerBuildItem( + String generationNVR, + V1Beta1GenerationRecord generation, + V1Beta1RequestRecord advisoryManifestsRecord, + Map> generationToRepositories) { + + // From the generation triggered from this build (NVR), find the image index manifest and get the manifest + // content, we need to copy the main component + V1Beta1RequestManifestRecord imageIndexManifest = findImageIndexManifest(advisoryManifestsRecord, generation); + Sbom imageIndexSbom = sbomService.get(imageIndexManifest.id()); + Component imageIndexMainComponent = SbomUtils.fromJsonNode(imageIndexSbom.getSbom()).getComponents().get(0); + + // Find where this build (NVR) has been published to + List repositories = getRepositoriesDetails(generationNVR); + generationToRepositories.put(generation.id(), repositories); + + // Create summary (pick the longest value) and evidence purl + RepositoryCoordinates preferredRepo = AdvisoryEventUtils.findPreferredRepo(repositories); + String summaryPurl = AdvisoryEventUtils.createPurl(preferredRepo, imageIndexMainComponent.getVersion(), false); + Set evidencePurls = AdvisoryEventUtils + .createPurls(repositories, imageIndexMainComponent.getVersion(), true); + + // Finally create the root component for this build (NVR) from the image index manifest + Component nvrRootComponent = SbomUtils.createComponent( + null, + imageIndexMainComponent.getName(), + imageIndexMainComponent.getVersion(), + null, + summaryPurl, + imageIndexMainComponent.getType()); + + nvrRootComponent.setSupplier(imageIndexMainComponent.getSupplier()); + nvrRootComponent.setPublisher(imageIndexMainComponent.getPublisher()); + nvrRootComponent.setHashes(imageIndexMainComponent.getHashes()); + nvrRootComponent.setLicenses(imageIndexMainComponent.getLicenses()); + SbomUtils.setEvidenceIdentities(nvrRootComponent, evidencePurls, Field.PURL); + + return nvrRootComponent; + } + + // Add a very long timeout because this method could potentially need to update hundreds of manifests + @Retry(maxRetries = 10) + protected Sbom saveReleaseManifestForRPMGeneration( + RequestEvent requestEvent, + Errata erratum, + ProductVersionEntry productVersion, + String toolVersion, + SbomGenerationRequest releaseGeneration, + Bom productVersionBom, + V1Beta1RequestRecord advisoryManifestsRecord, + Map> generationToCDNs) { + + try { + QuarkusTransaction.begin(QuarkusTransaction.beginOptions().timeout(INCREASED_TIMEOUT_SEC)); + + // 1 - Save the release generation with the release manifest + releaseGeneration = generationRequestRepository.findById(releaseGeneration.getId()); + releaseGeneration.setStatus(SbomGenerationStatus.FINISHED); + releaseGeneration.setResult(GenerationResult.SUCCESS); + + // 1.1 - Create the Sbom entity + Sbom sbom = Sbom.builder() + .withIdentifier(releaseGeneration.getIdentifier()) + .withSbom(SbomUtils.toJsonNode(productVersionBom)) + .withGenerationRequest(releaseGeneration) + .withConfigIndex(0) + .build(); + + // Add more information for this release so to find manifests more easily + ObjectNode metadataNode = collectReleaseInfo( + requestEvent.getId(), + erratum, + productVersion, + toolVersion, + productVersionBom); + sbom.setReleaseMetadata(metadataNode); + sbom = sbomService.save(sbom); + + // 2 - For every generation, find all the existing manifests and update the with release repo + // data + log.debug("Processing {} generations...", generationToCDNs.keySet().size()); + for (String generationId : generationToCDNs.keySet()) { + + // 2.1 Get all the CDNs associated with this request + Collection generationCDNs = generationToCDNs.get(generationId); + + // 2.2 - For every manifest previously generated from this generation + Collection buildManifests = advisoryManifestsRecord.manifests() + .stream() + .filter(manifest -> manifest.generation().id().equals(generationId)) + .collect(Collectors.toList()); + + Map originalToRebuiltPurl = new HashMap(); + + for (V1Beta1RequestManifestRecord buildManifestRecord : buildManifests) { + log.debug( + "Updating build manifest '{}' for release event {}...", + buildManifestRecord.id(), + requestEvent.getId()); + + Sbom buildManifest = sbomService.get(buildManifestRecord.id()); + Bom manifestBom = SbomUtils.fromJsonNode(buildManifest.getSbom()); + + // For each component, I need to find the matching CDNs repo, selecting the longest one to update + // the purl. + // And getting them all to create the evidence + Set manifestArches = getAllArchitectures(manifestBom); + log.debug("Archs detected in the manifest: {}", manifestArches); + + Component metadataComponent = manifestBom.getMetadata() != null + ? manifestBom.getMetadata().getComponent() + : null; + if (metadataComponent != null) { + adjustComponent(metadataComponent, generationCDNs, manifestArches, originalToRebuiltPurl); + } + for (Component component : manifestBom.getComponents()) { + adjustComponent(component, generationCDNs, manifestArches, originalToRebuiltPurl); + } + + // 2.7 - Update the original Sbom + buildManifest.setSbom(SbomUtils.toJsonNode(manifestBom)); + + // 2.8 - Add more information for this release so to find manifests more easily + ObjectNode buildManifestMetadataNode = collectReleaseInfo( + requestEvent.getId(), + erratum, + productVersion, + toolVersion, + manifestBom); + buildManifest.setReleaseMetadata(buildManifestMetadataNode); + } + } + + requestEvent = requestEventRepository.findById(requestEvent.getId()); + requestEvent.setEventStatus(RequestEventStatus.SUCCESS); + QuarkusTransaction.commit(); + + return sbom; + } catch (Exception e) { + try { + QuarkusTransaction.rollback(); + } catch (Exception rollbackException) { + log.error("Transaction was rolled back!!", rollbackException); + } + throw new ApplicationException( + "Could not save the release and build manifests for release generation {}", + releaseGeneration.getIdentifier(), + e); + } + } + + // Add a very long timeout because this method could potentially need to update hundreds of manifests + @Retry(maxRetries = 10) + protected Sbom saveReleaseManifestForDockerGeneration( + RequestEvent requestEvent, + Errata erratum, + ProductVersionEntry productVersion, + String toolVersion, + SbomGenerationRequest releaseGeneration, + Bom productVersionBom, + V1Beta1RequestRecord advisoryManifestsRecord, + Map> generationToRepositories) { + + try { + QuarkusTransaction.begin(QuarkusTransaction.beginOptions().timeout(INCREASED_TIMEOUT_SEC)); + + // 1 - Save the release generation with the release manifest + releaseGeneration = generationRequestRepository.findById(releaseGeneration.getId()); + releaseGeneration.setStatus(SbomGenerationStatus.FINISHED); + releaseGeneration.setResult(GenerationResult.SUCCESS); + + // 1.1 - Create the Sbom entity + Sbom sbom = Sbom.builder() + .withIdentifier(releaseGeneration.getIdentifier()) + .withSbom(SbomUtils.toJsonNode(productVersionBom)) + .withGenerationRequest(releaseGeneration) + .withConfigIndex(0) + .build(); + + // Add more information for this release so to find manifests more easily + ObjectNode metadataNode = collectReleaseInfo( + requestEvent.getId(), + erratum, + productVersion, + toolVersion, + productVersionBom); + sbom.setReleaseMetadata(metadataNode); + sbom = sbomService.save(sbom); + + // 2 - For every generation, find all the existing manifests and update the with release repo + // data + log.debug("Processing {} generations...", generationToRepositories.keySet().size()); + for (String generationId : generationToRepositories.keySet()) { + + // 2.1 - Select the repository with longest repoFragment + tag + List repositories = generationToRepositories.get(generationId); + RepositoryCoordinates preferredRepo = AdvisoryEventUtils.findPreferredRepo(repositories); + + // 2.2 - Regenerate the manifest purls using the preferredRepo and keep track of the updates, we need + // them to update the index manifest variants + Collection buildManifests = advisoryManifestsRecord.manifests() + .stream() + .filter(manifest -> manifest.generation().id().equals(generationId)) + .collect(Collectors.toList()); + Map originalToRebuiltPurl = new HashMap(); + buildManifests.stream().forEach(manifestRecord -> { + String rebuiltPurl = AdvisoryEventUtils.rebuildPurl(manifestRecord.rootPurl(), preferredRepo); + originalToRebuiltPurl.put(manifestRecord.rootPurl(), rebuiltPurl); + log.debug("Regenerated rootPurl '{}' to '{}'", manifestRecord.rootPurl(), rebuiltPurl); + }); + + // 2.3 - For every manifest previously generated from this generation + for (V1Beta1RequestManifestRecord buildManifestRecord : buildManifests) { + + Sbom buildManifest = sbomService.get(buildManifestRecord.id()); + Bom manifestBom = SbomUtils.fromJsonNode(buildManifest.getSbom()); + + // 2.4 Update rootPurl, metadata.component.purl, bom.component[0].purl with the rebuiltPurl + String rebuiltPurl = originalToRebuiltPurl.get(buildManifest.getRootPurl()); + buildManifest.setRootPurl(rebuiltPurl); + log.debug("Updated manifest '{}' to rootPurl '{}'", buildManifestRecord.id(), rebuiltPurl); + + if (manifestBom.getMetadata() != null && manifestBom.getMetadata().getComponent() != null) { + manifestBom.getMetadata().getComponent().setPurl(rebuiltPurl); + if (manifestBom.getMetadata().getComponent().getDescription() != null + && manifestBom.getMetadata() + .getComponent() + .getDescription() + .contains(buildManifest.getRootPurl())) { + + manifestBom.getMetadata() + .getComponent() + .getDescription() + .replace(buildManifest.getRootPurl(), rebuiltPurl); + } + } + if (manifestBom.getComponents() != null && !manifestBom.getComponents().isEmpty()) { + manifestBom.getComponents().get(0).setPurl(rebuiltPurl); + + // 2.5 - If there are variants (this is an index image) update also the purls with the rebuilt + // ones + if (manifestBom.getComponents().get(0).getPedigree() != null + && manifestBom.getComponents().get(0).getPedigree().getVariants() != null + && manifestBom.getComponents() + .get(0) + .getPedigree() + .getVariants() + .getComponents() != null) { + + for (Component variant : manifestBom.getComponents() + .get(0) + .getPedigree() + .getVariants() + .getComponents()) { + if (originalToRebuiltPurl.containsKey(variant.getPurl())) { + variant.setPurl(originalToRebuiltPurl.get(variant.getPurl())); + } + } + } + + // 2.6 - Add an evidence.identity list with all the rebuilt purls + Set evidencePurls = AdvisoryEventUtils + .rebuildPurls(buildManifest.getRootPurl(), repositories); + log.debug("Rebuilt evidence purl '{}'", String.join(", ", evidencePurls)); + SbomUtils.setEvidenceIdentities(manifestBom.getComponents().get(0), evidencePurls, Field.PURL); + } + + // 2.7 - Update the original Sbom + buildManifest.setSbom(SbomUtils.toJsonNode(manifestBom)); + + // 2.8 - Add more information for this release so to find manifests more easily + ObjectNode buildManifestMetadataNode = collectReleaseInfo( + requestEvent.getId(), + erratum, + productVersion, + toolVersion, + manifestBom); + buildManifest.setReleaseMetadata(buildManifestMetadataNode); + } + } + + requestEvent = requestEventRepository.findById(requestEvent.getId()); + requestEvent.setEventStatus(RequestEventStatus.SUCCESS); + QuarkusTransaction.commit(); + + return sbom; + } catch (Exception e) { + try { + QuarkusTransaction.rollback(); + } catch (Exception rollbackException) { + log.error("Transaction was rolled back!!", rollbackException); + } + throw new ApplicationException( + "Could not save the release and build manifests for release generation {}", + releaseGeneration.getIdentifier(), + e); + } + } + + @Retry(maxRetries = 10) + protected Map> getAdvisoryBuildDetails(String advisoryId) { + ErrataBuildList erratumBuildList = errataClient.getBuildsList(advisoryId); + Map> advisoryBuildDetails = erratumBuildList.getProductVersions() + .values() + .stream() + .collect( + Collectors.toMap( + productVersionEntry -> productVersionEntry, + productVersionEntry -> productVersionEntry.getBuilds() + .stream() + .flatMap(build -> build.getBuildItems().values().stream()) + .collect(Collectors.toList()))); + return advisoryBuildDetails; + } + + @Retry(maxRetries = 10) + protected Map> mapProductVersionToCPEs( + Map> advisoryBuildDetails) { + + Map> productVersionToCPEs = new HashMap<>(); + advisoryBuildDetails.forEach((productVersionEntry, buildItems) -> { + // Map all VariantArch to ErrataVariant and collect distinct ErrataVariant objects + Set productVersionCPEs = buildItems.stream() + .flatMap(buildItem -> buildItem.getVariantArch().keySet().stream()) + .map(variantArch -> errataClient.getVariant(variantArch.toString())) + .filter(Objects::nonNull) + .map(errataVariant -> errataVariant.getData().getAttributes().getCpe()) + .collect(Collectors.toSet()); + + // Add more granular CPEs + productVersionCPEs.addAll(AdvisoryEventUtils.createGranularCPEs(productVersionEntry, productVersionCPEs)); + + productVersionToCPEs.put(productVersionEntry, productVersionCPEs); + }); + return productVersionToCPEs; + } + + @Retry(maxRetries = 10) + protected List getRepositoriesDetails(String nvr) { + log.debug("Getting repositories details from Pyxis for NVR '{}'", nvr); + PyxisRepositoryDetails repositoriesDetails = pyxisClient + .getRepositoriesDetails(nvr, PyxisClient.REPOSITORIES_DETAILS_INCLUDES); + return repositoriesDetails.getData() + .stream() + .flatMap(dataSection -> dataSection.getRepositories().stream()) + .filter(PyxisRepositoryDetails.Repository::isPublished) + .filter(repository -> repository.getTags() != null) + .flatMap( + repository -> repository.getTags() + .stream() + .filter(tag -> !"latest".equals(tag.getName())) + .map( + tag -> new RepositoryCoordinates( + repository.getRegistry(), + repository.getRepository(), + tag.getName()))) + .filter(repoCoordinate -> repoCoordinate.getRepositoryFragment() != null) + .collect(Collectors.toList()); + } + + @Retry(maxRetries = 10) + protected List getCDNDetails(BuildItem buildItem, String productShortName) { + List allCDNs = new ArrayList(); + buildItem.getVariantArch().keySet().stream().forEach(variant -> { + allCDNs.addAll(errataClient.getCDNReposOfVariant(variant, productShortName)); + }); + return allCDNs.stream().distinct().collect(Collectors.toList()); + } + + /* + * Not used at the moment. Useful to understand if a repository has requires_terms = false meaning the repo is also + * accessible without authentication + */ + @Retry(maxRetries = 10) + protected PyxisRepository getRepository(String registry, String repository) { + return pyxisClient.getRepository(registry, repository, PyxisClient.REPOSITORIES_REGISTRY_INCLUDES); + } + + public static final String REQUEST_ID = "request_id"; + public static final String ERRATA = "errata_fullname"; + public static final String ERRATA_ID = "errata_id"; + public static final String ERRATA_SHIP_DATE = "errata_ship_date"; + public static final String PRODUCT = "product_name"; + public static final String PRODUCT_SHORTNAME = "product_shortname"; + public static final String PRODUCT_VERSION = "product_version"; + public static final String PURL_LIST = "purl_list"; + + protected ObjectNode collectReleaseInfo( + String requestEventId, + Errata erratum, + ProductVersionEntry versionEntry, + String toolVersion, + Bom manifest) { + + ObjectNode releaseMetadata = ObjectMapperProvider.json().createObjectNode(); + releaseMetadata.put(REQUEST_ID, requestEventId); + releaseMetadata.put(ERRATA, erratum.getDetails().get().getFulladvisory()); + releaseMetadata.put(ERRATA_ID, erratum.getDetails().get().getId()); + if (erratum.getDetails().get().getActualShipDate() != null) { + releaseMetadata.put(ERRATA_SHIP_DATE, Date.from(erratum.getDetails().get().getActualShipDate()).toString()); + } + releaseMetadata.put(PRODUCT, versionEntry.getDescription()); + releaseMetadata.put(PRODUCT_SHORTNAME, erratum.getDetails().get().getProduct().getShortName()); + releaseMetadata.put(PRODUCT_VERSION, versionEntry.getName()); + + TreeSet allPurls = new TreeSet<>(); + if (manifest.getMetadata() != null) { + allPurls.addAll(getAllPurlsOfComponent(manifest.getMetadata().getComponent())); + } + for (Component component : manifest.getComponents()) { + allPurls.addAll(getAllPurlsOfComponent(component)); + } + ArrayNode purlArray = ObjectMapperProvider.json().createArrayNode(); + for (String purl : allPurls) { + purlArray.add(purl); + } + releaseMetadata.set(PURL_LIST, purlArray); + return releaseMetadata; + } + + private Set getAllPurlsOfComponent(Component component) { + + if (component == null) { + return Collections.emptySet(); + } + + Set allPurls = new HashSet<>(); + if (component.getPurl() != null) { + allPurls.add(component.getPurl()); + } + + if (component.getEvidence() == null || component.getEvidence().getIdentities() == null + || component.getEvidence().getIdentities().isEmpty()) { + return allPurls; + } + + Set purls = component.getEvidence() + .getIdentities() + .stream() + .filter(identity -> Field.PURL.equals(identity.getField())) + .map(identity -> identity.getConcludedValue()) + .collect(Collectors.toSet()); + allPurls.addAll(purls); + return allPurls; + } + + private void adjustComponent( + Component component, + Collection generationCDNs, + Set manifestArches, + Map originalToRebuiltPurl) { + + Set evidencePurls = AdvisoryEventUtils.createPurls(component.getPurl(), generationCDNs, manifestArches); + log.debug("Calculated evidence purls: {}", evidencePurls); + String preferredRebuiltPurl = evidencePurls.stream() + .max((str1, str2) -> Integer.compare(str1.length(), str2.length())) + .orElse(null); + log.debug("Preferred rebuilt purl: {}", preferredRebuiltPurl); + originalToRebuiltPurl.put(component.getPurl(), preferredRebuiltPurl); + + component.setPurl(preferredRebuiltPurl); + SbomUtils.setEvidenceIdentities(component, evidencePurls, Field.PURL); + } + + private V1Beta1RequestManifestRecord findImageIndexManifest( + V1Beta1RequestRecord advisoryManifestsRecord, + V1Beta1GenerationRecord generation) { + + String imageIndexPurl = SbomUtils.createContainerImageOCIPurl(generation.identifier()); + if (imageIndexPurl == null) { + throw new ApplicationException("Unable to compute PURL for generation '{}'", generation.identifier()); + } + return advisoryManifestsRecord.manifests() + .stream() + .filter( + manifest -> manifest.generation().id().equals(generation.id()) + && manifest.rootPurl().equals(imageIndexPurl)) + .findFirst() + .orElseThrow( + () -> new ApplicationException( + "Image index manifest not found for generation '{}'", + generation.identifier())); + } + + private Metadata createMetadata( + String name, + String version, + Component.Type type, + Set cpes, + Date shipDate, + String toolVersion) { + Metadata metadata = new Metadata(); + + Component metadataProductComponent = SbomUtils.createComponent(null, name, version, null, null, type); + metadataProductComponent.setBomRef(version); + SbomUtils.setSupplier(metadataProductComponent); + SbomUtils.setEvidenceIdentities(metadataProductComponent, cpes, Field.CPE); + + metadata.setComponent(metadataProductComponent); + if (shipDate != null) { + metadata.setTimestamp(shipDate); + } + metadata.setToolChoice(SbomUtils.createToolInformation(toolVersion)); + return metadata; + } + + private String getGenerationNVRFromManifest(V1Beta1RequestManifestRecord manifestRecord) { + GenerationRequestType generationRequestType = GenerationRequestType + .fromName(manifestRecord.generation().type()); + + if (GenerationRequestType.BREW_RPM.equals(generationRequestType)) { + // The NVR is stored as the generation identifier + return manifestRecord.generation().identifier(); + } + + if (GenerationRequestType.CONTAINERIMAGE.equals(generationRequestType)) { + // The NVR is not stored inside the generation, we need to get it from the manifest. Might be optimized in + // future. + Sbom sbom = sbomService.get(manifestRecord.id()); + String[] nvr = SbomUtils.computeNVRFromContainerManifest(sbom.getSbom()); + if (nvr != null) { + return String.join(NVR_STANDARD_SEPARATOR, nvr); + } + } + + // The are no NVRs associated with GenerationRequestType.BUILD or GenerationRequestType.OPERATION or + // GenerationRequestType.ANALYSIS + return null; + } + + private Map mapNVRToBuildGeneration(V1Beta1RequestRecord advisoryManifestsRecord) { + Set processedGenerationsIds = new HashSet<>(); + + return advisoryManifestsRecord.manifests() + .stream() + .filter(manifest -> !processedGenerationsIds.contains(manifest.generation().id())) + .map(manifest -> { + String nvr = getGenerationNVRFromManifest(manifest); + if (nvr != null) { + processedGenerationsIds.add(manifest.generation().id()); + } + return Map.entry(nvr, manifest.generation()); + }) + .filter(entry -> entry.getKey() != null) // Filter out entries where NVR is null + .collect(Collectors.toMap(Map.Entry::getKey, Map.Entry::getValue)); + } + + // Helper method to get the all the architectures in the manifest + private Set getAllArchitectures(Bom bom) { + Set manifestArches = new HashSet(); + for (Component component : bom.getComponents()) { + try { + PackageURL purl = new PackageURL(component.getPurl()); + Map qualifiers = purl.getQualifiers(); + if (qualifiers != null && qualifiers.containsKey("arch")) { + String archValue = qualifiers.get("arch"); + if (!"src".equals(archValue)) { + manifestArches.add(archValue); + } + } + } catch (MalformedPackageURLException e) { + log.error("Unable to parse the purl {}", component.getPurl(), e); + } + } + return manifestArches; + } + +} diff --git a/service/src/main/java/org/jboss/sbomer/service/feature/sbom/errata/event/release/ReleaseTextOnlyAdvisoryEventsListener.java b/service/src/main/java/org/jboss/sbomer/service/feature/sbom/errata/event/release/ReleaseTextOnlyAdvisoryEventsListener.java new file mode 100644 index 000000000..ed59708c6 --- /dev/null +++ b/service/src/main/java/org/jboss/sbomer/service/feature/sbom/errata/event/release/ReleaseTextOnlyAdvisoryEventsListener.java @@ -0,0 +1,470 @@ +/* + * JBoss, Home of Professional Open Source. + * Copyright 2023 Red Hat, Inc., and individual contributors + * as indicated by the @author tags. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.jboss.sbomer.service.feature.sbom.errata.event.release; + +import java.util.Collection; +import java.util.Collections; +import java.util.Date; +import java.util.HashSet; +import java.util.List; +import java.util.Map; +import java.util.Objects; +import java.util.Optional; +import java.util.Set; +import java.util.TreeSet; +import java.util.stream.Collectors; + +import org.cyclonedx.model.Bom; +import org.cyclonedx.model.Component; +import org.cyclonedx.model.Dependency; +import org.cyclonedx.model.Metadata; +import org.cyclonedx.model.component.evidence.Identity.Field; +import org.eclipse.microprofile.faulttolerance.Retry; +import org.eclipse.microprofile.rest.client.inject.RestClient; +import org.jboss.sbomer.core.config.request.ErrataAdvisoryRequestConfig; +import org.jboss.sbomer.core.dto.v1beta1.V1Beta1RequestRecord; +import org.jboss.sbomer.core.errors.ApplicationException; +import org.jboss.sbomer.core.features.sbom.Constants; +import org.jboss.sbomer.core.features.sbom.enums.GenerationResult; +import org.jboss.sbomer.core.features.sbom.enums.RequestEventStatus; +import org.jboss.sbomer.core.features.sbom.utils.ObjectMapperProvider; +import org.jboss.sbomer.core.features.sbom.utils.SbomUtils; +import org.jboss.sbomer.service.feature.sbom.errata.ErrataClient; +import org.jboss.sbomer.service.feature.sbom.errata.dto.Errata; +import org.jboss.sbomer.service.feature.sbom.errata.event.AdvisoryEventUtils; +import org.jboss.sbomer.service.feature.sbom.k8s.model.SbomGenerationStatus; +import org.jboss.sbomer.service.feature.sbom.model.RequestEvent; +import org.jboss.sbomer.service.feature.sbom.model.Sbom; +import org.jboss.sbomer.service.feature.sbom.model.SbomGenerationRequest; +import org.jboss.sbomer.service.feature.sbom.service.RequestEventRepository; +import org.jboss.sbomer.service.feature.sbom.service.SbomGenerationRequestRepository; +import org.jboss.sbomer.service.feature.sbom.service.SbomService; +import org.jboss.sbomer.service.stats.StatsService; + +import com.fasterxml.jackson.databind.JsonNode; +import com.fasterxml.jackson.databind.node.ArrayNode; +import com.fasterxml.jackson.databind.node.ObjectNode; + +import io.quarkus.narayana.jta.QuarkusTransaction; +import jakarta.enterprise.context.ApplicationScoped; +import jakarta.enterprise.event.ObservesAsync; +import jakarta.inject.Inject; +import jakarta.transaction.Transactional; +import jakarta.transaction.Transactional.TxType; +import lombok.Setter; +import lombok.extern.slf4j.Slf4j; + +@ApplicationScoped +@Slf4j +public class ReleaseTextOnlyAdvisoryEventsListener { + + // Set the long transaction imeout to 10 mins + private static final int INCREASED_TIMEOUT_SEC = 600; + + @Inject + @RestClient + @Setter + ErrataClient errataClient; + + @Inject + @Setter + SbomService sbomService; + + @Inject + @Setter + StatsService statsService; + + @Inject + @Setter + SbomGenerationRequestRepository generationRequestRepository; + + @Inject + @Setter + RequestEventRepository requestEventRepository; + + public void onReleaseAdvisoryEvent(@ObservesAsync TextOnlyAdvisoryReleaseEvent event) { + log.debug("Event received for text-only advisory release ..."); + + RequestEvent requestEvent = requestEventRepository.findById(event.getRequestEventId()); + try { + ErrataAdvisoryRequestConfig config = (ErrataAdvisoryRequestConfig) requestEvent.getRequestConfig(); + Errata erratum = errataClient.getErratum(config.getAdvisoryId()); + String toolVersion = statsService.getStats().getVersion(); + Component.Type productType = AdvisoryEventUtils + .getComponentTypeForProduct(erratum.getDetails().get().getProduct().getShortName()); + + JsonNode notes = erratum.getNotesMapping().get(); + List manifestsPurls = null; + + if (notes.has("manifest")) { + log.debug( + "Creating release manifests for manual builds of advisory: '{}'[{}]", + erratum.getDetails().get().getFulladvisory(), + erratum.getDetails().get().getId()); + + // If the notes contains a "manifest" field, search the successful generations for all the purls listed + // (there are no generations associated to the requestevent because no generations were triggered) + manifestsPurls = AdvisoryEventUtils.extractPurlUrisFromManifestNode(notes); + } else { + log.debug( + "Creating release manifests for managed builds of advisory: '{}'[{}]", + erratum.getDetails().get().getFulladvisory(), + erratum.getDetails().get().getId()); + + // If the notes contains a "deliverables" field, search the latest successful generations triggered by + // the request event + V1Beta1RequestRecord advisoryManifestsRecord = sbomService + .searchLastSuccessfulAdvisoryRequestRecord(requestEvent.getId(), config.getAdvisoryId()); + manifestsPurls = advisoryManifestsRecord.manifests() + .stream() + .map(manifest -> manifest.rootPurl()) + .toList(); + } + + List sboms = findSbomsByPurls(manifestsPurls); + createReleaseManifestsForTextOnlyAdvisories( + requestEvent, + erratum, + sboms, + event.getReleaseGenerations(), + toolVersion, + productType); + } catch (Exception e) { + log.error( + "An error occured during the creation of release manifests for event '{}'", + requestEvent.getId(), + e); + markRequestFailed(requestEvent, event.getReleaseGenerations().values()); + } + + // Let's trigger the update of statuses and advisory comments + doUpdateGenerationsStatus(event.getReleaseGenerations().values()); + } + + private List findSbomsByPurls(List purls) { + if (purls == null || purls.isEmpty()) { + return Collections.emptyList(); + } + return purls.stream().map(sbomService::findByPurl).filter(Objects::nonNull).toList(); + } + + @Transactional(value = TxType.REQUIRES_NEW) + protected void markRequestFailed(RequestEvent requestEvent, Collection releaseGenerations) { + String reason = "An error occured during the creation of the release manifest"; + log.error(reason); + + requestEvent = requestEventRepository.findById(requestEvent.getId()); + requestEvent.setEventStatus(RequestEventStatus.FAILED); + requestEvent.setReason(reason); + + for (SbomGenerationRequest generation : releaseGenerations) { + generation = generationRequestRepository.findById(generation.getId()); + generation.setStatus(SbomGenerationStatus.FAILED); + generation.setReason(reason); + } + } + + protected void createReleaseManifestsForTextOnlyAdvisories( + RequestEvent requestEvent, + Errata erratum, + List sboms, + Map releaseGenerations, + String toolVersion, + Component.Type productType) { + + String productName = erratum.getDetails().get().getProduct().getName(); + String productVersion = erratum.getContent().getContent().getProductVersionText(); + + // Create the release manifest for this ProductVersion + Bom productVersionBom = createProductVersionBom(productType, erratum, toolVersion); + for (Sbom sbom : sboms) { + Component sbomRootComponent = createRootComponentForSbom(sbom); + // Add the component to the release manifest components and add the purl to the "provides" list + productVersionBom.addComponent(sbomRootComponent); + productVersionBom.getDependencies().get(0).addProvides(new Dependency(sbomRootComponent.getPurl())); + } + + SbomUtils.addMissingSerialNumber(productVersionBom); + + SbomGenerationRequest releaseGeneration = releaseGenerations.get(productVersion); + Sbom sbom = saveReleaseManifestForTextOnlyAdvisories( + requestEvent, + erratum, + productName, + productVersion, + toolVersion, + releaseGeneration, + productVersionBom, + sboms); + + log.info( + "Saved and modified SBOM '{}' for generation '{}' for ProductVersion '{}' of errata '{}'", + sbom, + releaseGeneration.getId(), + productVersion, + erratum.getDetails().get().getFulladvisory()); + } + + @Transactional + protected void doUpdateGenerationsStatus(Collection releaseGenerations) { + // Update only one SbomGenerationRequest, because the requestEvent associated is the same for all of them. This + // avoids duplicated comments in the advisory + if (releaseGenerations != null && !releaseGenerations.isEmpty()) { + SbomGenerationRequest generation = releaseGenerations.iterator().next(); + generation = generationRequestRepository.findById(generation.getId()); + SbomGenerationRequest.updateRequestEventStatus(generation); + } + } + + private Bom createProductVersionBom(Component.Type productType, Errata erratum, String toolVersion) { + + String productName = erratum.getDetails().get().getProduct().getName(); + String productVersion = erratum.getContent().getContent().getProductVersionText(); + String cpe = erratum.getContent().getContent().getTextOnlyCpe(); + + // Create the release manifest for this ProductVersion + Bom bom = SbomUtils.createBom(); + Metadata metadata = createMetadata( + productName, + productVersion, + productType, + Set.of(cpe), + erratum.getDetails().get().getActualShipDate() != null + ? Date.from(erratum.getDetails().get().getActualShipDate()) + : null, + toolVersion); + bom.setMetadata(metadata); + Dependency mainDependency = new Dependency(metadata.getComponent().getBomRef()); + bom.setDependencies(List.of(mainDependency)); + return bom; + } + + protected Component createRootComponentForSbom(Sbom sbom) { + + Bom manifestBom = SbomUtils.fromJsonNode(sbom.getSbom()); + Component manifestMainComponent = (manifestBom.getComponents() != null + && !manifestBom.getComponents().isEmpty()) ? manifestBom.getComponents().get(0) + : manifestBom.getMetadata().getComponent(); + + String evidencePurl = SbomUtils.addQualifiersToPurlOfComponent( + manifestMainComponent, + Map.of("repository_url", Constants.MRRC_URL), + true); + + // Finally create the root component for this build (NVR) from the manifest + Component sbomRootComponent = SbomUtils.createComponent(manifestMainComponent); + + sbomRootComponent.setSupplier(manifestMainComponent.getSupplier()); + sbomRootComponent.setPublisher(manifestMainComponent.getPublisher()); + sbomRootComponent.setHashes(manifestMainComponent.getHashes()); + sbomRootComponent.setLicenses(manifestMainComponent.getLicenses()); + SbomUtils.setEvidenceIdentities(sbomRootComponent, Set.of(evidencePurl), Field.PURL); + + return sbomRootComponent; + } + + // Add a very long timeout because this method could potentially need to update hundreds of manifests + @Retry(maxRetries = 10) + protected Sbom saveReleaseManifestForTextOnlyAdvisories( + RequestEvent requestEvent, + Errata erratum, + String productName, + String productVersion, + String toolVersion, + SbomGenerationRequest releaseGeneration, + Bom productVersionBom, + List sboms) { + + try { + QuarkusTransaction.begin(QuarkusTransaction.beginOptions().timeout(INCREASED_TIMEOUT_SEC)); + + // 1 - Save the release generation with the release manifest + releaseGeneration = generationRequestRepository.findById(releaseGeneration.getId()); + releaseGeneration.setStatus(SbomGenerationStatus.FINISHED); + releaseGeneration.setResult(GenerationResult.SUCCESS); + + // 1.1 - Create the Sbom entity + Sbom releaseSbom = Sbom.builder() + .withIdentifier(releaseGeneration.getIdentifier()) + .withSbom(SbomUtils.toJsonNode(productVersionBom)) + .withGenerationRequest(releaseGeneration) + .withConfigIndex(0) + .build(); + + // Add more information for this release so to find manifests more easily + ObjectNode metadataNode = collectReleaseInfo( + requestEvent.getId(), + erratum, + productName, + productVersion, + toolVersion, + productVersionBom); + releaseSbom.setReleaseMetadata(metadataNode); + releaseSbom = sbomService.save(releaseSbom); + + // 2 - For every sbom update it with the release repo + log.debug("Processing {} sboms...", sboms.size()); + for (Sbom sbom : sboms) { + log.debug("Updating sbom {} for release event {}...", sbom.getId(), requestEvent.getId()); + + Sbom buildManifest = sbomService.get(sbom.getId()); + Bom manifestBom = SbomUtils.fromJsonNode(buildManifest.getSbom()); + + Component metadataComponent = manifestBom.getMetadata() != null + ? manifestBom.getMetadata().getComponent() + : null; + if (metadataComponent != null) { + adjustComponent(metadataComponent); + } + for (Component component : manifestBom.getComponents()) { + adjustComponent(component); + } + + // 2.7 - Update the original Sbom + buildManifest.setSbom(SbomUtils.toJsonNode(manifestBom)); + + // 2.8 - Add more information for this release so to find manifests more easily + ObjectNode buildManifestMetadataNode = collectReleaseInfo( + requestEvent.getId(), + erratum, + productName, + productVersion, + toolVersion, + manifestBom); + buildManifest.setReleaseMetadata(buildManifestMetadataNode); + } + + requestEvent = requestEventRepository.findById(requestEvent.getId()); + requestEvent.setEventStatus(RequestEventStatus.SUCCESS); + QuarkusTransaction.commit(); + + return releaseSbom; + } catch (Exception e) { + try { + QuarkusTransaction.rollback(); + } catch (Exception rollbackException) { + log.error("Transaction was rolled back!!", rollbackException); + } + throw new ApplicationException( + "Could not save the release and build manifests for release generation {}", + releaseGeneration.getIdentifier(), + e); + } + } + + public static final String REQUEST_ID = "request_id"; + public static final String ERRATA = "errata_fullname"; + public static final String ERRATA_ID = "errata_id"; + public static final String ERRATA_SHIP_DATE = "errata_ship_date"; + public static final String PRODUCT = "product_name"; + public static final String PRODUCT_SHORTNAME = "product_shortname"; + public static final String PRODUCT_VERSION = "product_version"; + public static final String PURL_LIST = "purl_list"; + + protected ObjectNode collectReleaseInfo( + String requestEventId, + Errata erratum, + String product, + String productVersion, + String toolVersion, + Bom manifest) { + + ObjectNode releaseMetadata = ObjectMapperProvider.json().createObjectNode(); + releaseMetadata.put(REQUEST_ID, requestEventId); + releaseMetadata.put(ERRATA, erratum.getDetails().get().getFulladvisory()); + releaseMetadata.put(ERRATA_ID, erratum.getDetails().get().getId()); + if (erratum.getDetails().get().getActualShipDate() != null) { + releaseMetadata.put(ERRATA_SHIP_DATE, Date.from(erratum.getDetails().get().getActualShipDate()).toString()); + } + releaseMetadata.put(PRODUCT, product); + releaseMetadata.put(PRODUCT_SHORTNAME, erratum.getDetails().get().getProduct().getShortName()); + releaseMetadata.put(PRODUCT_VERSION, productVersion); + + TreeSet allPurls = new TreeSet<>(); + if (manifest.getMetadata() != null) { + allPurls.addAll(getAllPurlsOfComponent(manifest.getMetadata().getComponent())); + } + for (Component component : manifest.getComponents()) { + allPurls.addAll(getAllPurlsOfComponent(component)); + } + ArrayNode purlArray = ObjectMapperProvider.json().createArrayNode(); + for (String purl : allPurls) { + purlArray.add(purl); + } + releaseMetadata.set(PURL_LIST, purlArray); + return releaseMetadata; + } + + private Set getAllPurlsOfComponent(Component component) { + + if (component == null) { + return Collections.emptySet(); + } + + TreeSet allPurls = new TreeSet<>(); + if (component.getPurl() != null) { + allPurls.add(component.getPurl()); + } + + if (component.getEvidence() == null || component.getEvidence().getIdentities() == null + || component.getEvidence().getIdentities().isEmpty()) { + return allPurls; + } + + Set purls = component.getEvidence() + .getIdentities() + .stream() + .filter(identity -> Field.PURL.equals(identity.getField())) + .map(identity -> identity.getConcludedValue()) + .collect(Collectors.toSet()); + allPurls.addAll(purls); + return allPurls; + } + + private void adjustComponent(Component component) { + + String evidencePurl = SbomUtils + .addQualifiersToPurlOfComponent(component, Map.of("repository_url", Constants.MRRC_URL), true); + log.debug("Calculated evidence purl: {}", evidencePurl); + component.setPurl(evidencePurl); + SbomUtils.setEvidenceIdentities(component, Set.of(evidencePurl), Field.PURL); + } + + private Metadata createMetadata( + String name, + String version, + Component.Type type, + Set cpes, + Date shipDate, + String toolVersion) { + Metadata metadata = new Metadata(); + + Component metadataProductComponent = SbomUtils.createComponent(null, name, version, null, null, type); + metadataProductComponent.setBomRef(version); + SbomUtils.setSupplier(metadataProductComponent); + SbomUtils.setEvidenceIdentities(metadataProductComponent, cpes, Field.CPE); + + metadata.setComponent(metadataProductComponent); + if (shipDate != null) { + metadata.setTimestamp(shipDate); + } + metadata.setToolChoice(SbomUtils.createToolInformation(toolVersion)); + return metadata; + } + +} diff --git a/service/src/test/java/org/jboss/sbomer/service/test/unit/feature/sbom/errata/ReleaseAdvisoryEventsListenerTest.java b/service/src/test/java/org/jboss/sbomer/service/test/unit/feature/sbom/errata/ReleaseAdvisoryEventsListenerTest.java index 30cc30c83..d60b20105 100644 --- a/service/src/test/java/org/jboss/sbomer/service/test/unit/feature/sbom/errata/ReleaseAdvisoryEventsListenerTest.java +++ b/service/src/test/java/org/jboss/sbomer/service/test/unit/feature/sbom/errata/ReleaseAdvisoryEventsListenerTest.java @@ -40,6 +40,7 @@ import org.cyclonedx.model.component.evidence.Identity; import org.cyclonedx.model.component.evidence.Identity.Field; import org.jboss.sbomer.core.dto.v1beta1.V1Beta1RequestRecord; +import org.jboss.sbomer.core.features.sbom.Constants; import org.jboss.sbomer.core.features.sbom.enums.GenerationRequestType; import org.jboss.sbomer.core.features.sbom.utils.ObjectMapperProvider; import org.jboss.sbomer.core.features.sbom.utils.SbomUtils; @@ -53,7 +54,9 @@ import org.jboss.sbomer.service.feature.sbom.errata.dto.ErrataCDNRepoNormalized; import org.jboss.sbomer.service.feature.sbom.errata.dto.ErrataVariant; import org.jboss.sbomer.service.feature.sbom.errata.event.release.StandardAdvisoryReleaseEvent; -import org.jboss.sbomer.service.feature.sbom.errata.event.release.ReleaseAdvisoryEventsListener; +import org.jboss.sbomer.service.feature.sbom.errata.event.release.TextOnlyAdvisoryReleaseEvent; +import org.jboss.sbomer.service.feature.sbom.errata.event.release.ReleaseStandardAdvisoryEventsListener; +import org.jboss.sbomer.service.feature.sbom.errata.event.release.ReleaseTextOnlyAdvisoryEventsListener; import org.jboss.sbomer.service.feature.sbom.k8s.model.SbomGenerationStatus; import org.jboss.sbomer.service.feature.sbom.model.RandomStringIdGenerator; import org.jboss.sbomer.service.feature.sbom.model.RequestEvent; @@ -75,6 +78,9 @@ import com.fasterxml.jackson.databind.SerializationFeature; import com.fasterxml.jackson.databind.node.ArrayNode; import com.fasterxml.jackson.databind.node.ObjectNode; +import com.github.packageurl.MalformedPackageURLException; +import com.github.packageurl.PackageURL; +import com.github.packageurl.PackageURLBuilder; import groovy.util.logging.Slf4j; import io.quarkus.test.junit.QuarkusTest; @@ -86,6 +92,7 @@ public class ReleaseAdvisoryEventsListenerTest { ReleaseAdvisoryEventsListenerSingleContainer listenerSingleContainer; ReleaseAdvisoryEventsListenerMultiContainer listenerMultiContainers; ReleaseAdvisoryEventsListenerSingleRPM listenerSingleRpm; + ReleaseTextOnlyAdvisoryEventsListenerManifests listenerTextOnlyManifests; ErrataClient errataClient = mock(ErrataClient.class); PyxisClient pyxisClient = mock(PyxisClient.class); StatsService statsService = mock(StatsService.class); @@ -107,16 +114,22 @@ private static void printRawBom(Bom bom) { private static void validateComponent( Component component, Component.Type expectedType, + String expectedGroup, String expectedName, String expectedVersion, String expectedBomRef, String expectedPurl, List expectedConcludedValues, Field expectedField) { + + if (expectedGroup != null) { + assertEquals(expectedGroup, component.getGroup()); + } assertEquals(expectedType, component.getType()); assertEquals(expectedName, component.getName()); assertEquals(expectedVersion, component.getVersion()); assertEquals(expectedBomRef, component.getBomRef()); + assertEquals(expectedPurl, component.getPurl()); List identities = component.getEvidence().getIdentities(); @@ -141,7 +154,7 @@ private static void validateDependencies( } } - static class ReleaseAdvisoryEventsListenerSingleContainer extends ReleaseAdvisoryEventsListener { + static class ReleaseAdvisoryEventsListenerSingleContainer extends ReleaseStandardAdvisoryEventsListener { @Override protected Sbom saveReleaseManifestForDockerGeneration( @@ -157,6 +170,7 @@ protected Sbom saveReleaseManifestForDockerGeneration( validateComponent( bom.getMetadata().getComponent(), Component.Type.OPERATING_SYSTEM, + null, "Red Hat Enterprise Linux 8", "RHEL-8.10.0.Z.MAIN+EUS", "RHEL-8.10.0.Z.MAIN+EUS", @@ -169,6 +183,7 @@ protected Sbom saveReleaseManifestForDockerGeneration( validateComponent( bom.getComponents().get(0), Component.Type.CONTAINER, + null, "ubi8/ruby-25", "sha256:b1f140e930baffe400e412fbf04d57624a18593e77fcc5cfa1b2462a3f85fc94", "pkg:oci/ruby-25@sha256%3Ab1f140e930baffe400e412fbf04d57624a18593e77fcc5cfa1b2462a3f85fc94", @@ -192,7 +207,7 @@ protected Sbom saveReleaseManifestForDockerGeneration( } } - static class ReleaseAdvisoryEventsListenerMultiContainer extends ReleaseAdvisoryEventsListener { + static class ReleaseAdvisoryEventsListenerMultiContainer extends ReleaseStandardAdvisoryEventsListener { @Override protected Sbom saveReleaseManifestForDockerGeneration( @@ -214,6 +229,7 @@ protected Sbom saveReleaseManifestForDockerGeneration( validateComponent( bom.getMetadata().getComponent(), Component.Type.FRAMEWORK, + null, "Red Hat OpenShift Container Platform 4.15", "OSE-4.15-RHEL-8", "OSE-4.15-RHEL-8", @@ -224,6 +240,7 @@ protected Sbom saveReleaseManifestForDockerGeneration( validateComponent( bom.getComponents().get(0), Component.Type.CONTAINER, + null, "openshift/ose-gcp-filestore-csi-driver-operator-bundle", "sha256:201088e8a5c8a59bac4f8bc796542fb76b162e68e5af521f8dd56d05446f52f4", "pkg:oci/ose-gcp-filestore-csi-driver-operator-bundle@sha256%3A201088e8a5c8a59bac4f8bc796542fb76b162e68e5af521f8dd56d05446f52f4", @@ -248,6 +265,7 @@ protected Sbom saveReleaseManifestForDockerGeneration( validateComponent( bom.getMetadata().getComponent(), Component.Type.FRAMEWORK, + null, "Red Hat OpenShift Container Platform 4.15", "OSE-4.15-RHEL-9", "OSE-4.15-RHEL-9", @@ -258,6 +276,7 @@ protected Sbom saveReleaseManifestForDockerGeneration( validateComponent( bom.getComponents().get(0), Component.Type.CONTAINER, + null, "openshift/ose-clusterresourceoverride-operator-bundle", "sha256:d37ea60be41f378e0d3b9c0936d8c3fb0e218e00b8cdc3c073a3e35d494f3e8d", "pkg:oci/ose-clusterresourceoverride-operator-bundle@sha256%3Ad37ea60be41f378e0d3b9c0936d8c3fb0e218e00b8cdc3c073a3e35d494f3e8d", @@ -301,13 +320,15 @@ protected Sbom saveReleaseManifestForDockerGeneration( bom); sbom.setReleaseMetadata(metadataNode); - assertEquals("E2DDBAB2B3A94E6", metadataNode.get(ReleaseAdvisoryEventsListener.REQUEST_ID).asText()); - assertEquals("RHBA-2024:10840-02", metadataNode.get(ReleaseAdvisoryEventsListener.ERRATA).asText()); - assertEquals("143781", metadataNode.get(ReleaseAdvisoryEventsListener.ERRATA_ID).asText()); + assertEquals( + "E2DDBAB2B3A94E6", + metadataNode.get(ReleaseStandardAdvisoryEventsListener.REQUEST_ID).asText()); + assertEquals("RHBA-2024:10840-02", metadataNode.get(ReleaseStandardAdvisoryEventsListener.ERRATA).asText()); + assertEquals("143781", metadataNode.get(ReleaseStandardAdvisoryEventsListener.ERRATA_ID).asText()); assertEquals( "Red Hat OpenShift Container Platform 4.15", - metadataNode.get(ReleaseAdvisoryEventsListener.PRODUCT).asText()); - assertEquals("RHOSE", metadataNode.get(ReleaseAdvisoryEventsListener.PRODUCT_SHORTNAME).asText()); + metadataNode.get(ReleaseStandardAdvisoryEventsListener.PRODUCT).asText()); + assertEquals("RHOSE", metadataNode.get(ReleaseStandardAdvisoryEventsListener.PRODUCT_SHORTNAME).asText()); String productVersionString = null; List allPurls = new ArrayList(); @@ -360,8 +381,8 @@ protected Sbom saveReleaseManifestForDockerGeneration( } assertEquals( productVersionString, - metadataNode.get(ReleaseAdvisoryEventsListener.PRODUCT_VERSION).asText()); - ArrayNode arrayNode = (ArrayNode) metadataNode.get(ReleaseAdvisoryEventsListener.PURL_LIST); + metadataNode.get(ReleaseStandardAdvisoryEventsListener.PRODUCT_VERSION).asText()); + ArrayNode arrayNode = (ArrayNode) metadataNode.get(ReleaseStandardAdvisoryEventsListener.PURL_LIST); for (int i = 0; i < arrayNode.size(); i++) { JsonNode node = arrayNode.get(i); assertEquals(node.asText(), allPurls.get(i)); @@ -370,7 +391,7 @@ protected Sbom saveReleaseManifestForDockerGeneration( } } - static class ReleaseAdvisoryEventsListenerSingleRPM extends ReleaseAdvisoryEventsListener { + static class ReleaseAdvisoryEventsListenerSingleRPM extends ReleaseStandardAdvisoryEventsListener { @Override protected Sbom saveReleaseManifestForRPMGeneration( @@ -386,6 +407,7 @@ protected Sbom saveReleaseManifestForRPMGeneration( validateComponent( bom.getMetadata().getComponent(), Component.Type.OPERATING_SYSTEM, + null, "Red Hat Enterprise Linux 7", "RHEL-7.2.Z", "RHEL-7.2.Z", @@ -398,6 +420,7 @@ protected Sbom saveReleaseManifestForRPMGeneration( validateComponent( bom.getComponents().get(0), Component.Type.LIBRARY, + null, "redhat-release-computenode", "7.2-8.el7_2.1", "pkg:rpm/redhat/redhat-release-computenode@7.2-8.el7_2.1?arch=src", @@ -431,16 +454,20 @@ protected Sbom saveReleaseManifestForRPMGeneration( bom); sbom.setReleaseMetadata(metadataNode); - assertEquals("4186BB34453E473", metadataNode.get(ReleaseAdvisoryEventsListener.REQUEST_ID).asText()); - assertEquals("RHBA-2024:89769-01", metadataNode.get(ReleaseAdvisoryEventsListener.ERRATA).asText()); - assertEquals("89769", metadataNode.get(ReleaseAdvisoryEventsListener.ERRATA_ID).asText()); + assertEquals( + "4186BB34453E473", + metadataNode.get(ReleaseStandardAdvisoryEventsListener.REQUEST_ID).asText()); + assertEquals("RHBA-2024:89769-01", metadataNode.get(ReleaseStandardAdvisoryEventsListener.ERRATA).asText()); + assertEquals("89769", metadataNode.get(ReleaseStandardAdvisoryEventsListener.ERRATA_ID).asText()); assertEquals( "Red Hat Enterprise Linux 7", - metadataNode.get(ReleaseAdvisoryEventsListener.PRODUCT).asText()); - assertEquals("RHEL", metadataNode.get(ReleaseAdvisoryEventsListener.PRODUCT_SHORTNAME).asText()); - assertEquals("RHEL-7.2.Z", metadataNode.get(ReleaseAdvisoryEventsListener.PRODUCT_VERSION).asText()); + metadataNode.get(ReleaseStandardAdvisoryEventsListener.PRODUCT).asText()); + assertEquals("RHEL", metadataNode.get(ReleaseStandardAdvisoryEventsListener.PRODUCT_SHORTNAME).asText()); + assertEquals( + "RHEL-7.2.Z", + metadataNode.get(ReleaseStandardAdvisoryEventsListener.PRODUCT_VERSION).asText()); - ArrayNode arrayNode = (ArrayNode) metadataNode.get(ReleaseAdvisoryEventsListener.PURL_LIST); + ArrayNode arrayNode = (ArrayNode) metadataNode.get(ReleaseStandardAdvisoryEventsListener.PURL_LIST); List allPurls = List.of( "pkg:rpm/redhat/redhat-release-computenode@7.2-8.el7_2.1?arch=src", "pkg:rpm/redhat/redhat-release-computenode@7.2-8.el7_2.1?arch=src&repository_id=rhel-7-hpc-node-eus-source-rpms__7_DOT_2__x86_64", @@ -454,6 +481,144 @@ protected Sbom saveReleaseManifestForRPMGeneration( } } + static class ReleaseTextOnlyAdvisoryEventsListenerManifests extends ReleaseTextOnlyAdvisoryEventsListener { + @Override + protected Sbom saveReleaseManifestForTextOnlyAdvisories( + RequestEvent requestEvent, + Errata erratum, + String productName, + String productVersion, + String toolVersion, + SbomGenerationRequest releaseGeneration, + Bom bom, + List sboms) { + + validateComponent( + bom.getMetadata().getComponent(), + Component.Type.FRAMEWORK, + null, + "Red Hat build of Quarkus", + "Red Hat build of Quarkus 2.13.9.SP2", + "Red Hat build of Quarkus 2.13.9.SP2", + null, + List.of("cpe:/a:redhat:quarkus:2.13"), + Field.CPE); + + assertEquals(1, sboms.size()); + Bom manifestBom = SbomUtils.fromJsonNode(sboms.get(0).getSbom()); + String expectedPurl = SbomUtils.addQualifiersToPurlOfComponent( + manifestBom.getComponents().get(0), + Map.of("repository_url", Constants.MRRC_URL), + true); + + validateComponent( + bom.getComponents().get(0), + Component.Type.LIBRARY, + "com.redhat.quarkus.platform", + "quarkus-bom", + "2.13.9.SP2-redhat-00003", + "pkg:maven/com.redhat.quarkus.platform/quarkus-bom@2.13.9.SP2-redhat-00003?type=pom", + "pkg:maven/com.redhat.quarkus.platform/quarkus-bom@2.13.9.SP2-redhat-00003?type=pom", + List.of(expectedPurl), + Field.PURL); + + validateDependencies( + bom.getDependencies(), + 1, + "Red Hat build of Quarkus 2.13.9.SP2", + List.of("pkg:maven/com.redhat.quarkus.platform/quarkus-bom@2.13.9.SP2-redhat-00003?type=pom")); + + printRawBom(bom); + + Sbom sbom = Sbom.builder() + .withIdentifier(releaseGeneration.getIdentifier()) + .withSbom(SbomUtils.toJsonNode(bom)) + .withGenerationRequest(releaseGeneration) + .withConfigIndex(0) + .build(); + + // Add more information for this release so to find manifests more easily + ObjectNode metadataNode = collectReleaseInfo( + requestEvent.getId(), + erratum, + productName, + productVersion, + toolVersion, + bom); + sbom.setReleaseMetadata(metadataNode); + + assertEquals( + "69436F788E634CB", + metadataNode.get(ReleaseStandardAdvisoryEventsListener.REQUEST_ID).asText()); + assertEquals("RHSA-2024:1797-02", metadataNode.get(ReleaseStandardAdvisoryEventsListener.ERRATA).asText()); + assertEquals("130278", metadataNode.get(ReleaseStandardAdvisoryEventsListener.ERRATA_ID).asText()); + assertEquals( + "Red Hat build of Quarkus", + metadataNode.get(ReleaseStandardAdvisoryEventsListener.PRODUCT).asText()); + assertEquals("RHBQ", metadataNode.get(ReleaseStandardAdvisoryEventsListener.PRODUCT_SHORTNAME).asText()); + assertEquals( + "Red Hat build of Quarkus 2.13.9.SP2", + metadataNode.get(ReleaseStandardAdvisoryEventsListener.PRODUCT_VERSION).asText()); + + ArrayNode arrayNode = (ArrayNode) metadataNode.get(ReleaseStandardAdvisoryEventsListener.PURL_LIST); + List allPurls = List.of( + "pkg:maven/com.redhat.quarkus.platform/quarkus-bom@2.13.9.SP2-redhat-00003?repository_url=https%3A%2F%2Fmaven.repository.redhat.com%2Fga%2F&type=pom", + "pkg:maven/com.redhat.quarkus.platform/quarkus-bom@2.13.9.SP2-redhat-00003?type=pom"); + + for (int i = 0; i < arrayNode.size(); i++) { + JsonNode node = arrayNode.get(i); + assertEquals(node.asText(), allPurls.get(i)); + } + return sbom; + } + } + + @Test + void testTextOnlyReleaseErrataWithManifests() throws IOException { + listenerTextOnlyManifests = new ReleaseTextOnlyAdvisoryEventsListenerManifests(); + listenerTextOnlyManifests.setErrataClient(errataClient); + listenerTextOnlyManifests.setStatsService(statsService); + listenerTextOnlyManifests.setSbomService(sbomService); + listenerTextOnlyManifests.setGenerationRequestRepository(generationRequestRepository); + listenerTextOnlyManifests.setRequestEventRepository(requestEventRepository); + + Errata errata = loadErrata("textOnly/manifests/errata.json"); + RequestEvent requestEvent = loadRequestEvent("textOnly/manifests/request_event.json"); + Sbom sbom = loadSbom("textOnly/manifests/6346322A131A437.json"); + + String purlRef = "pkg:maven/com.redhat.quarkus.platform/quarkus-bom@2.13.9.SP2-redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=pom"; + String productVersionText = "Red Hat build of Quarkus 2.13.9.SP2"; + + Map pvToGenerations = new HashMap(); + Map generationsMap = new HashMap(); + SbomGenerationRequest sbomGenerationRequest = SbomGenerationRequest.builder() + .withId(RandomStringIdGenerator.generate()) + .withIdentifier(errata.getDetails().get().getFulladvisory() + "#" + productVersionText) + .withType(GenerationRequestType.BUILD) + .withStatus(SbomGenerationStatus.GENERATING) + .withConfig(null) // I really don't know what to put here + .withRequest(requestEvent) + .build(); + generationsMap.put(sbomGenerationRequest.getId(), sbomGenerationRequest); + pvToGenerations.put(productVersionText, sbomGenerationRequest); + + when(errataClient.getErratum(String.valueOf(errata.getDetails().get().getId()))).thenReturn(errata); + when(statsService.getStats()) + .thenReturn(Stats.builder().withVersion("ReleaseAdvisoryEventsListenerTest_1.0.0").build()); + when(generationRequestRepository.findById(anyString())).thenAnswer(invocation -> { + String generationId = invocation.getArgument(0); + return generationsMap.get(generationId); + }); + when(requestEventRepository.findById(anyString())).thenReturn(requestEvent); + when(sbomService.findByPurl(purlRef)).thenReturn(sbom); + + TextOnlyAdvisoryReleaseEvent event = TextOnlyAdvisoryReleaseEvent.builder() + .withRequestEventId(requestEvent.getId()) + .withReleaseGenerations(pvToGenerations) + .build(); + listenerTextOnlyManifests.onReleaseAdvisoryEvent(event); + } + @Test void testReleaseErrataWithSingleDockerBuild() throws IOException { diff --git a/service/src/test/resources/errata/release/textOnly/manifests/6346322A131A437.json b/service/src/test/resources/errata/release/textOnly/manifests/6346322A131A437.json new file mode 100644 index 000000000..e84bf050f --- /dev/null +++ b/service/src/test/resources/errata/release/textOnly/manifests/6346322A131A437.json @@ -0,0 +1,88066 @@ +{ + "id": "6346322A131A437", + "identifier": "A7OMLJYDW7QAA", + "rootPurl": "pkg:maven/com.redhat.quarkus.platform/quarkus-bom@2.13.9.SP2-redhat-00003?type=pom", + "creationTime": "2024-04-17T10:55:32.618039Z", + "sbom": { + "version": 1, + "metadata": { + "tools": [ + { + "name": "Domino 0.0.104 SBOM Generator", + "hashes": [ + { + "alg": "MD5", + "content": "729dea038dfde29824cb8da8e3d6daff" + }, + { + "alg": "SHA-1", + "content": "25600ded0eb2715be5c2abf9e5fb2294029a7c5c" + }, + { + "alg": "SHA-256", + "content": "745f397f8128341b99d0a66fc761b0fcb47e6e86bba6d558b9479a7ed9e9aae4" + }, + { + "alg": "SHA-512", + "content": "46aea81edf304e5d9709bc67653dc625f81cbc008f6b0d72e10bd80c48931e5b626b9ccd3e71049e521826a3ad07db861280548bb2090240dd7b82bf8aa52993" + }, + { + "alg": "SHA-384", + "content": "3c32350cbfe7962a7f161c5e16af0003b75c79ca5736097702a4750a531770a2555ec50a84f4577ec3f95bca9ab2154a" + }, + { + "alg": "SHA3-384", + "content": "e8f5d727b2119f4f78bb504e4c51b20174266c924d0e08b7e1723904f746dc0448cf058ca18896050a4fc50193167b55" + }, + { + "alg": "SHA3-256", + "content": "2925bff47b8085e0ccbbe2748d482145e3c12b9da61e8a42c89121744502554d" + }, + { + "alg": "SHA3-512", + "content": "0384c640ab8d5a76445ec4f29f6f53f8dc3e3ba45c22b3f5182463eb8fb7a177b40a3eedd44609a7c7d68b09ead4ed66a243d979ac2e88d27f6b24cd6ed9f7e8" + } + ], + "vendor": "Quarkus Community", + "version": "0.0.104" + } + ], + "component": { + "name": "quarkus-bom", + "purl": "pkg:maven/com.redhat.quarkus.platform/quarkus-bom@2.13.9.SP2-redhat-00003?type=pom", + "type": "framework", + "group": "com.redhat.quarkus.platform", + "version": "2.13.9.SP2-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "9bbd29e51f963386145be949dd22a7cb7a16bd2d", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus-platform.git#2.13.9.SP2-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "product-id", + "value": "quarkus-2" + }, + { + "name": "product-stream", + "value": "quarkus-2.13" + }, + { + "name": "errata-tool-product-name", + "value": "RHBQ" + }, + { + "name": "errata-tool-product-version", + "value": "Middleware-RHBQ-2.13" + }, + { + "name": "errata-tool-product-variant", + "value": "8Base-MW-RHBQ-2.13" + } + ], + "description": "Red Hat Build of Quarkus - Kubernetes Native Java stack tailored for OpenJDK HotSpot and GraalVM", + "releaseNotes": { + "type": "Patch", + "title": "Red Hat Build of Quarkus 2.13.9.SP2-redhat-00003", + "aliases": [ + "RHBQ", + "Quarkus", + "Fireball" + ], + "properties": [ + { + "name": "product-name", + "value": "Red Hat Build of Quarkus" + }, + { + "name": "product-version", + "value": "2.13.9.SP2-redhat-00003" + } + ] + }, + "externalReferences": [ + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A7OMLJYDW7QAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + }, + { + "url": "https://github.com/quarkusio/quarkus-platform.git", + "type": "vcs", + "comment": "" + } + ] + }, + "timestamp": "2024-04-17T10:53:22Z" + }, + "bomFormat": "CycloneDX", + "components": [ + { + "name": "quarkus-bom", + "purl": "pkg:maven/com.redhat.quarkus.platform/quarkus-bom@2.13.9.SP2-redhat-00003?type=pom", + "type": "library", + "group": "com.redhat.quarkus.platform", + "bom-ref": "pkg:maven/com.redhat.quarkus.platform/quarkus-bom@2.13.9.SP2-redhat-00003?type=pom", + "version": "2.13.9.SP2-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "9bbd29e51f963386145be949dd22a7cb7a16bd2d", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus-platform.git#2.13.9.SP2-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + } + ], + "description": "Quarkus Universe platform aggregates extensions from Quarkus Core and those developed by the community into a single compatible and versioned set that application developers can reference from their applications to align the dependency versions", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus-platform/quarkus-platform-config", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus-platform.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A7OMLJYDW7QAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-agroal", + "purl": "pkg:maven/io.quarkus/quarkus-agroal@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-agroal@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Pool JDBC database connections (included in Hibernate ORM)", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "agroal-api", + "purl": "pkg:maven/io.agroal/agroal-api@1.17.0.redhat-00001?type=jar", + "type": "library", + "group": "io.agroal", + "bom-ref": "pkg:maven/io.agroal/agroal-api@1.17.0.redhat-00001?type=jar", + "version": "1.17.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "31889b928ec4e6991552f214744c48fe74646b12", + "url": "https://code.engineering.redhat.com/gerrit/agroal/agroal.git#1.17.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The natural database connection pool", + "externalReferences": [ + { + "url": "https://github.com/agroal/agroal-api", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/projects/AG", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/agroal/agroal.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AZGKJQRS4DAAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.3.9:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "agroal-narayana", + "purl": "pkg:maven/io.agroal/agroal-narayana@1.17.0.redhat-00001?type=jar", + "type": "library", + "group": "io.agroal", + "bom-ref": "pkg:maven/io.agroal/agroal-narayana@1.17.0.redhat-00001?type=jar", + "version": "1.17.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "31889b928ec4e6991552f214744c48fe74646b12", + "url": "https://code.engineering.redhat.com/gerrit/agroal/agroal.git#1.17.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The natural database connection pool", + "externalReferences": [ + { + "url": "https://github.com/agroal/agroal-narayana", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/projects/AG", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/agroal/agroal.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AZGKJQRS4DAAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.3.9:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "jboss-transaction-spi", + "purl": "pkg:maven/org.jboss/jboss-transaction-spi@7.6.0.Final-redhat-1?type=jar", + "type": "library", + "group": "org.jboss", + "bom-ref": "pkg:maven/org.jboss/jboss-transaction-spi@7.6.0.Final-redhat-1?type=jar", + "version": "7.6.0.Final-redhat-1", + "licenses": [ + { + "license": { + "url": "http://repository.jboss.org/licenses/cc0-1.0.txt", + "name": "Public Domain" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The Java Transaction SPI classes", + "externalReferences": [ + { + "url": "http://www.jboss.org", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://github.com/jbosstm/jboss-transaction-spi", + "type": "vcs" + } + ] + }, + { + "name": "jboss-connector-api_1.7_spec", + "purl": "pkg:maven/org.jboss.spec.javax.resource/jboss-connector-api_1.7_spec@1.0.0.Final?type=jar", + "type": "library", + "group": "org.jboss.spec.javax.resource", + "bom-ref": "pkg:maven/org.jboss.spec.javax.resource/jboss-connector-api_1.7_spec@1.0.0.Final?type=jar", + "version": "1.0.0.Final", + "licenses": [ + { + "license": { + "url": "http://repository.jboss.org/licenses/cddl.txt", + "name": "Common Development and Distribution License" + } + }, + { + "license": { + "url": "http://repository.jboss.org/licenses/gpl-2.0-ce.txt", + "name": "GNU General Public License, Version 2 with the Classpath Exception" + } + } + ], + "publisher": "JBoss by Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "JSR 322: Java(TM) EE Connector Architecture 1.7 API", + "externalReferences": [ + { + "url": "http://www.jboss.org/jboss-connector-api_1.7_spec", + "type": "website" + }, + { + "url": "https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://github.com/jboss/jboss-connector-api_spec", + "type": "vcs" + } + ] + }, + { + "name": "jboss-transaction-api_1.2_spec", + "purl": "pkg:maven/org.jboss.spec.javax.transaction/jboss-transaction-api_1.2_spec@1.0.0.Alpha3?type=jar", + "type": "library", + "group": "org.jboss.spec.javax.transaction", + "bom-ref": "pkg:maven/org.jboss.spec.javax.transaction/jboss-transaction-api_1.2_spec@1.0.0.Alpha3?type=jar", + "version": "1.0.0.Alpha3", + "licenses": [ + { + "license": { + "url": "http://repository.jboss.org/licenses/cddl.txt", + "name": "Common Development and Distribution License" + } + }, + { + "license": { + "url": "http://repository.jboss.org/licenses/gpl-2.0-ce.txt", + "name": "GNU General Public License, Version 2 with the Classpath Exception" + } + } + ], + "publisher": "JBoss by Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The Java Transaction 1.2 API classes", + "externalReferences": [ + { + "url": "http://www.jboss.org/jboss-transaction-api_1.2_spec", + "type": "website" + }, + { + "url": "https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://github.com/jboss/jboss-transaction-api_spec", + "type": "vcs" + } + ] + }, + { + "name": "agroal-pool", + "purl": "pkg:maven/io.agroal/agroal-pool@1.17.0.redhat-00001?type=jar", + "type": "library", + "group": "io.agroal", + "bom-ref": "pkg:maven/io.agroal/agroal-pool@1.17.0.redhat-00001?type=jar", + "version": "1.17.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "31889b928ec4e6991552f214744c48fe74646b12", + "url": "https://code.engineering.redhat.com/gerrit/agroal/agroal.git#1.17.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The natural database connection pool", + "externalReferences": [ + { + "url": "https://github.com/agroal/agroal-pool", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/projects/AG", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/agroal/agroal.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AZGKJQRS4DAAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.3.9:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-arc", + "purl": "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build time CDI dependency injection", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-core", + "purl": "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Quarkus core components", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-bootstrap-runner", + "purl": "pkg:maven/io.quarkus/quarkus-bootstrap-runner@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-bootstrap-runner@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The entry point for production applications using the custom ClassLoader. This contains the production ClassLoader code and must not have any non parent first dependencies.", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.redhat.com/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "org-crac", + "purl": "pkg:maven/io.github.crac/org-crac@0.1.1.redhat-00002?type=jar", + "type": "library", + "group": "io.github.crac", + "bom-ref": "pkg:maven/io.github.crac/org-crac@0.1.1.redhat-00002?type=jar", + "version": "0.1.1.redhat-00002", + "licenses": [ + { + "license": { + "id": "BSD-2-Clause", + "url": "https://opensource.org/licenses/BSD-2-Clause" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "aea6b1ae571f0915181c61c4dff69e47b79b5edb", + "url": "https://code.engineering.redhat.com/gerrit/CRaC/org.crac.git#0.1.1.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "A wrapper for OpenJDK CRaC API to build and run on any JDK", + "externalReferences": [ + { + "url": "https://github.com/crac/org.crac", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/CRaC/org.crac.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AXZFIYU4AAIBM", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.10-9-mx-mvn3.6.0:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-common-io", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-io@1.13.1.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye.common", + "bom-ref": "pkg:maven/io.smallrye.common/smallrye-common-io@1.13.1.redhat-00001?type=jar", + "version": "1.13.1.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "8a344873dd02ed0f6205dd90eab71ddfc5ef7c6d", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-common.git#1.13.1.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Common utilities for SmallRye", + "externalReferences": [ + { + "url": "http://smallrye.io/smallrye-common-io", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-common/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-common.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/ATTXFTRCLVQAK", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "jboss-logging", + "purl": "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar", + "type": "library", + "group": "org.jboss.logging", + "bom-ref": "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar", + "version": "3.5.0.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "ad13f3e863be0c748001e5eaf1be407103a4a5a6", + "url": "https://code.engineering.redhat.com/gerrit/jboss-logging.git#3.5.0.Final-redhat-00003-ad13f3e8" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The JBoss Logging Framework", + "externalReferences": [ + { + "url": "http://www.jboss.org", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.redhat.com/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/jboss-logging.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AY5EX4BX3RQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "jboss-logmanager-embedded", + "purl": "pkg:maven/org.jboss.logmanager/jboss-logmanager-embedded@1.0.10.redhat-00001?type=jar", + "type": "library", + "group": "org.jboss.logmanager", + "bom-ref": "pkg:maven/org.jboss.logmanager/jboss-logmanager-embedded@1.0.10.redhat-00001?type=jar", + "version": "1.0.10.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "978b43a0ecd25794ac245e7828df9e731d7f8a9b", + "url": "https://code.engineering.redhat.com/gerrit/dmlloyd/jboss-logmanager-embedded.git#1.0.10.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "An implementation of java.util.logging.LogManager", + "externalReferences": [ + { + "url": "http://www.jboss.org/jboss-logmanager-embedded", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/dmlloyd/jboss-logmanager-embedded.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUNVGE5GLVQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.0:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "wildfly-common", + "purl": "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00002?type=jar", + "type": "library", + "group": "org.wildfly.common", + "bom-ref": "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00002?type=jar", + "version": "1.5.4.Final-format-001-redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "782b8fbd543d9dc8d7d394ff0029438415b05188", + "url": "https://code.engineering.redhat.com/gerrit/wildfly/wildfly-common.git#1.5.4.Final-format-001-redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Provides, via submodules, a base configuration for JBoss project builds, as well as a derived configuration supporting multi-release JARs", + "externalReferences": [ + { + "url": "http://www.jboss.org/wildfly-common", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/wildfly/wildfly-common.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A3OFCG7LKMYAY", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.5", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-development-mode-spi", + "purl": "pkg:maven/io.quarkus/quarkus-development-mode-spi@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-development-mode-spi@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "SPI classes for Quarkus Development mode.", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-fs-util", + "purl": "pkg:maven/io.quarkus/quarkus-fs-util@0.0.9.redhat-00005?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-fs-util@0.0.9.redhat-00005?type=jar", + "version": "0.0.9.redhat-00005", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "238b0ad44d25b6efa23996d576a1f31ab73cdb67", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus-fs-util.git#0.0.9.redhat-00005" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Quarkus Filesystem Utils", + "externalReferences": [ + { + "url": "https://quarkus.io/", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkusfs-util/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus-fs-util.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A3OFCG7I2MYBC", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.11-9-mvn3.6.3-gradle7.0.2:1.0.9", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-ide-launcher", + "purl": "pkg:maven/io.quarkus/quarkus-ide-launcher@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-ide-launcher@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-config", + "purl": "pkg:maven/io.smallrye.config/smallrye-config@2.12.3.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye.config", + "bom-ref": "pkg:maven/io.smallrye.config/smallrye-config@2.12.3.redhat-00001?type=jar", + "version": "2.12.3.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "4ba71fb2eb44e7bdac75a694d12f3c72a740ce27", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-config.git#2.12.3.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "SmallRye Parent POM", + "externalReferences": [ + { + "url": "http://smallrye.io/smallrye-config", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-config/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-config.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AWRFGUIPK3QAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.5", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-config-core", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-core@2.12.3.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye.config", + "bom-ref": "pkg:maven/io.smallrye.config/smallrye-config-core@2.12.3.redhat-00001?type=jar", + "version": "2.12.3.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "4ba71fb2eb44e7bdac75a694d12f3c72a740ce27", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-config.git#2.12.3.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "SmallRye Parent POM", + "externalReferences": [ + { + "url": "http://smallrye.io/smallrye-config-core", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-config/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-config.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AWRFGUIPK3QAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.5", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-common-annotation", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-annotation@1.13.1.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye.common", + "bom-ref": "pkg:maven/io.smallrye.common/smallrye-common-annotation@1.13.1.redhat-00001?type=jar", + "version": "1.13.1.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "8a344873dd02ed0f6205dd90eab71ddfc5ef7c6d", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-common.git#1.13.1.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Common utilities for SmallRye", + "externalReferences": [ + { + "url": "http://smallrye.io/smallrye-common-annotation", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-common/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-common.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/ATTXFTRCLVQAK", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-common-classloader", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-classloader@1.13.1.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye.common", + "bom-ref": "pkg:maven/io.smallrye.common/smallrye-common-classloader@1.13.1.redhat-00001?type=jar", + "version": "1.13.1.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "8a344873dd02ed0f6205dd90eab71ddfc5ef7c6d", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-common.git#1.13.1.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Common utilities for SmallRye", + "externalReferences": [ + { + "url": "http://smallrye.io/smallrye-common-classloader", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-common/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-common.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/ATTXFTRCLVQAK", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-common-constraint", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-constraint@1.13.1.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye.common", + "bom-ref": "pkg:maven/io.smallrye.common/smallrye-common-constraint@1.13.1.redhat-00001?type=jar", + "version": "1.13.1.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "8a344873dd02ed0f6205dd90eab71ddfc5ef7c6d", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-common.git#1.13.1.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Common utilities for SmallRye", + "externalReferences": [ + { + "url": "http://smallrye.io/smallrye-common-constraint", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-common/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-common.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/ATTXFTRCLVQAK", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-common-expression", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-expression@1.13.1.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye.common", + "bom-ref": "pkg:maven/io.smallrye.common/smallrye-common-expression@1.13.1.redhat-00001?type=jar", + "version": "1.13.1.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "8a344873dd02ed0f6205dd90eab71ddfc5ef7c6d", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-common.git#1.13.1.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Common utilities for SmallRye", + "externalReferences": [ + { + "url": "http://smallrye.io/smallrye-common-expression", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-common/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-common.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/ATTXFTRCLVQAK", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-common-function", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-function@1.13.1.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye.common", + "bom-ref": "pkg:maven/io.smallrye.common/smallrye-common-function@1.13.1.redhat-00001?type=jar", + "version": "1.13.1.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "8a344873dd02ed0f6205dd90eab71ddfc5ef7c6d", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-common.git#1.13.1.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Common utilities for SmallRye", + "externalReferences": [ + { + "url": "http://smallrye.io/smallrye-common-function", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-common/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-common.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/ATTXFTRCLVQAK", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-config-common", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-common@2.12.3.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye.config", + "bom-ref": "pkg:maven/io.smallrye.config/smallrye-config-common@2.12.3.redhat-00001?type=jar", + "version": "2.12.3.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "4ba71fb2eb44e7bdac75a694d12f3c72a740ce27", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-config.git#2.12.3.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "SmallRye Parent POM", + "externalReferences": [ + { + "url": "http://smallrye.io/smallrye-config-common", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-config/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-config.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AWRFGUIPK3QAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.5", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "microprofile-config-api", + "purl": "pkg:maven/org.eclipse.microprofile.config/microprofile-config-api@2.0.1.redhat-00001?type=jar", + "type": "library", + "group": "org.eclipse.microprofile.config", + "bom-ref": "pkg:maven/org.eclipse.microprofile.config/microprofile-config-api@2.0.1.redhat-00001?type=jar", + "version": "2.0.1.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "23a406d9531d9b85fedd24b1495116026be9f88e", + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/microprofile-config.git#2.0.1.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "MicroProfile Config :: API", + "externalReferences": [ + { + "url": "https://microprofile.io/project/eclipse/microprofile-config", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/eclipse/microprofile-config/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/microprofile-config.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AQJSHOJ4WHAAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.3", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "jakarta.annotation-api", + "purl": "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5.redhat-00008?type=jar", + "type": "library", + "group": "jakarta.annotation", + "bom-ref": "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5.redhat-00008?type=jar", + "version": "1.3.5.redhat-00008", + "licenses": [ + { + "license": { + "id": "EPL-2.0" + } + }, + { + "license": { + "id": "GPL-2.0-with-classpath-exception" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "18daab91eb9fb56230d882450ab52024b18ce48f", + "url": "https://code.engineering.redhat.com/gerrit/eclipse-ee4j/common-annotations-api.git#1.3.5.redhat-00008" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Jakarta Annotations API", + "externalReferences": [ + { + "url": "https://projects.eclipse.org/projects/ee4j.ca", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/eclipse-ee4j/common-annotations-api/issues", + "type": "issue-tracker" + }, + { + "url": "https://dev.eclipse.org/mhonarc/lists/ca-dev", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/eclipse-ee4j/common-annotations-api.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A3OFCG7I2MYCQ", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.6", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "jakarta.enterprise.cdi-api", + "purl": "pkg:maven/jakarta.enterprise/jakarta.enterprise.cdi-api@2.0.2.redhat-00005?type=jar", + "type": "library", + "group": "jakarta.enterprise", + "bom-ref": "pkg:maven/jakarta.enterprise/jakarta.enterprise.cdi-api@2.0.2.redhat-00005?type=jar", + "version": "2.0.2.redhat-00005", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "11d3841d1308bd6695a3ddeb7c9babae8b699218", + "url": "https://code.engineering.redhat.com/gerrit/eclipse-ee4j/cdi.git#2.0.2.redhat-00005" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "APIs for Jakarta CDI (Contexts and Dependency Injection)", + "externalReferences": [ + { + "url": "http://cdi-spec.org", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/eclipse-ee4j/cdi/issues", + "type": "issue-tracker" + }, + { + "url": "https://dev.eclipse.org/mhonarc/lists/jakarta.ee-community/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/eclipse-ee4j/cdi.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A3Y4TMIOKMYAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.3", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "jakarta.el-api", + "purl": "pkg:maven/jakarta.el/jakarta.el-api@3.0.3.redhat-00003?type=jar", + "type": "library", + "group": "jakarta.el", + "bom-ref": "pkg:maven/jakarta.el/jakarta.el-api@3.0.3.redhat-00003?type=jar", + "version": "3.0.3.redhat-00003", + "licenses": [ + { + "license": { + "id": "EPL-2.0" + } + }, + { + "license": { + "id": "GPL-2.0-with-classpath-exception" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "63186afadc613ba4283e8602cfe35417440fdb15", + "url": "https://code.engineering.redhat.com/gerrit/eclipse-ee4j/el-ri.git#3.0.3.redhat-00003-63186afa" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Jakarta Expression Language defines an expression language for Java applications", + "externalReferences": [ + { + "url": "https://projects.eclipse.org/projects/ee4j.el", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/eclipse-ee4j/el-ri/issues", + "type": "issue-tracker" + }, + { + "url": "https://dev.eclipse.org/mhonarc/lists/el-dev", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/eclipse-ee4j/el-ri.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AXZFIYU2IAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.6", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "jakarta.inject-api", + "purl": "pkg:maven/jakarta.inject/jakarta.inject-api@1.0.0.redhat-00002?type=jar", + "type": "library", + "group": "jakarta.inject", + "bom-ref": "pkg:maven/jakarta.inject/jakarta.inject-api@1.0.0.redhat-00002?type=jar", + "version": "1.0.0.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "9b228c657b5d86511dae6299469110f52b6ecd2f", + "url": "http://code.engineering.redhat.com/gerrit/eclipse-ee4j/injection-api.git#1.0.0.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Jakarta Dependency Injection", + "externalReferences": [ + { + "url": "https://github.com/eclipse-ee4j/injection-api", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "http://code.engineering.redhat.com/gerrit/eclipse-ee4j/injection-api.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/33383", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.3.9:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "jakarta.interceptor-api", + "purl": "pkg:maven/jakarta.interceptor/jakarta.interceptor-api@1.2.5.redhat-00003?type=jar", + "type": "library", + "group": "jakarta.interceptor", + "bom-ref": "pkg:maven/jakarta.interceptor/jakarta.interceptor-api@1.2.5.redhat-00003?type=jar", + "version": "1.2.5.redhat-00003", + "licenses": [ + { + "license": { + "id": "EPL-2.0" + } + }, + { + "license": { + "id": "GPL-2.0-with-classpath-exception" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "f52500dbe4a93d96bc5d1e4055098b2f64d31ae4", + "url": "https://code.engineering.redhat.com/gerrit/eclipse-ee4j/interceptor-api.git#1.2.5.redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Jakarta Interceptors defines a means of interposing on business method invocations and specific events—such as lifecycle events and timeout events—that occur on instances of Jakarta EE components and other managed classes.", + "externalReferences": [ + { + "url": "https://github.com/eclipse-ee4j/interceptor-api", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/eclipse-ee4j/interceptor-api/issues", + "type": "issue-tracker" + }, + { + "url": "https://dev.eclipse.org/mhonarc/lists/jakarta.ee-community/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/eclipse-ee4j/interceptor-api.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AXZFIYU2IAICW", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.6", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "graal-sdk", + "purl": "pkg:maven/org.graalvm.sdk/graal-sdk@22.3.4.0-1-redhat-00001?type=jar", + "type": "library", + "group": "org.graalvm.sdk", + "bom-ref": "pkg:maven/org.graalvm.sdk/graal-sdk@22.3.4.0-1-redhat-00001?type=jar", + "version": "22.3.4.0-1-redhat-00001", + "licenses": [ + { + "license": { + "id": "UPL-1.0", + "url": "https://opensource.org/licenses/UPL" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "a5fa6727dd49b77511a2c93fd3e27658868ffc56", + "url": "https://code.engineering.redhat.com/gerrit/graalvm/mandrel.git#22.3.4.0-1-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "GraalVM is an ecosystem for compiling and running applications written in multiple languages. GraalVM removes the isolation between programming languages and enables interoperability in a shared runtime.", + "externalReferences": [ + { + "url": "https://github.com/oracle/graal", + "type": "website" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/graalvm/mandrel.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A34ORPBVQZQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j17.0.9-9-mx6.8.0-mvn3.6.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "jboss-logging-annotations", + "purl": "pkg:maven/org.jboss.logging/jboss-logging-annotations@2.2.1.Final-redhat-00002?type=jar", + "type": "library", + "group": "org.jboss.logging", + "bom-ref": "pkg:maven/org.jboss.logging/jboss-logging-annotations@2.2.1.Final-redhat-00002?type=jar", + "version": "2.2.1.Final-redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "84b1550682ff5c9d1e6b6f98b27fd2b95029d1a4", + "url": "https://code.engineering.redhat.com/gerrit/jboss-logging/jboss-logging-tools.git#2.2.1.Final-redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Provides, via submodules, a base configuration for JBoss project builds, as well as a derived configuration supporting multi-release JARs", + "externalReferences": [ + { + "url": "http://www.jboss.org/jboss-logging-tools-parent/jboss-logging-annotations", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/jboss-logging/jboss-logging-tools.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A3OFCG7LKMYBU", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.6", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "slf4j-jboss-logmanager", + "purl": "pkg:maven/org.jboss.slf4j/slf4j-jboss-logmanager@1.2.0.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.jboss.slf4j", + "bom-ref": "pkg:maven/org.jboss.slf4j/slf4j-jboss-logmanager@1.2.0.Final-redhat-00001?type=jar", + "version": "1.2.0.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "ebc0ed5a75dc4f942120a872a167bc7915c84d89", + "url": "https://code.engineering.redhat.com/gerrit/jboss-logging/slf4j-jboss-logmanager.git#1.2.0.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Provides, via submodules, a base configuration for JBoss project builds, as well as a derived configuration supporting multi-release JARs", + "externalReferences": [ + { + "url": "http://www.jboss.org/slf4j-jboss-logmanager", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.redhat.com/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/jboss-logging/slf4j-jboss-logmanager.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUNVGMNETVQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.3.9:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "jboss-threads", + "purl": "pkg:maven/org.jboss.threads/jboss-threads@3.4.3.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.jboss.threads", + "bom-ref": "pkg:maven/org.jboss.threads/jboss-threads@3.4.3.Final-redhat-00001?type=jar", + "version": "3.4.3.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "941a92ca03ed6051f229c2163346246dc824c60c", + "url": "https://code.engineering.redhat.com/gerrit/jbossas/jboss-threads.git#3.4.3.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Provides, via submodules, a base configuration for JBoss project builds, as well as a derived configuration supporting multi-release JARs", + "externalReferences": [ + { + "url": "http://www.jboss.org/jboss-threads", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/JBTHR", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/jbossas/jboss-threads.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUNVDED43VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.11-9-mvn3.8.1-gradle7.0.2:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "slf4j-api", + "purl": "pkg:maven/org.slf4j/slf4j-api@1.7.36.redhat-00005?type=jar", + "type": "library", + "group": "org.slf4j", + "bom-ref": "pkg:maven/org.slf4j/slf4j-api@1.7.36.redhat-00005?type=jar", + "version": "1.7.36.redhat-00005", + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "da8b4b73a5137019a763bf60eb15b11cbe2afd84", + "url": "https://code.engineering.redhat.com/gerrit/slf4j.git#1.7.36.redhat-00005" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The slf4j API", + "externalReferences": [ + { + "url": "http://www.slf4j.org", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/slf4j.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A3LV4P6G2MYAK", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.5.4-golang:1.0.5", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "arc", + "purl": "pkg:maven/io.quarkus.arc/arc@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus.arc", + "bom-ref": "pkg:maven/io.quarkus.arc/arc@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Provides, via submodules, a base configuration for JBoss project builds, as well as a derived configuration supporting multi-release JARs", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.redhat.com/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "mutiny", + "purl": "pkg:maven/io.smallrye.reactive/mutiny@1.7.0.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye.reactive", + "bom-ref": "pkg:maven/io.smallrye.reactive/mutiny@1.7.0.redhat-00001?type=jar", + "version": "1.7.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "38decebceeda9b5bb50e3997936afbcba9c088d8", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-mutiny.git#1.7.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Intuitive Event-Driven Reactive Programming Library for Java", + "externalReferences": [ + { + "url": "https://smallrye.io/smallrye-mutiny/mutiny", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-mutiny/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-mutiny.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUOMUWXT3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.5", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "reactive-streams", + "purl": "pkg:maven/org.reactivestreams/reactive-streams@1.0.3.redhat-00006?type=jar", + "type": "library", + "group": "org.reactivestreams", + "bom-ref": "pkg:maven/org.reactivestreams/reactive-streams@1.0.3.redhat-00006?type=jar", + "version": "1.0.3.redhat-00006", + "pedigree": { + "commits": [ + { + "uid": "3baeb5801ce83ab55144819e6c613a293662198d", + "url": "https://code.engineering.redhat.com/gerrit/reactive-streams/reactive-streams-jvm.git#1.0.3.redhat-00006" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "externalReferences": [ + { + "url": "https://code.engineering.redhat.com/gerrit/reactive-streams/reactive-streams-jvm.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A2PW6YTQQHQB4", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.0-gradle5.6.2:1.0.8", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "jakarta.transaction-api", + "purl": "pkg:maven/jakarta.transaction/jakarta.transaction-api@1.3.3.redhat-00004?type=jar", + "type": "library", + "group": "jakarta.transaction", + "bom-ref": "pkg:maven/jakarta.transaction/jakarta.transaction-api@1.3.3.redhat-00004?type=jar", + "version": "1.3.3.redhat-00004", + "licenses": [ + { + "license": { + "id": "EPL-2.0" + } + }, + { + "license": { + "id": "GPL-2.0-with-classpath-exception" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "00a7b7132403a9ce261ad2a2bae6eb6b2fbd3951", + "url": "https://code.engineering.redhat.com/gerrit/eclipse-ee4j/jta-api.git#1.3.3.redhat-00004" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Jakarta Transactions", + "externalReferences": [ + { + "url": "https://projects.eclipse.org/projects/ee4j.jta", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/eclipse-ee4j/jta-api/issues", + "type": "issue-tracker" + }, + { + "url": "https://dev.eclipse.org/mhonarc/lists/jta-dev/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/eclipse-ee4j/jta-api.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AXZFIYU4YAIBU", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.6", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "microprofile-context-propagation-api", + "purl": "pkg:maven/org.eclipse.microprofile.context-propagation/microprofile-context-propagation-api@1.2.0.redhat-00012?type=jar", + "type": "library", + "group": "org.eclipse.microprofile.context-propagation", + "bom-ref": "pkg:maven/org.eclipse.microprofile.context-propagation/microprofile-context-propagation-api@1.2.0.redhat-00012?type=jar", + "version": "1.2.0.redhat-00012", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "bc2baff93c4fcf5b321418796e6cf58c5c461774", + "url": "https://code.engineering.redhat.com/gerrit/eclipse/microprofile-context-propagation.git#1.2.0.redhat-00012" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "MicroProfile Context Propagation :: API", + "externalReferences": [ + { + "url": "http://microprofile.io/microprofile-context-propagation-api", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/eclipse/microprofile-context-propagation/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/eclipse/microprofile-context-propagation.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AXZFIYU6IAIBI", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.6", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-credentials", + "purl": "pkg:maven/io.quarkus/quarkus-credentials@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-credentials@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-datasource", + "purl": "pkg:maven/io.quarkus/quarkus-datasource@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-datasource@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Configure your datasources", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-datasource-common", + "purl": "pkg:maven/io.quarkus/quarkus-datasource-common@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-datasource-common@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-narayana-jta", + "purl": "pkg:maven/io.quarkus/quarkus-narayana-jta@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-narayana-jta@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Offer JTA transaction support (included in Hibernate ORM)", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-mutiny", + "purl": "pkg:maven/io.quarkus/quarkus-mutiny@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-mutiny@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Write reactive applications with the modern Reactive Programming library Mutiny", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-smallrye-context-propagation", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-context-propagation@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-smallrye-context-propagation@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Propagate contexts between managed threads in reactive applications", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-context-propagation", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation@1.2.2.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye", + "bom-ref": "pkg:maven/io.smallrye/smallrye-context-propagation@1.2.2.redhat-00001?type=jar", + "version": "1.2.2.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "17ca886fb01b390ab8cf48c1581f78ded2195aea", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-context-propagation.git#1.2.2.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "A pluggable library for context propagation in reactive libraries", + "externalReferences": [ + { + "url": "https://github.com/smallrye/smallrye-context-propagation/smallrye-context-propagation", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-context-propagation/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-context-propagation.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AQB23TTH4UQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-adoptopenjdk12-mvn3.6.0-gradle5.4.1:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-context-propagation-api", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation-api@1.2.2.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye", + "bom-ref": "pkg:maven/io.smallrye/smallrye-context-propagation-api@1.2.2.redhat-00001?type=jar", + "version": "1.2.2.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "17ca886fb01b390ab8cf48c1581f78ded2195aea", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-context-propagation.git#1.2.2.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "A pluggable library for context propagation in reactive libraries", + "externalReferences": [ + { + "url": "https://github.com/smallrye/smallrye-context-propagation/smallrye-context-propagation-api", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-context-propagation/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-context-propagation.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AQB23TTH4UQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-adoptopenjdk12-mvn3.6.0-gradle5.4.1:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-context-propagation-storage", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation-storage@1.2.2.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye", + "bom-ref": "pkg:maven/io.smallrye/smallrye-context-propagation-storage@1.2.2.redhat-00001?type=jar", + "version": "1.2.2.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "17ca886fb01b390ab8cf48c1581f78ded2195aea", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-context-propagation.git#1.2.2.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "A pluggable library for context propagation in reactive libraries", + "externalReferences": [ + { + "url": "https://github.com/smallrye/smallrye-context-propagation/smallrye-context-propagation-storage", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-context-propagation/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-context-propagation.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AQB23TTH4UQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-adoptopenjdk12-mvn3.6.0-gradle5.4.1:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "mutiny-smallrye-context-propagation", + "purl": "pkg:maven/io.smallrye.reactive/mutiny-smallrye-context-propagation@1.7.0.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye.reactive", + "bom-ref": "pkg:maven/io.smallrye.reactive/mutiny-smallrye-context-propagation@1.7.0.redhat-00001?type=jar", + "version": "1.7.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "38decebceeda9b5bb50e3997936afbcba9c088d8", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-mutiny.git#1.7.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Intuitive Event-Driven Reactive Programming Library for Java", + "externalReferences": [ + { + "url": "https://smallrye.io/smallrye-mutiny/mutiny-smallrye-context-propagation", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-mutiny/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-mutiny.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUOMUWXT3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.5", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-transaction-annotations", + "purl": "pkg:maven/io.quarkus/quarkus-transaction-annotations@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-transaction-annotations@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Transaction Annotations - Runtime", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-context-propagation-jta", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation-jta@1.2.2.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye", + "bom-ref": "pkg:maven/io.smallrye/smallrye-context-propagation-jta@1.2.2.redhat-00001?type=jar", + "version": "1.2.2.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "17ca886fb01b390ab8cf48c1581f78ded2195aea", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-context-propagation.git#1.2.2.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "A pluggable library for context propagation in reactive libraries", + "externalReferences": [ + { + "url": "https://github.com/smallrye/smallrye-context-propagation/smallrye-context-propagation-jta", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-context-propagation/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-context-propagation.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AQB23TTH4UQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-adoptopenjdk12-mvn3.6.0-gradle5.4.1:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-reactive-converter-api", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-converter-api@2.7.0.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye.reactive", + "bom-ref": "pkg:maven/io.smallrye.reactive/smallrye-reactive-converter-api@2.7.0.redhat-00001?type=jar", + "version": "2.7.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "24b24e129059f958dbaa2eafaab61496459b83ca", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-reactive-converters.git#2.7.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "SmallRye Parent POM", + "externalReferences": [ + { + "url": "https://smallrye.io/smallrye-parent/smallrye-reactive-converters-projects/smallrye-reactive-converters/smallrye-reactive-converter-api", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-reactive-converters/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-reactive-converters.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AR4V35M3PEAAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.3", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-reactive-converter-mutiny", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-converter-mutiny@2.7.0.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye.reactive", + "bom-ref": "pkg:maven/io.smallrye.reactive/smallrye-reactive-converter-mutiny@2.7.0.redhat-00001?type=jar", + "version": "2.7.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "24b24e129059f958dbaa2eafaab61496459b83ca", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-reactive-converters.git#2.7.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "SmallRye Parent POM", + "externalReferences": [ + { + "url": "https://smallrye.io/smallrye-parent/smallrye-reactive-converters-projects/smallrye-reactive-converters/smallrye-reactive-converter-mutiny", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-reactive-converters/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-reactive-converters.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AR4V35M3PEAAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.3", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "narayana-jta", + "purl": "pkg:maven/org.jboss.narayana.jta/narayana-jta@5.13.1.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.jboss.narayana.jta", + "bom-ref": "pkg:maven/org.jboss.narayana.jta/narayana-jta@5.13.1.Final-redhat-00001?type=jar", + "version": "5.13.1.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "LGPL-2.1-only" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "1c9d591391357e01827271a668eae1b80e561552", + "url": "https://code.engineering.redhat.com/gerrit/narayana.git#5.13.1.Final-redhat-00001-1c9d5913" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Narayana: ArjunaJTA narayana-jta (jta uber jar)", + "externalReferences": [ + { + "url": "https://narayana.io/narayana-jta-all/narayana-jta", + "type": "website" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AWXBP2I4DAQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://jira.jboss.org/jira/browse/JBTM/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/narayana.git", + "type": "vcs" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.3", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "narayana-jts-integration", + "purl": "pkg:maven/org.jboss.narayana.jts/narayana-jts-integration@5.13.1.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.jboss.narayana.jts", + "bom-ref": "pkg:maven/org.jboss.narayana.jts/narayana-jts-integration@5.13.1.Final-redhat-00001?type=jar", + "version": "5.13.1.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "LGPL-2.1-only" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "1c9d591391357e01827271a668eae1b80e561552", + "url": "https://code.engineering.redhat.com/gerrit/narayana.git#5.13.1.Final-redhat-00001-1c9d5913" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Narayana: ArjunaJTS integration (atx)", + "externalReferences": [ + { + "url": "https://narayana.io/narayana-jts-all/narayana-jts-integration", + "type": "website" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AWXBP2I4DAQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://jira.jboss.org/jira/browse/JBTM/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/narayana.git", + "type": "vcs" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.3", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-agroal-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-agroal-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-agroal-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-agroal", + "purl": "pkg:maven/io.quarkus/quarkus-agroal@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-agroal:2.13.9.Final-redhat-00003#1", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Pool JDBC database connections (included in Hibernate ORM)", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "agroal-narayana", + "purl": "pkg:maven/io.agroal/agroal-narayana@1.17.0.redhat-00001?type=jar", + "type": "library", + "group": "io.agroal", + "bom-ref": "i.a:agroal-narayana:1.17.0.redhat-00001#1", + "version": "1.17.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "31889b928ec4e6991552f214744c48fe74646b12", + "url": "https://code.engineering.redhat.com/gerrit/agroal/agroal.git#1.17.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The natural database connection pool", + "externalReferences": [ + { + "url": "https://github.com/agroal/agroal-narayana", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/projects/AG", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/agroal/agroal.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AZGKJQRS4DAAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.3.9:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "jboss-transaction-spi", + "purl": "pkg:maven/org.jboss/jboss-transaction-spi@7.6.0.Final-redhat-1?type=jar", + "type": "library", + "group": "org.jboss", + "bom-ref": "o.j:jboss-transaction-spi:7.6.0.Final-redhat-1#1", + "version": "7.6.0.Final-redhat-1", + "licenses": [ + { + "license": { + "url": "http://repository.jboss.org/licenses/cc0-1.0.txt", + "name": "Public Domain" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The Java Transaction SPI classes", + "externalReferences": [ + { + "url": "http://www.jboss.org", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://github.com/jbosstm/jboss-transaction-spi", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-narayana-jta", + "purl": "pkg:maven/io.quarkus/quarkus-narayana-jta@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-narayana-jta:2.13.9.Final-redhat-00003#1", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Offer JTA transaction support (included in Hibernate ORM)", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "narayana-jta", + "purl": "pkg:maven/org.jboss.narayana.jta/narayana-jta@5.13.1.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.jboss.narayana.jta", + "bom-ref": "o.j.n.j:narayana-jta:5.13.1.Final-redhat-00001#1", + "version": "5.13.1.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "LGPL-2.1-only" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "1c9d591391357e01827271a668eae1b80e561552", + "url": "https://code.engineering.redhat.com/gerrit/narayana.git#5.13.1.Final-redhat-00001-1c9d5913" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Narayana: ArjunaJTA narayana-jta (jta uber jar)", + "externalReferences": [ + { + "url": "https://narayana.io/narayana-jta-all/narayana-jta", + "type": "website" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AWXBP2I4DAQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://jira.jboss.org/jira/browse/JBTM/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/narayana.git", + "type": "vcs" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.3", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-agroal-spi", + "purl": "pkg:maven/io.quarkus/quarkus-agroal-spi@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-agroal-spi@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-core-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-bootstrap-core", + "purl": "pkg:maven/io.quarkus/quarkus-bootstrap-core@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-bootstrap-core@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Provides, via submodules, a base configuration for JBoss project builds, as well as a derived configuration supporting multi-release JARs", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.redhat.com/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-bootstrap-app-model", + "purl": "pkg:maven/io.quarkus/quarkus-bootstrap-app-model@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-bootstrap-app-model@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Provides, via submodules, a base configuration for JBoss project builds, as well as a derived configuration supporting multi-release JARs", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.redhat.com/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "commons-logging-jboss-logging", + "purl": "pkg:maven/org.jboss.logging/commons-logging-jboss-logging@1.0.0.Final-redhat-1?type=jar", + "type": "library", + "group": "org.jboss.logging", + "bom-ref": "pkg:maven/org.jboss.logging/commons-logging-jboss-logging@1.0.0.Final-redhat-1?type=jar", + "version": "1.0.0.Final-redhat-1", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Apache Commons Logging to JBoss Logging implementation", + "externalReferences": [ + { + "url": "http://www.jboss.org", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://github.com/jboss-logging/commons-logging-jboss-logging", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-builder", + "purl": "pkg:maven/io.quarkus/quarkus-builder@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-builder@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-class-change-agent", + "purl": "pkg:maven/io.quarkus/quarkus-class-change-agent@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-class-change-agent@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "A Java Agent that exposes the instrumentation API. This allows for super fast hot reloads if there have been no changes to the structure of the class files. This agent is not required for hot reload, it just provides an optimisation in some circumstances.", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-devtools-utilities", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-utilities@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-devtools-utilities@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Provides, via submodules, a base configuration for JBoss project builds, as well as a derived configuration supporting multi-release JARs", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.redhat.com/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "gizmo", + "purl": "pkg:maven/io.quarkus.gizmo/gizmo@1.1.1.Final-redhat-00001?type=jar", + "type": "library", + "group": "io.quarkus.gizmo", + "bom-ref": "pkg:maven/io.quarkus.gizmo/gizmo@1.1.1.Final-redhat-00001?type=jar", + "version": "1.1.1.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "d5f84d8fb982658314250171cd64e2dac1491a6d", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/gizmo.git#1.1.1.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "A bytecode generation library.", + "externalReferences": [ + { + "url": "http://www.jboss.org/gizmo", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.redhat.com/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/gizmo.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU3LIKANDVQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.14-9-mvn3.8.4-gradle7.3.3:1.0.2", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "jandex", + "purl": "pkg:maven/org.jboss/jandex@2.4.3.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.jboss", + "bom-ref": "pkg:maven/org.jboss/jandex@2.4.3.Final-redhat-00001?type=jar", + "version": "2.4.3.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "9522ee213409e26e061110a120a902aadc291742", + "url": "https://code.engineering.redhat.com/gerrit/jandex.git#2.4.3.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Parent POM for JBoss projects. Provides default project build configuration.", + "externalReferences": [ + { + "url": "http://www.jboss.org/jandex", + "type": "website" + }, + { + "url": "https://issues.jboss.org/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/jandex.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/ASR2QTU3GKQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.3.9:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "asm", + "purl": "pkg:maven/org.ow2.asm/asm@9.3.0.redhat-00001?type=jar", + "type": "library", + "group": "org.ow2.asm", + "bom-ref": "pkg:maven/org.ow2.asm/asm@9.3.0.redhat-00001?type=jar", + "version": "9.3.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "url": "https://opensource.org/licenses/BSD-3-Clause" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "cd132798a8eb4be3b884726df4e6a680ed5a9e96", + "url": "https://code.engineering.redhat.com/gerrit/asm.git#9.3.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "ASM, a very small and fast Java bytecode manipulation framework", + "externalReferences": [ + { + "url": "http://asm.ow2.io/", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://gitlab.ow2.org/asm/asm/issues", + "type": "issue-tracker" + }, + { + "url": "https://mail.ow2.org/wws/arc/asm/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/asm.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/ASOPXMJRNVAAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.0-gradle6.8.3-kotlin1.4.32:1.0.6", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "asm-util", + "purl": "pkg:maven/org.ow2.asm/asm-util@9.3.0.redhat-00001?type=jar", + "type": "library", + "group": "org.ow2.asm", + "bom-ref": "pkg:maven/org.ow2.asm/asm-util@9.3.0.redhat-00001?type=jar", + "version": "9.3.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "url": "https://opensource.org/licenses/BSD-3-Clause" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "cd132798a8eb4be3b884726df4e6a680ed5a9e96", + "url": "https://code.engineering.redhat.com/gerrit/asm.git#9.3.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Utilities for ASM, a very small and fast Java bytecode manipulation framework", + "externalReferences": [ + { + "url": "http://asm.ow2.io/", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://gitlab.ow2.org/asm/asm/issues", + "type": "issue-tracker" + }, + { + "url": "https://mail.ow2.org/wws/arc/asm/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/asm.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/ASOPXMJRNVAAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.0-gradle6.8.3-kotlin1.4.32:1.0.6", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "asm-analysis", + "purl": "pkg:maven/org.ow2.asm/asm-analysis@9.3.0.redhat-00001?type=jar", + "type": "library", + "group": "org.ow2.asm", + "bom-ref": "pkg:maven/org.ow2.asm/asm-analysis@9.3.0.redhat-00001?type=jar", + "version": "9.3.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "url": "https://opensource.org/licenses/BSD-3-Clause" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "cd132798a8eb4be3b884726df4e6a680ed5a9e96", + "url": "https://code.engineering.redhat.com/gerrit/asm.git#9.3.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Static code analysis API of ASM, a very small and fast Java bytecode manipulation framework", + "externalReferences": [ + { + "url": "http://asm.ow2.io/", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://gitlab.ow2.org/asm/asm/issues", + "type": "issue-tracker" + }, + { + "url": "https://mail.ow2.org/wws/arc/asm/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/asm.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/ASOPXMJRNVAAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.0-gradle6.8.3-kotlin1.4.32:1.0.6", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "asm-tree", + "purl": "pkg:maven/org.ow2.asm/asm-tree@9.3.0.redhat-00001?type=jar", + "type": "library", + "group": "org.ow2.asm", + "bom-ref": "pkg:maven/org.ow2.asm/asm-tree@9.3.0.redhat-00001?type=jar", + "version": "9.3.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "url": "https://opensource.org/licenses/BSD-3-Clause" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "cd132798a8eb4be3b884726df4e6a680ed5a9e96", + "url": "https://code.engineering.redhat.com/gerrit/asm.git#9.3.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Tree API of ASM, a very small and fast Java bytecode manipulation framework", + "externalReferences": [ + { + "url": "http://asm.ow2.io/", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://gitlab.ow2.org/asm/asm/issues", + "type": "issue-tracker" + }, + { + "url": "https://mail.ow2.org/wws/arc/asm/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/asm.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/ASOPXMJRNVAAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.0-gradle6.8.3-kotlin1.4.32:1.0.6", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "aesh", + "purl": "pkg:maven/org.aesh/aesh@2.6.0.redhat-00001?type=jar", + "type": "library", + "group": "org.aesh", + "bom-ref": "pkg:maven/org.aesh/aesh@2.6.0.redhat-00001?type=jar", + "version": "2.6.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "76d81e20f1d5552b775d8c9a2d1bb907c4541903", + "url": "http://code.engineering.redhat.com/gerrit/aesh.git#2.6.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Æsh (Another Extendable SHell)", + "externalReferences": [ + { + "url": "http://www.jboss.org/aesh-all/aesh", + "type": "website" + }, + { + "url": "https://issues.jboss.org/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "http://code.engineering.redhat.com/gerrit/aesh.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/53970", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.3.9:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "readline", + "purl": "pkg:maven/org.aesh/readline@2.2.0.redhat-00001?type=jar", + "type": "library", + "group": "org.aesh", + "bom-ref": "pkg:maven/org.aesh/readline@2.2.0.redhat-00001?type=jar", + "version": "2.2.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "459ca9dc8fad44ad4de8cfb51cbde482937a0c6e", + "url": "http://code.engineering.redhat.com/gerrit/aeshell/aesh-readline.git#2.2.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Æsh (Another Extendable SHell) Readline API", + "externalReferences": [ + { + "url": "http://www.jboss.org/readline-all/readline", + "type": "website" + }, + { + "url": "https://issues.jboss.org/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "http://code.engineering.redhat.com/gerrit/aeshell/aesh-readline.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/85131", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.3.9:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "jansi", + "purl": "pkg:maven/org.fusesource.jansi/jansi@1.18?type=jar", + "type": "library", + "group": "org.fusesource.jansi", + "bom-ref": "pkg:maven/org.fusesource.jansi/jansi@1.18?type=jar", + "version": "1.18", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "FuseSource, Corp.", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Jansi is a java library for generating and interpreting ANSI escape sequences.", + "externalReferences": [ + { + "url": "http://fusesource.github.io/jansi/jansi", + "type": "website" + }, + { + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2", + "type": "distribution" + }, + { + "url": "https://github.com/fusesource/jansi/issues", + "type": "issue-tracker" + }, + { + "url": "http://groups.google.com/group/jansi", + "type": "mailing-list" + }, + { + "url": "https://github.com/fusesource/jansi", + "type": "vcs" + } + ] + }, + { + "name": "commons-lang3", + "purl": "pkg:maven/org.apache.commons/commons-lang3@3.12.0.redhat-00001?type=jar", + "type": "library", + "group": "org.apache.commons", + "bom-ref": "pkg:maven/org.apache.commons/commons-lang3@3.12.0.redhat-00001?type=jar", + "version": "3.12.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "6fc10cb4596cceaca652d4021cfb52d73a84a95c", + "url": "http://code.engineering.redhat.com/gerrit/apache/commons-lang.git#3.12.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Apache Commons Lang, a package of Java utility classes for the classes that are in java.lang's hierarchy, or are considered to be so standard as to justify existence in java.lang.", + "externalReferences": [ + { + "url": "https://commons.apache.org/proper/commons-lang/", + "type": "website" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/ALXX7OEMHHAAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.apache.org/jira/browse/LANG", + "type": "issue-tracker" + }, + { + "url": "https://mail-archives.apache.org/mod_mbox/commons-user/", + "type": "mailing-list" + }, + { + "url": "http://code.engineering.redhat.com/gerrit/apache/commons-lang.git", + "type": "vcs" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.1", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "org.eclipse.sisu.inject", + "purl": "pkg:maven/org.eclipse.sisu/org.eclipse.sisu.inject@0.3.5.redhat-00001?type=jar", + "type": "library", + "group": "org.eclipse.sisu", + "bom-ref": "pkg:maven/org.eclipse.sisu/org.eclipse.sisu.inject@0.3.5.redhat-00001?type=jar", + "version": "0.3.5.redhat-00001", + "licenses": [ + { + "license": { + "id": "EPL-1.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "ea44bd9b430df8a0c49695713a5daed5c3e20576", + "url": "https://code.engineering.redhat.com/gerrit/sisu/org.eclipse.sisu.inject.git#0.3.5.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "JSR330-based container; supports classpath scanning, auto-binding, and dynamic auto-wiring", + "externalReferences": [ + { + "url": "http://www.eclipse.org/sisu/org.eclipse.sisu.inject/", + "type": "website" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AZVDQVCBCMYAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "https://bugs.eclipse.org/bugs/enter_bug.cgi?product=Sisu&component=Inject&format=guided", + "type": "issue-tracker" + }, + { + "url": "http://dev.eclipse.org/mhonarc/lists/sisu-dev/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/sisu/org.eclipse.sisu.inject.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-oraclejdk8-mvn3.5.4:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "junit-jupiter", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter@5.9.1?type=jar", + "type": "library", + "group": "org.junit.jupiter", + "bom-ref": "pkg:maven/org.junit.jupiter/junit-jupiter@5.9.1?type=jar", + "version": "5.9.1", + "licenses": [ + { + "license": { + "id": "EPL-2.0" + } + } + ], + "publisher": "central", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Module \"junit-jupiter\" of JUnit 5.", + "externalReferences": [ + { + "url": "https://junit.org/junit5/", + "type": "website" + }, + { + "url": "https://github.com/junit-team/junit5", + "type": "vcs" + } + ] + }, + { + "name": "junit-jupiter-api", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter-api@5.9.1?type=jar", + "type": "library", + "group": "org.junit.jupiter", + "bom-ref": "pkg:maven/org.junit.jupiter/junit-jupiter-api@5.9.1?type=jar", + "version": "5.9.1", + "licenses": [ + { + "license": { + "id": "EPL-2.0" + } + } + ], + "publisher": "central", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Module \"junit-jupiter-api\" of JUnit 5.", + "externalReferences": [ + { + "url": "https://junit.org/junit5/", + "type": "website" + }, + { + "url": "https://github.com/junit-team/junit5", + "type": "vcs" + } + ] + }, + { + "name": "apiguardian-api", + "purl": "pkg:maven/org.apiguardian/apiguardian-api@1.1.2?type=jar", + "type": "library", + "group": "org.apiguardian", + "bom-ref": "pkg:maven/org.apiguardian/apiguardian-api@1.1.2?type=jar", + "version": "1.1.2", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "central", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "@API Guardian", + "externalReferences": [ + { + "url": "https://github.com/apiguardian-team/apiguardian", + "type": "website" + }, + { + "url": "https://github.com/apiguardian-team/apiguardian", + "type": "vcs" + } + ] + }, + { + "name": "junit-platform-commons", + "purl": "pkg:maven/org.junit.platform/junit-platform-commons@1.9.1?type=jar", + "type": "library", + "group": "org.junit.platform", + "bom-ref": "pkg:maven/org.junit.platform/junit-platform-commons@1.9.1?type=jar", + "version": "1.9.1", + "licenses": [ + { + "license": { + "id": "EPL-2.0" + } + } + ], + "publisher": "central", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Module \"junit-platform-commons\" of JUnit 5.", + "externalReferences": [ + { + "url": "https://junit.org/junit5/", + "type": "website" + }, + { + "url": "https://github.com/junit-team/junit5", + "type": "vcs" + } + ] + }, + { + "name": "opentest4j", + "purl": "pkg:maven/org.opentest4j/opentest4j@1.2.0?type=jar", + "type": "library", + "group": "org.opentest4j", + "bom-ref": "pkg:maven/org.opentest4j/opentest4j@1.2.0?type=jar", + "version": "1.2.0", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "central", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Open Test Alliance for the JVM", + "externalReferences": [ + { + "url": "https://github.com/ota4j-team/opentest4j", + "type": "website" + }, + { + "url": "https://github.com/ota4j-team/opentest4j", + "type": "vcs" + } + ] + }, + { + "name": "junit-jupiter-engine", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter-engine@5.9.1?type=jar", + "type": "library", + "group": "org.junit.jupiter", + "bom-ref": "pkg:maven/org.junit.jupiter/junit-jupiter-engine@5.9.1?type=jar", + "version": "5.9.1", + "licenses": [ + { + "license": { + "id": "EPL-2.0" + } + } + ], + "publisher": "central", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Module \"junit-jupiter-engine\" of JUnit 5.", + "externalReferences": [ + { + "url": "https://junit.org/junit5/", + "type": "website" + }, + { + "url": "https://github.com/junit-team/junit5", + "type": "vcs" + } + ] + }, + { + "name": "junit-platform-engine", + "purl": "pkg:maven/org.junit.platform/junit-platform-engine@1.9.1?type=jar", + "type": "library", + "group": "org.junit.platform", + "bom-ref": "pkg:maven/org.junit.platform/junit-platform-engine@1.9.1?type=jar", + "version": "1.9.1", + "licenses": [ + { + "license": { + "id": "EPL-2.0" + } + } + ], + "publisher": "central", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Module \"junit-platform-engine\" of JUnit 5.", + "externalReferences": [ + { + "url": "https://junit.org/junit5/", + "type": "website" + }, + { + "url": "https://github.com/junit-team/junit5", + "type": "vcs" + } + ] + }, + { + "name": "junit-jupiter-params", + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter-params@5.9.1?type=jar", + "type": "library", + "group": "org.junit.jupiter", + "bom-ref": "pkg:maven/org.junit.jupiter/junit-jupiter-params@5.9.1?type=jar", + "version": "5.9.1", + "licenses": [ + { + "license": { + "id": "EPL-2.0" + } + } + ], + "publisher": "central", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Module \"junit-jupiter-params\" of JUnit 5.", + "externalReferences": [ + { + "url": "https://junit.org/junit5/", + "type": "website" + }, + { + "url": "https://github.com/junit-team/junit5", + "type": "vcs" + } + ] + }, + { + "name": "junit-platform-launcher", + "purl": "pkg:maven/org.junit.platform/junit-platform-launcher@1.9.1?type=jar", + "type": "library", + "group": "org.junit.platform", + "bom-ref": "pkg:maven/org.junit.platform/junit-platform-launcher@1.9.1?type=jar", + "version": "1.9.1", + "licenses": [ + { + "license": { + "id": "EPL-2.0" + } + } + ], + "publisher": "central", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Module \"junit-platform-launcher\" of JUnit 5.", + "externalReferences": [ + { + "url": "https://junit.org/junit5/", + "type": "website" + }, + { + "url": "https://github.com/junit-team/junit5", + "type": "vcs" + } + ] + }, + { + "name": "asm-commons", + "purl": "pkg:maven/org.ow2.asm/asm-commons@9.3.0.redhat-00001?type=jar", + "type": "library", + "group": "org.ow2.asm", + "bom-ref": "pkg:maven/org.ow2.asm/asm-commons@9.3.0.redhat-00001?type=jar", + "version": "9.3.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "url": "https://opensource.org/licenses/BSD-3-Clause" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "cd132798a8eb4be3b884726df4e6a680ed5a9e96", + "url": "https://code.engineering.redhat.com/gerrit/asm.git#9.3.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Usefull class adapters based on ASM, a very small and fast Java bytecode manipulation framework", + "externalReferences": [ + { + "url": "http://asm.ow2.io/", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://gitlab.ow2.org/asm/asm/issues", + "type": "issue-tracker" + }, + { + "url": "https://mail.ow2.org/wws/arc/asm/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/asm.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/ASOPXMJRNVAAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.0-gradle6.8.3-kotlin1.4.32:1.0.6", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-arc-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-smallrye-context-propagation-spi", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-context-propagation-spi@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-smallrye-context-propagation-spi@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-vertx-http-dev-console-spi", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http-dev-console-spi@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-vertx-http-dev-console-spi@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-vertx-http-dev-console-runtime-spi", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http-dev-console-runtime-spi@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-vertx-http-dev-console-runtime-spi@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "vertx-web", + "purl": "pkg:maven/io.vertx/vertx-web@4.3.4.redhat-00008?type=jar", + "type": "library", + "group": "io.vertx", + "bom-ref": "pkg:maven/io.vertx/vertx-web@4.3.4.redhat-00008?type=jar", + "version": "4.3.4.redhat-00008", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + }, + { + "license": { + "id": "EPL-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "08d85a10f9bb1681f542692bf3c66b66deb069e7", + "url": "https://code.engineering.redhat.com/gerrit/vert-x3/vertx-web.git#vertx-4.3.4.GA-1" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Sonatype helps open source projects to set up Maven repositories on https://oss.sonatype.org/", + "externalReferences": [ + { + "url": "http://nexus.sonatype.org/oss-repository-hosting.html/vertx-parent/vertx-ext/vertx-ext-parent/vertx-web-parent/vertx-web", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/vert-x3/vertx-web.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AZB7PSY53RQBW", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "vertx-auth-common", + "purl": "pkg:maven/io.vertx/vertx-auth-common@4.3.4.redhat-00008?type=jar", + "type": "library", + "group": "io.vertx", + "bom-ref": "pkg:maven/io.vertx/vertx-auth-common@4.3.4.redhat-00008?type=jar", + "version": "4.3.4.redhat-00008", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + }, + { + "license": { + "id": "EPL-1.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "589f0d4b30490077a4cfbbf79f9dcd1e16e28f61", + "url": "https://code.engineering.redhat.com/gerrit/vert-x3/vertx-auth.git#vertx-4.3.4.GA-1" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Sonatype helps open source projects to set up Maven repositories on https://oss.sonatype.org/", + "externalReferences": [ + { + "url": "http://nexus.sonatype.org/oss-repository-hosting.html/vertx-parent/vertx-ext/vertx-ext-parent/vertx-auth/vertx-auth-common", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/vert-x3/vertx-auth.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AZB7PSY53RQAO", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "vertx-core", + "purl": "pkg:maven/io.vertx/vertx-core@4.3.4.redhat-00008?type=jar", + "type": "library", + "group": "io.vertx", + "bom-ref": "pkg:maven/io.vertx/vertx-core@4.3.4.redhat-00008?type=jar", + "version": "4.3.4.redhat-00008", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + }, + { + "license": { + "id": "EPL-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "857cbc1fe49f191d749bd88d9955b41bc170a80d", + "url": "https://code.engineering.redhat.com/gerrit/eclipse/vert.x.git#vertx-4.3.4.GA-1" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Sonatype helps open source projects to set up Maven repositories on https://oss.sonatype.org/", + "externalReferences": [ + { + "url": "http://nexus.sonatype.org/oss-repository-hosting.html/vertx-parent/vertx-core", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/eclipse/vert.x.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AZB7PSY53RQBE", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "jackson-core", + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.13.4.redhat-00004?type=jar", + "type": "library", + "group": "com.fasterxml.jackson.core", + "bom-ref": "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.13.4.redhat-00004?type=jar", + "version": "2.13.4.redhat-00004", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "238ed4be75d1d2df203461059373bc04dcd6fd47", + "url": "https://code.engineering.redhat.com/gerrit/FasterXML/jackson-core.git#2.13.4.redhat-00004" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Core Jackson processing abstractions (aka Streaming API), implementation for JSON", + "externalReferences": [ + { + "url": "https://github.com/FasterXML/jackson-core", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/FasterXML/jackson-core/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/FasterXML/jackson-core.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AVFSODCF7CABE", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "netty-buffer", + "purl": "pkg:maven/io.netty/netty-buffer@4.1.100.Final-redhat-00001?type=jar", + "type": "library", + "group": "io.netty", + "bom-ref": "pkg:maven/io.netty/netty-buffer@4.1.100.Final-redhat-00001?type=jar", + "version": "4.1.100.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "0ff281ddc94bdea956407aa94ddda3eefe1e9201", + "url": "https://code.engineering.redhat.com/gerrit/netty/netty.git#4.1.100.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Netty is an asynchronous event-driven network application framework for rapid development of maintainable high performance protocol servers and clients.", + "externalReferences": [ + { + "url": "https://netty.io/netty-buffer/", + "type": "website" + }, + { + "url": "https://issues.jboss.org/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/netty/netty.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A3X7AQ2N2MYAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-oraclejdk8u192-mvn3.6.3-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "netty-common", + "purl": "pkg:maven/io.netty/netty-common@4.1.100.Final-redhat-00001?type=jar", + "type": "library", + "group": "io.netty", + "bom-ref": "pkg:maven/io.netty/netty-common@4.1.100.Final-redhat-00001?type=jar", + "version": "4.1.100.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "0ff281ddc94bdea956407aa94ddda3eefe1e9201", + "url": "https://code.engineering.redhat.com/gerrit/netty/netty.git#4.1.100.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Netty is an asynchronous event-driven network application framework for rapid development of maintainable high performance protocol servers and clients.", + "externalReferences": [ + { + "url": "https://netty.io/netty-common/", + "type": "website" + }, + { + "url": "https://issues.jboss.org/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/netty/netty.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A3X7AQ2N2MYAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-oraclejdk8u192-mvn3.6.3-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "netty-codec-http", + "purl": "pkg:maven/io.netty/netty-codec-http@4.1.100.Final-redhat-00001?type=jar", + "type": "library", + "group": "io.netty", + "bom-ref": "pkg:maven/io.netty/netty-codec-http@4.1.100.Final-redhat-00001?type=jar", + "version": "4.1.100.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "0ff281ddc94bdea956407aa94ddda3eefe1e9201", + "url": "https://code.engineering.redhat.com/gerrit/netty/netty.git#4.1.100.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Netty is an asynchronous event-driven network application framework for rapid development of maintainable high performance protocol servers and clients.", + "externalReferences": [ + { + "url": "https://netty.io/netty-codec-http/", + "type": "website" + }, + { + "url": "https://issues.jboss.org/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/netty/netty.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A3X7AQ2N2MYAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-oraclejdk8u192-mvn3.6.3-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "netty-codec", + "purl": "pkg:maven/io.netty/netty-codec@4.1.100.Final-redhat-00001?type=jar", + "type": "library", + "group": "io.netty", + "bom-ref": "pkg:maven/io.netty/netty-codec@4.1.100.Final-redhat-00001?type=jar", + "version": "4.1.100.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "0ff281ddc94bdea956407aa94ddda3eefe1e9201", + "url": "https://code.engineering.redhat.com/gerrit/netty/netty.git#4.1.100.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Netty is an asynchronous event-driven network application framework for rapid development of maintainable high performance protocol servers and clients.", + "externalReferences": [ + { + "url": "https://netty.io/netty-codec/", + "type": "website" + }, + { + "url": "https://issues.jboss.org/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/netty/netty.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A3X7AQ2N2MYAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-oraclejdk8u192-mvn3.6.3-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "netty-transport", + "purl": "pkg:maven/io.netty/netty-transport@4.1.100.Final-redhat-00001?type=jar", + "type": "library", + "group": "io.netty", + "bom-ref": "pkg:maven/io.netty/netty-transport@4.1.100.Final-redhat-00001?type=jar", + "version": "4.1.100.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "0ff281ddc94bdea956407aa94ddda3eefe1e9201", + "url": "https://code.engineering.redhat.com/gerrit/netty/netty.git#4.1.100.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Netty is an asynchronous event-driven network application framework for rapid development of maintainable high performance protocol servers and clients.", + "externalReferences": [ + { + "url": "https://netty.io/netty-transport/", + "type": "website" + }, + { + "url": "https://issues.jboss.org/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/netty/netty.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A3X7AQ2N2MYAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-oraclejdk8u192-mvn3.6.3-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "netty-resolver", + "purl": "pkg:maven/io.netty/netty-resolver@4.1.100.Final-redhat-00001?type=jar", + "type": "library", + "group": "io.netty", + "bom-ref": "pkg:maven/io.netty/netty-resolver@4.1.100.Final-redhat-00001?type=jar", + "version": "4.1.100.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "0ff281ddc94bdea956407aa94ddda3eefe1e9201", + "url": "https://code.engineering.redhat.com/gerrit/netty/netty.git#4.1.100.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Netty is an asynchronous event-driven network application framework for rapid development of maintainable high performance protocol servers and clients.", + "externalReferences": [ + { + "url": "https://netty.io/netty-resolver/", + "type": "website" + }, + { + "url": "https://issues.jboss.org/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/netty/netty.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A3X7AQ2N2MYAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-oraclejdk8u192-mvn3.6.3-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "netty-handler", + "purl": "pkg:maven/io.netty/netty-handler@4.1.100.Final-redhat-00001?type=jar", + "type": "library", + "group": "io.netty", + "bom-ref": "pkg:maven/io.netty/netty-handler@4.1.100.Final-redhat-00001?type=jar", + "version": "4.1.100.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "0ff281ddc94bdea956407aa94ddda3eefe1e9201", + "url": "https://code.engineering.redhat.com/gerrit/netty/netty.git#4.1.100.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Netty is an asynchronous event-driven network application framework for rapid development of maintainable high performance protocol servers and clients.", + "externalReferences": [ + { + "url": "https://netty.io/netty-handler/", + "type": "website" + }, + { + "url": "https://issues.jboss.org/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/netty/netty.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A3X7AQ2N2MYAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-oraclejdk8u192-mvn3.6.3-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "netty-transport-native-unix-common", + "purl": "pkg:maven/io.netty/netty-transport-native-unix-common@4.1.100.Final-redhat-00001?type=jar", + "type": "library", + "group": "io.netty", + "bom-ref": "pkg:maven/io.netty/netty-transport-native-unix-common@4.1.100.Final-redhat-00001?type=jar", + "version": "4.1.100.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "0ff281ddc94bdea956407aa94ddda3eefe1e9201", + "url": "https://code.engineering.redhat.com/gerrit/netty/netty.git#4.1.100.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Static library which contains common unix utilities.", + "externalReferences": [ + { + "url": "https://netty.io/netty-transport-native-unix-common/", + "type": "website" + }, + { + "url": "https://issues.jboss.org/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/netty/netty.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A3X7AQ2N2MYAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-oraclejdk8u192-mvn3.6.3-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "netty-codec-http2", + "purl": "pkg:maven/io.netty/netty-codec-http2@4.1.100.Final-redhat-00001?type=jar", + "type": "library", + "group": "io.netty", + "bom-ref": "pkg:maven/io.netty/netty-codec-http2@4.1.100.Final-redhat-00001?type=jar", + "version": "4.1.100.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "0ff281ddc94bdea956407aa94ddda3eefe1e9201", + "url": "https://code.engineering.redhat.com/gerrit/netty/netty.git#4.1.100.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Netty is an asynchronous event-driven network application framework for rapid development of maintainable high performance protocol servers and clients.", + "externalReferences": [ + { + "url": "https://netty.io/netty-codec-http2/", + "type": "website" + }, + { + "url": "https://issues.jboss.org/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/netty/netty.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A3X7AQ2N2MYAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-oraclejdk8u192-mvn3.6.3-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "netty-handler-proxy", + "purl": "pkg:maven/io.netty/netty-handler-proxy@4.1.100.Final-redhat-00001?type=jar", + "type": "library", + "group": "io.netty", + "bom-ref": "pkg:maven/io.netty/netty-handler-proxy@4.1.100.Final-redhat-00001?type=jar", + "version": "4.1.100.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "0ff281ddc94bdea956407aa94ddda3eefe1e9201", + "url": "https://code.engineering.redhat.com/gerrit/netty/netty.git#4.1.100.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Netty is an asynchronous event-driven network application framework for rapid development of maintainable high performance protocol servers and clients.", + "externalReferences": [ + { + "url": "https://netty.io/netty-handler-proxy/", + "type": "website" + }, + { + "url": "https://issues.jboss.org/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/netty/netty.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A3X7AQ2N2MYAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-oraclejdk8u192-mvn3.6.3-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "netty-codec-socks", + "purl": "pkg:maven/io.netty/netty-codec-socks@4.1.100.Final-redhat-00001?type=jar", + "type": "library", + "group": "io.netty", + "bom-ref": "pkg:maven/io.netty/netty-codec-socks@4.1.100.Final-redhat-00001?type=jar", + "version": "4.1.100.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "0ff281ddc94bdea956407aa94ddda3eefe1e9201", + "url": "https://code.engineering.redhat.com/gerrit/netty/netty.git#4.1.100.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Netty is an asynchronous event-driven network application framework for rapid development of maintainable high performance protocol servers and clients.", + "externalReferences": [ + { + "url": "https://netty.io/netty-codec-socks/", + "type": "website" + }, + { + "url": "https://issues.jboss.org/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/netty/netty.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A3X7AQ2N2MYAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-oraclejdk8u192-mvn3.6.3-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "netty-resolver-dns", + "purl": "pkg:maven/io.netty/netty-resolver-dns@4.1.100.Final-redhat-00001?type=jar", + "type": "library", + "group": "io.netty", + "bom-ref": "pkg:maven/io.netty/netty-resolver-dns@4.1.100.Final-redhat-00001?type=jar", + "version": "4.1.100.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "0ff281ddc94bdea956407aa94ddda3eefe1e9201", + "url": "https://code.engineering.redhat.com/gerrit/netty/netty.git#4.1.100.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Netty is an asynchronous event-driven network application framework for rapid development of maintainable high performance protocol servers and clients.", + "externalReferences": [ + { + "url": "https://netty.io/netty-resolver-dns/", + "type": "website" + }, + { + "url": "https://issues.jboss.org/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/netty/netty.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A3X7AQ2N2MYAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-oraclejdk8u192-mvn3.6.3-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "netty-codec-dns", + "purl": "pkg:maven/io.netty/netty-codec-dns@4.1.100.Final-redhat-00001?type=jar", + "type": "library", + "group": "io.netty", + "bom-ref": "pkg:maven/io.netty/netty-codec-dns@4.1.100.Final-redhat-00001?type=jar", + "version": "4.1.100.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "0ff281ddc94bdea956407aa94ddda3eefe1e9201", + "url": "https://code.engineering.redhat.com/gerrit/netty/netty.git#4.1.100.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Netty is an asynchronous event-driven network application framework for rapid development of maintainable high performance protocol servers and clients.", + "externalReferences": [ + { + "url": "https://netty.io/netty-codec-dns/", + "type": "website" + }, + { + "url": "https://issues.jboss.org/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/netty/netty.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A3X7AQ2N2MYAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-oraclejdk8u192-mvn3.6.3-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "vertx-bridge-common", + "purl": "pkg:maven/io.vertx/vertx-bridge-common@4.3.4.redhat-00008?type=jar", + "type": "library", + "group": "io.vertx", + "bom-ref": "pkg:maven/io.vertx/vertx-bridge-common@4.3.4.redhat-00008?type=jar", + "version": "4.3.4.redhat-00008", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + }, + { + "license": { + "id": "EPL-1.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "989b6b5a1d210402674bb372747b96e716701e0a", + "url": "https://code.engineering.redhat.com/gerrit/vert-x3/vertx-bridge-common.git#vertx-4.3.4.GA-1" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Vert.x 3 eventbus bridge common configuration", + "externalReferences": [ + { + "url": "http://nexus.sonatype.org/oss-repository-hosting.html/vertx-parent/vertx-ext/vertx-ext-parent/vertx-bridge-common", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/vert-x3/vertx-bridge-common.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AZB7PSY53RQAE", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "vertx-web-common", + "purl": "pkg:maven/io.vertx/vertx-web-common@4.3.4.redhat-00008?type=jar", + "type": "library", + "group": "io.vertx", + "bom-ref": "pkg:maven/io.vertx/vertx-web-common@4.3.4.redhat-00008?type=jar", + "version": "4.3.4.redhat-00008", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + }, + { + "license": { + "id": "EPL-1.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "08d85a10f9bb1681f542692bf3c66b66deb069e7", + "url": "https://code.engineering.redhat.com/gerrit/vert-x3/vertx-web.git#vertx-4.3.4.GA-1" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Sonatype helps open source projects to set up Maven repositories on https://oss.sonatype.org/", + "externalReferences": [ + { + "url": "http://nexus.sonatype.org/oss-repository-hosting.html/vertx-parent/vertx-ext/vertx-ext-parent/vertx-web-parent/vertx-web-common", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/vert-x3/vertx-web.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AZB7PSY53RQBW", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "arc-processor", + "purl": "pkg:maven/io.quarkus.arc/arc-processor@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus.arc", + "bom-ref": "pkg:maven/io.quarkus.arc/arc-processor@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Provides, via submodules, a base configuration for JBoss project builds, as well as a derived configuration supporting multi-release JARs", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.redhat.com/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-credentials-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-credentials-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-credentials-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-datasource-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-datasource-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-datasource-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-datasource-deployment-spi", + "purl": "pkg:maven/io.quarkus/quarkus-datasource-deployment-spi@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-datasource-deployment-spi@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-devservices-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-devservices-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "DevServices allows Quarkus to automatically configure and start databases and other containers in dev and test mode.", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-devservices-common", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-common@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-devservices-common@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "DevServices allows Quarkus to automatically configure and start databases and other containers in dev and test mode.", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "docker-java-api", + "purl": "pkg:maven/com.github.docker-java/docker-java-api@3.2.13?type=jar", + "type": "library", + "group": "com.github.docker-java", + "bom-ref": "pkg:maven/com.github.docker-java/docker-java-api@3.2.13?type=jar", + "version": "3.2.13", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "central", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Java API Client for Docker", + "externalReferences": [ + { + "url": "https://github.com/docker-java/docker-java", + "type": "website" + }, + { + "url": "https://github.com/docker-java/docker-java", + "type": "vcs" + } + ] + }, + { + "name": "jackson-annotations", + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4.redhat-00004?type=jar", + "type": "library", + "group": "com.fasterxml.jackson.core", + "bom-ref": "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4.redhat-00004?type=jar", + "version": "2.13.4.redhat-00004", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "ae81cc749acadaf0aa9ad76eda490bf95ee136f3", + "url": "https://code.engineering.redhat.com/gerrit/FasterXML/jackson-annotations.git#2.13.4.redhat-00004" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Core annotations used for value types, used by Jackson data binding package.", + "externalReferences": [ + { + "url": "http://github.com/FasterXML/jackson", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/FasterXML/jackson-annotations/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/FasterXML/jackson-annotations.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AVFSODCGHCAAC", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-junit4-mock", + "purl": "pkg:maven/io.quarkus/quarkus-junit4-mock@2.13.9.Final?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-junit4-mock@2.13.9.Final?type=jar", + "version": "2.13.9.Final", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "JBoss by Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Module with some empty JUnit4 classes to allow Testcontainers to run without needing to include JUnit4 on the class path", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://github.com/quarkusio/quarkus", + "type": "vcs" + } + ] + }, + { + "name": "testcontainers", + "purl": "pkg:maven/org.testcontainers/testcontainers@1.17.3?type=jar", + "type": "library", + "group": "org.testcontainers", + "bom-ref": "pkg:maven/org.testcontainers/testcontainers@1.17.3?type=jar", + "version": "1.17.3", + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "publisher": "central", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Isolated container management for Java code testing", + "externalReferences": [ + { + "url": "https://testcontainers.org", + "type": "website" + }, + { + "url": "https://github.com/testcontainers/testcontainers-java/issues", + "type": "issue-tracker" + }, + { + "url": "https://github.com/testcontainers/testcontainers-java", + "type": "vcs" + } + ] + }, + { + "name": "docker-java-transport-zerodep", + "purl": "pkg:maven/com.github.docker-java/docker-java-transport-zerodep@3.2.13?type=jar", + "type": "library", + "group": "com.github.docker-java", + "bom-ref": "pkg:maven/com.github.docker-java/docker-java-transport-zerodep@3.2.13?type=jar", + "version": "3.2.13", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "central", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Java API Client for Docker", + "externalReferences": [ + { + "url": "https://github.com/docker-java/docker-java", + "type": "website" + }, + { + "url": "https://github.com/docker-java/docker-java", + "type": "vcs" + } + ] + }, + { + "name": "docker-java-transport", + "purl": "pkg:maven/com.github.docker-java/docker-java-transport@3.2.13?type=jar", + "type": "library", + "group": "com.github.docker-java", + "bom-ref": "pkg:maven/com.github.docker-java/docker-java-transport@3.2.13?type=jar", + "version": "3.2.13", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "central", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Java API Client for Docker", + "externalReferences": [ + { + "url": "https://github.com/docker-java/docker-java", + "type": "website" + }, + { + "url": "https://github.com/docker-java/docker-java", + "type": "vcs" + } + ] + }, + { + "name": "jna", + "purl": "pkg:maven/net.java.dev.jna/jna@5.8.0?type=jar", + "type": "library", + "group": "net.java.dev.jna", + "bom-ref": "pkg:maven/net.java.dev.jna/jna@5.8.0?type=jar", + "version": "5.8.0", + "licenses": [ + { + "license": { + "url": "http://www.gnu.org/licenses/licenses.html", + "name": "LGPL, version 2.1" + } + }, + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "central", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Java Native Access", + "externalReferences": [ + { + "url": "https://github.com/java-native-access/jna", + "type": "website" + }, + { + "url": "https://github.com/java-native-access/jna", + "type": "vcs" + } + ] + }, + { + "name": "commons-compress", + "purl": "pkg:maven/org.apache.commons/commons-compress@1.26.1.redhat-00001?type=jar", + "type": "library", + "group": "org.apache.commons", + "bom-ref": "pkg:maven/org.apache.commons/commons-compress@1.26.1.redhat-00001?type=jar", + "version": "1.26.1.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b2b6ad437275c6cfb659d5f52474d83744d875e6", + "url": "https://code.engineering.redhat.com/gerrit/apache/commons-compress.git#1.26.1.redhat-00001" + }, + { + "uid": "81ac94151eedc61c2131239362a051e30c5e9e59", + "url": "https://github.com/apache/commons-compress.git#rel/commons-compress-1.26.1" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Apache Commons Compress defines an API for working with compression and archive formats. These include bzip2, gzip, pack200, LZMA, XZ, Snappy, traditional Unix Compress, DEFLATE, DEFLATE64, LZ4, Brotli, Zstandard and ar, cpio, jar, tar, zip, dump, 7z, arj.", + "externalReferences": [ + { + "url": "https://commons.apache.org/proper/commons-compress/", + "type": "website" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A67W3W3DKDYAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.apache.org/jira/browse/COMPRESS", + "type": "issue-tracker" + }, + { + "url": "https://mail-archives.apache.org/mod_mbox/commons-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/apache/commons-compress.git", + "type": "vcs" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.6", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "commons-codec", + "purl": "pkg:maven/commons-codec/commons-codec@1.15.0.redhat-00014?type=jar", + "type": "library", + "group": "commons-codec", + "bom-ref": "pkg:maven/commons-codec/commons-codec@1.15.0.redhat-00014?type=jar", + "version": "1.15.0.redhat-00014", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "287193c7c58889ad8bd37d895766669d78162f20", + "url": "https://code.engineering.redhat.com/gerrit/apache/commons-codec.git#1.15.0.redhat-00014" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The Apache Commons Codec package contains simple encoder and decoders for various formats such as Base64 and Hexadecimal. In addition to these widely used encoders and decoders, the codec package also maintains a collection of phonetic encoding utilities.", + "externalReferences": [ + { + "url": "https://commons.apache.org/proper/commons-codec/", + "type": "website" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A3WZTPVFKMYAM", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.apache.org/jira/browse/CODEC", + "type": "issue-tracker" + }, + { + "url": "https://mail-archives.apache.org/mod_mbox/commons-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/apache/commons-codec.git", + "type": "vcs" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.6", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "commons-io", + "purl": "pkg:maven/commons-io/commons-io@2.15.1.redhat-00001?type=jar", + "type": "library", + "group": "commons-io", + "bom-ref": "pkg:maven/commons-io/commons-io@2.15.1.redhat-00001?type=jar", + "version": "2.15.1.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "1f3fbfb398b813b9b32abe6ae665b35839a3904c", + "url": "https://code.engineering.redhat.com/gerrit/apache/commons-io.git#2.15.1.redhat-00001" + }, + { + "uid": "dc51644d5adbb0c461efb58380ec51fbca10005d", + "url": "https://github.com/apache/commons-io.git#rel/commons-io-2.15.1" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The Apache Commons IO library contains utility classes, stream implementations, file filters, file comparators, endian transformation classes, and much more.", + "externalReferences": [ + { + "url": "https://commons.apache.org/proper/commons-io/", + "type": "website" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A7MFDY46BTYAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.apache.org/jira/browse/IO", + "type": "issue-tracker" + }, + { + "url": "https://mail-archives.apache.org/mod_mbox/commons-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/apache/commons-io.git", + "type": "vcs" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.7", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "duct-tape", + "purl": "pkg:maven/org.rnorth.duct-tape/duct-tape@1.0.8?type=jar", + "type": "library", + "group": "org.rnorth.duct-tape", + "bom-ref": "pkg:maven/org.rnorth.duct-tape/duct-tape@1.0.8?type=jar", + "version": "1.0.8", + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "publisher": "central", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "General purpose resilience utilities for Java 8 (circuit breakers, timeouts, rate limiters, and handlers for unreliable or inconsistent results)", + "externalReferences": [ + { + "url": "https://github.com/rnorth/duct-tape", + "type": "website" + }, + { + "url": "https://api.bintray.com/maven/richnorth/maven/duct-tape", + "type": "distribution" + } + ] + }, + { + "name": "annotations", + "purl": "pkg:maven/org.jetbrains/annotations@17.0.0?type=jar", + "type": "library", + "group": "org.jetbrains", + "bom-ref": "pkg:maven/org.jetbrains/annotations@17.0.0?type=jar", + "version": "17.0.0", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "central", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "A set of annotations used for code inspection support and code documentation.", + "externalReferences": [ + { + "url": "https://github.com/JetBrains/java-annotations", + "type": "website" + }, + { + "url": "https://github.com/JetBrains/java-annotations", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-kubernetes-service-binding-spi", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-service-binding-spi@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-kubernetes-service-binding-spi@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Extensions that provide Kubernetes Service Binding features should include this module and the corresponding BuildItems", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-narayana-jta-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-narayana-jta-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-narayana-jta-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-mutiny-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-mutiny-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-mutiny-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-smallrye-context-propagation-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-context-propagation-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-smallrye-context-propagation-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-smallrye-health-spi", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-health-spi@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-smallrye-health-spi@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-avro", + "purl": "pkg:maven/io.quarkus/quarkus-avro@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-avro@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Provide support for the Avro data serialization system", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "avro", + "purl": "pkg:maven/org.apache.avro/avro@1.11.3.redhat-00002?type=jar", + "type": "library", + "group": "org.apache.avro", + "bom-ref": "pkg:maven/org.apache.avro/avro@1.11.3.redhat-00002?type=jar", + "version": "1.11.3.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "d378bb6907c8251e1befee125632e3f74aa02560", + "url": "https://code.engineering.redhat.com/gerrit/avro.git#1.11.3.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Avro core components", + "externalReferences": [ + { + "url": "https://avro.apache.org", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.apache.org/jira/browse/AVRO", + "type": "issue-tracker" + }, + { + "url": "https://mail-archives.apache.org/mod_mbox/avro-dev/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/avro.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A4A7EXNFIZQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3-gradle7.1.1:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "jackson-databind", + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2-redhat-00001?type=jar", + "type": "library", + "group": "com.fasterxml.jackson.core", + "bom-ref": "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2-redhat-00001?type=jar", + "version": "2.13.4.2-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "e89a6d2e0f6ddbaf0fa461b74dfba55193ecbdfb", + "url": "https://code.engineering.redhat.com/gerrit/FasterXML/jackson-databind.git#2.13.4.2-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "General data-binding functionality for Jackson: works on core streaming API", + "externalReferences": [ + { + "url": "http://github.com/FasterXML/jackson", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/FasterXML/jackson-databind/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/FasterXML/jackson-databind.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUTW6XTITVQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.5", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-avro-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-avro-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-avro-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-jackson-spi", + "purl": "pkg:maven/io.quarkus/quarkus-jackson-spi@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-jackson-spi@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Artifact that provides BuildItems specific to Jackson", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "avro-compiler", + "purl": "pkg:maven/org.apache.avro/avro-compiler@1.11.3.redhat-00002?type=jar", + "type": "library", + "group": "org.apache.avro", + "bom-ref": "pkg:maven/org.apache.avro/avro-compiler@1.11.3.redhat-00002?type=jar", + "version": "1.11.3.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "d378bb6907c8251e1befee125632e3f74aa02560", + "url": "https://code.engineering.redhat.com/gerrit/avro.git#1.11.3.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Compilers for Avro IDL and Avro Specific Java API", + "externalReferences": [ + { + "url": "https://avro.apache.org", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.apache.org/jira/browse/AVRO", + "type": "issue-tracker" + }, + { + "url": "https://mail-archives.apache.org/mod_mbox/avro-dev/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/avro.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A4A7EXNFIZQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3-gradle7.1.1:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "commons-text", + "purl": "pkg:maven/org.apache.commons/commons-text@1.10.0.redhat-00002?type=jar", + "type": "library", + "group": "org.apache.commons", + "bom-ref": "pkg:maven/org.apache.commons/commons-text@1.10.0.redhat-00002?type=jar", + "version": "1.10.0.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "ed01c15ca8071c3eb3c8589a335bd32fe92d7b6b", + "url": "https://code.engineering.redhat.com/gerrit/apache/commons-text.git#1.10.0.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Apache Commons Text is a library focused on algorithms working on strings.", + "externalReferences": [ + { + "url": "https://commons.apache.org/proper/commons-text", + "type": "website" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A3OLU6GTCMYAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.apache.org/jira/browse/TEXT", + "type": "issue-tracker" + }, + { + "url": "https://mail-archives.apache.org/mod_mbox/commons-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/apache/commons-text.git", + "type": "vcs" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.5.4-golang:1.0.5", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "velocity-engine-core", + "purl": "pkg:maven/org.apache.velocity/velocity-engine-core@2.3.0.redhat-00008?type=jar", + "type": "library", + "group": "org.apache.velocity", + "bom-ref": "pkg:maven/org.apache.velocity/velocity-engine-core@2.3.0.redhat-00008?type=jar", + "version": "2.3.0.redhat-00008", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b2ed2776c42ccdb91796b676d122ef205b214394", + "url": "https://code.engineering.redhat.com/gerrit/apache/velocity.git#2.3.0.redhat-00008" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Apache Velocity is a general purpose template engine.", + "externalReferences": [ + { + "url": "http://velocity.apache.org/engine/devel/velocity-engine-core/", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.apache.org/jira/browse/VELOCITY", + "type": "issue-tracker" + }, + { + "url": "https://mail-archives.apache.org/mod_mbox/velocity-general/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/apache/velocity.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A4A656NRYZQAO", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.3.9:1.0.5", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-bom-quarkus-platform-descriptor", + "purl": "pkg:maven/io.quarkus/quarkus-bom-quarkus-platform-descriptor@2.13.9.Final-redhat-00003?classifier=2.13.9.Final-redhat-00003&type=json", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-bom-quarkus-platform-descriptor@2.13.9.Final-redhat-00003?classifier=2.13.9.Final-redhat-00003&type=json", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-bom-quarkus-platform-properties", + "purl": "pkg:maven/io.quarkus/quarkus-bom-quarkus-platform-properties@2.13.9.Final-redhat-00003?type=properties", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-bom-quarkus-platform-properties@2.13.9.Final-redhat-00003?type=properties", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-cache", + "purl": "pkg:maven/io.quarkus/quarkus-cache@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-cache@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Enable application data caching in CDI beans", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-caffeine", + "purl": "pkg:maven/io.quarkus/quarkus-caffeine@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-caffeine@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "A high performance caching library for Java 8+", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "caffeine", + "purl": "pkg:maven/com.github.ben-manes.caffeine/caffeine@2.9.3.redhat-00003?type=jar", + "type": "library", + "group": "com.github.ben-manes.caffeine", + "bom-ref": "pkg:maven/com.github.ben-manes.caffeine/caffeine@2.9.3.redhat-00003?type=jar", + "version": "2.9.3.redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "65135e3e5628d1e16953446cd831034d56a3602d", + "url": "https://code.engineering.redhat.com/gerrit/ben-manes/caffeine.git#2.9.3.redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "A high performance caching library", + "externalReferences": [ + { + "url": "https://github.com/ben-manes/caffeine", + "type": "website" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/ben-manes/caffeine.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AXZFIYU2IAICU", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.3.9-gradle6.8.3:1.0.7", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "error_prone_annotations", + "purl": "pkg:maven/com.google.errorprone/error_prone_annotations@2.15.0.redhat-00004?type=jar", + "type": "library", + "group": "com.google.errorprone", + "bom-ref": "pkg:maven/com.google.errorprone/error_prone_annotations@2.15.0.redhat-00004?type=jar", + "version": "2.15.0.redhat-00004", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "35d8fd7411cc69a0e49493699df6c63e9167c09f", + "url": "https://code.engineering.redhat.com/gerrit/error-prone.git#2.15.0.redhat-00004" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Error Prone is a static analysis tool for Java that catches common programming mistakes at compile-time.", + "externalReferences": [ + { + "url": "https://errorprone.info/error_prone_annotations", + "type": "website" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/error-prone.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AYPZPQLQDRQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11.0.16-8-mx-mvn3.6.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-cache-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-cache-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-cache-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-caffeine-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-caffeine-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-caffeine-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-config-yaml", + "purl": "pkg:maven/io.quarkus/quarkus-config-yaml@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-config-yaml@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Use YAML to configure your Quarkus application", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-config-source-yaml", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-source-yaml@2.12.3.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye.config", + "bom-ref": "pkg:maven/io.smallrye.config/smallrye-config-source-yaml@2.12.3.redhat-00001?type=jar", + "version": "2.12.3.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "4ba71fb2eb44e7bdac75a694d12f3c72a740ce27", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-config.git#2.12.3.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "SmallRye Parent POM", + "externalReferences": [ + { + "url": "http://smallrye.io/smallrye-config-source-yaml", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-config/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-config.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AWRFGUIPK3QAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.5", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "snakeyaml", + "purl": "pkg:maven/org.yaml/snakeyaml@1.33.0.redhat-00002?type=jar", + "type": "library", + "group": "org.yaml", + "bom-ref": "pkg:maven/org.yaml/snakeyaml@1.33.0.redhat-00002?type=jar", + "version": "1.33.0.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "4f7b47d77514d7607fd284c71aeed0f7bd95d4e5", + "url": "https://code.engineering.redhat.com/gerrit/asomov/snakeyaml.git#1.33.0.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "YAML 1.1 parser and emitter for Java", + "externalReferences": [ + { + "url": "https://bitbucket.org/snakeyaml/snakeyaml", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://bitbucket.org/snakeyaml/snakeyaml/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/asomov/snakeyaml.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AY2WCVNNLRQAI", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11.0.17-8-mx-mvn3.6.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-config-yaml-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-config-yaml-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-config-yaml-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-container-image-openshift", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-openshift@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-container-image-openshift@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build container images of your application using OpenShift", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-container-image", + "purl": "pkg:maven/io.quarkus/quarkus-container-image@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-container-image@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build container images of your application", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-kubernetes-client-internal", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client-internal@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-kubernetes-client-internal@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "This module only exists as a separate module to house the configuration that needs to be present on the runtime classpath when the kubernetes extension is used", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-container-image-openshift-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-openshift-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-container-image-openshift-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "openshift-annotations", + "purl": "pkg:maven/io.dekorate/openshift-annotations@2.11.3.redhat-00001?classifier=noapt&type=jar", + "type": "library", + "group": "io.dekorate", + "bom-ref": "pkg:maven/io.dekorate/openshift-annotations@2.11.3.redhat-00001?classifier=noapt&type=jar", + "version": "2.11.3.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "2a157f03f136f720e39864a28d6971d09a977f3a", + "url": "https://code.engineering.redhat.com/gerrit/dekorateio/dekorate.git#2.11.3.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "A collection of annotations and processors for Kubernetes", + "externalReferences": [ + { + "url": "https://dekorate.io/annotations/openshift-annotations", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/dekorateio/dekorate.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUXIAZKQ3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.3.9:1.0.5", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "dekorate-core", + "purl": "pkg:maven/io.dekorate/dekorate-core@2.11.3.redhat-00001?type=jar", + "type": "library", + "group": "io.dekorate", + "bom-ref": "pkg:maven/io.dekorate/dekorate-core@2.11.3.redhat-00001?type=jar", + "version": "2.11.3.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "2a157f03f136f720e39864a28d6971d09a977f3a", + "url": "https://code.engineering.redhat.com/gerrit/dekorateio/dekorate.git#2.11.3.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "A collection of annotations and processors for Kubernetes", + "externalReferences": [ + { + "url": "https://dekorate.io/dekorate-core", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/dekorateio/dekorate.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUXIAZKQ3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.3.9:1.0.5", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "jackson-dataformat-properties", + "purl": "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-properties@2.13.4.redhat-00004?type=jar", + "type": "library", + "group": "com.fasterxml.jackson.dataformat", + "bom-ref": "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-properties@2.13.4.redhat-00004?type=jar", + "version": "2.13.4.redhat-00004", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "25619403702e362af57f2632e5c2a0f801a65915", + "url": "https://code.engineering.redhat.com/gerrit/FasterXML/jackson-dataformats-text.git#2.13.4.redhat-00004" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Support for reading and writing content of \"Java Properties\" style configuration files as if there was implied nesting structure (by default using dots as separators).", + "externalReferences": [ + { + "url": "http://github.com/FasterXML/jackson-dataformats-text", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/FasterXML/jackson-dataformats-text/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/FasterXML/jackson-dataformats-text.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AVFSODCF7CAA6", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "jackson-dataformat-yaml", + "purl": "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml@2.13.4.redhat-00004?type=jar", + "type": "library", + "group": "com.fasterxml.jackson.dataformat", + "bom-ref": "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml@2.13.4.redhat-00004?type=jar", + "version": "2.13.4.redhat-00004", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "25619403702e362af57f2632e5c2a0f801a65915", + "url": "https://code.engineering.redhat.com/gerrit/FasterXML/jackson-dataformats-text.git#2.13.4.redhat-00004" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Support for reading and writing YAML-encoded data via Jackson abstractions.", + "externalReferences": [ + { + "url": "https://github.com/FasterXML/jackson-dataformats-text", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/FasterXML/jackson-dataformats-text/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/FasterXML/jackson-dataformats-text.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AVFSODCF7CAA6", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "jackson-datatype-jsr310", + "purl": "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jsr310@2.13.4.redhat-00004?type=jar", + "type": "library", + "group": "com.fasterxml.jackson.datatype", + "bom-ref": "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jsr310@2.13.4.redhat-00004?type=jar", + "version": "2.13.4.redhat-00004", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "1ffa097e3a88ae0b17fa3461f86b7107c18b97ec", + "url": "https://code.engineering.redhat.com/gerrit/FasterXML/jackson-modules-java8.git#2.13.4.redhat-00004" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Add-on module to support JSR-310 (Java 8 Date & Time API) data types.", + "externalReferences": [ + { + "url": "https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/FasterXML/jackson-modules-java8/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/FasterXML/jackson-modules-java8.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AVFSODCF7CAA4", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "kubernetes-client", + "purl": "pkg:maven/io.fabric8/kubernetes-client@5.12.4.redhat-00002?type=jar", + "type": "library", + "group": "io.fabric8", + "bom-ref": "pkg:maven/io.fabric8/kubernetes-client@5.12.4.redhat-00002?type=jar", + "version": "5.12.4.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b41813009269dce0658cb78190586d0c0fa0a10e", + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git#5.12.4.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "url": "http://fabric8.io/kubernetes-client/", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU72KMSAO4QAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "generex", + "purl": "pkg:maven/com.github.mifmif/generex@1.0.2.redhat-00003?type=jar", + "type": "library", + "group": "com.github.mifmif", + "bom-ref": "pkg:maven/com.github.mifmif/generex@1.0.2.redhat-00003?type=jar", + "version": "1.0.2.redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "0b619689425cbce9d59220c25d6fa9ff2c033ed3", + "url": "https://code.engineering.redhat.com/gerrit/mifmif/Generex.git#1.0.2.redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Generex A Java Library for regex to Strings generation", + "externalReferences": [ + { + "url": "https://github.com/mifmif/Generex/tree/master", + "type": "website" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUZ57OQOTVQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/mifmif/Generex.git", + "type": "vcs" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.3.9:1.0.1", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "automaton", + "purl": "pkg:maven/dk.brics.automaton/automaton@1.11.8.redhat-1?type=jar", + "type": "library", + "group": "dk.brics.automaton", + "bom-ref": "pkg:maven/dk.brics.automaton/automaton@1.11.8.redhat-1?type=jar", + "version": "1.11.8.redhat-1", + "licenses": [ + { + "license": { + "id": "BSD-4-Clause" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "A DFA/NFA (finite-state automata) implementation with Unicode alphabet (UTF16) and support for the standard regular expression operations (concatenation, union, Kleene star) and a number of non-standard ones (intersection, complement, etc.)", + "externalReferences": [ + { + "url": "http://www.brics.dk/automaton/", + "type": "website" + }, + { + "url": "dk.brics.automaton:automaton", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + } + ] + }, + { + "name": "logging-interceptor", + "purl": "pkg:maven/com.squareup.okhttp3/logging-interceptor@3.14.9.redhat-00010?type=jar", + "type": "library", + "group": "com.squareup.okhttp3", + "bom-ref": "pkg:maven/com.squareup.okhttp3/logging-interceptor@3.14.9.redhat-00010?type=jar", + "version": "3.14.9.redhat-00010", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "8b4a8afd90f1329fe150a804217154b6f7b80dfd", + "url": "https://code.engineering.redhat.com/gerrit/square/okhttp.git#3.14.9.redhat-00010-8b4a8afd" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "An HTTP+HTTP/2 client for Android and Java applications", + "externalReferences": [ + { + "url": "https://github.com/square/okhttp/logging-interceptor", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/square/okhttp/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/square/okhttp.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A3GYDIL7SEQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.5", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "okhttp", + "purl": "pkg:maven/com.squareup.okhttp3/okhttp@3.14.9.redhat-00010?type=jar", + "type": "library", + "group": "com.squareup.okhttp3", + "bom-ref": "pkg:maven/com.squareup.okhttp3/okhttp@3.14.9.redhat-00010?type=jar", + "version": "3.14.9.redhat-00010", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "8b4a8afd90f1329fe150a804217154b6f7b80dfd", + "url": "https://code.engineering.redhat.com/gerrit/square/okhttp.git#3.14.9.redhat-00010-8b4a8afd" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "An HTTP+HTTP/2 client for Android and Java applications", + "externalReferences": [ + { + "url": "https://github.com/square/okhttp/okhttp", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/square/okhttp/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/square/okhttp.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A3GYDIL7SEQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.5", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "okio", + "purl": "pkg:maven/com.squareup.okio/okio@1.17.2.redhat-00004?type=jar", + "type": "library", + "group": "com.squareup.okio", + "bom-ref": "pkg:maven/com.squareup.okio/okio@1.17.2.redhat-00004?type=jar", + "version": "1.17.2.redhat-00004", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "9f0a2d8723a61d955b968a92f74ce3acfb7fb97c", + "url": "https://code.engineering.redhat.com/gerrit/okio.git#1.17.2.redhat-00004" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "A modern I/O API for Java", + "externalReferences": [ + { + "url": "https://github.com/square/okio/okio", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/square/okio/issues", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/okio.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A3FLVPQVSEQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.3.9:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "kubernetes-model-admissionregistration", + "purl": "pkg:maven/io.fabric8/kubernetes-model-admissionregistration@5.12.4.redhat-00002?type=jar", + "type": "library", + "group": "io.fabric8", + "bom-ref": "pkg:maven/io.fabric8/kubernetes-model-admissionregistration@5.12.4.redhat-00002?type=jar", + "version": "5.12.4.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b41813009269dce0658cb78190586d0c0fa0a10e", + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git#5.12.4.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "url": "http://fabric8.io/kubernetes-model-generator/kubernetes-model-admissionregistration/", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU72KMSAO4QAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "kubernetes-model-common", + "purl": "pkg:maven/io.fabric8/kubernetes-model-common@5.12.4.redhat-00002?type=jar", + "type": "library", + "group": "io.fabric8", + "bom-ref": "pkg:maven/io.fabric8/kubernetes-model-common@5.12.4.redhat-00002?type=jar", + "version": "5.12.4.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b41813009269dce0658cb78190586d0c0fa0a10e", + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git#5.12.4.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "url": "http://fabric8.io/kubernetes-model-generator/kubernetes-model-common/", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU72KMSAO4QAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "kubernetes-model-core", + "purl": "pkg:maven/io.fabric8/kubernetes-model-core@5.12.4.redhat-00002?type=jar", + "type": "library", + "group": "io.fabric8", + "bom-ref": "pkg:maven/io.fabric8/kubernetes-model-core@5.12.4.redhat-00002?type=jar", + "version": "5.12.4.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b41813009269dce0658cb78190586d0c0fa0a10e", + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git#5.12.4.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "url": "http://fabric8.io/kubernetes-model-generator/kubernetes-model-core/", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU72KMSAO4QAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "kubernetes-model-apiextensions", + "purl": "pkg:maven/io.fabric8/kubernetes-model-apiextensions@5.12.4.redhat-00002?type=jar", + "type": "library", + "group": "io.fabric8", + "bom-ref": "pkg:maven/io.fabric8/kubernetes-model-apiextensions@5.12.4.redhat-00002?type=jar", + "version": "5.12.4.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b41813009269dce0658cb78190586d0c0fa0a10e", + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git#5.12.4.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "url": "http://fabric8.io/kubernetes-model-generator/kubernetes-model-apiextensions/", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU72KMSAO4QAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "kubernetes-model-apps", + "purl": "pkg:maven/io.fabric8/kubernetes-model-apps@5.12.4.redhat-00002?type=jar", + "type": "library", + "group": "io.fabric8", + "bom-ref": "pkg:maven/io.fabric8/kubernetes-model-apps@5.12.4.redhat-00002?type=jar", + "version": "5.12.4.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b41813009269dce0658cb78190586d0c0fa0a10e", + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git#5.12.4.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "url": "http://fabric8.io/kubernetes-model-generator/kubernetes-model-apps/", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU72KMSAO4QAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "kubernetes-model-autoscaling", + "purl": "pkg:maven/io.fabric8/kubernetes-model-autoscaling@5.12.4.redhat-00002?type=jar", + "type": "library", + "group": "io.fabric8", + "bom-ref": "pkg:maven/io.fabric8/kubernetes-model-autoscaling@5.12.4.redhat-00002?type=jar", + "version": "5.12.4.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b41813009269dce0658cb78190586d0c0fa0a10e", + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git#5.12.4.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "url": "http://fabric8.io/kubernetes-model-generator/kubernetes-model-autoscaling/", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU72KMSAO4QAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "kubernetes-model-batch", + "purl": "pkg:maven/io.fabric8/kubernetes-model-batch@5.12.4.redhat-00002?type=jar", + "type": "library", + "group": "io.fabric8", + "bom-ref": "pkg:maven/io.fabric8/kubernetes-model-batch@5.12.4.redhat-00002?type=jar", + "version": "5.12.4.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b41813009269dce0658cb78190586d0c0fa0a10e", + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git#5.12.4.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "url": "http://fabric8.io/kubernetes-model-generator/kubernetes-model-batch/", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU72KMSAO4QAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "kubernetes-model-certificates", + "purl": "pkg:maven/io.fabric8/kubernetes-model-certificates@5.12.4.redhat-00002?type=jar", + "type": "library", + "group": "io.fabric8", + "bom-ref": "pkg:maven/io.fabric8/kubernetes-model-certificates@5.12.4.redhat-00002?type=jar", + "version": "5.12.4.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b41813009269dce0658cb78190586d0c0fa0a10e", + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git#5.12.4.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "url": "http://fabric8.io/kubernetes-model-generator/kubernetes-model-certificates/", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU72KMSAO4QAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "kubernetes-model-coordination", + "purl": "pkg:maven/io.fabric8/kubernetes-model-coordination@5.12.4.redhat-00002?type=jar", + "type": "library", + "group": "io.fabric8", + "bom-ref": "pkg:maven/io.fabric8/kubernetes-model-coordination@5.12.4.redhat-00002?type=jar", + "version": "5.12.4.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b41813009269dce0658cb78190586d0c0fa0a10e", + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git#5.12.4.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "url": "http://fabric8.io/kubernetes-model-generator/kubernetes-model-coordination/", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU72KMSAO4QAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "kubernetes-model-discovery", + "purl": "pkg:maven/io.fabric8/kubernetes-model-discovery@5.12.4.redhat-00002?type=jar", + "type": "library", + "group": "io.fabric8", + "bom-ref": "pkg:maven/io.fabric8/kubernetes-model-discovery@5.12.4.redhat-00002?type=jar", + "version": "5.12.4.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b41813009269dce0658cb78190586d0c0fa0a10e", + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git#5.12.4.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "url": "http://fabric8.io/kubernetes-model-generator/kubernetes-model-discovery/", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU72KMSAO4QAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "kubernetes-model-events", + "purl": "pkg:maven/io.fabric8/kubernetes-model-events@5.12.4.redhat-00002?type=jar", + "type": "library", + "group": "io.fabric8", + "bom-ref": "pkg:maven/io.fabric8/kubernetes-model-events@5.12.4.redhat-00002?type=jar", + "version": "5.12.4.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b41813009269dce0658cb78190586d0c0fa0a10e", + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git#5.12.4.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "url": "http://fabric8.io/kubernetes-model-generator/kubernetes-model-events/", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU72KMSAO4QAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "kubernetes-model-extensions", + "purl": "pkg:maven/io.fabric8/kubernetes-model-extensions@5.12.4.redhat-00002?type=jar", + "type": "library", + "group": "io.fabric8", + "bom-ref": "pkg:maven/io.fabric8/kubernetes-model-extensions@5.12.4.redhat-00002?type=jar", + "version": "5.12.4.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b41813009269dce0658cb78190586d0c0fa0a10e", + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git#5.12.4.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "url": "http://fabric8.io/kubernetes-model-generator/kubernetes-model-extensions/", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU72KMSAO4QAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "kubernetes-model-flowcontrol", + "purl": "pkg:maven/io.fabric8/kubernetes-model-flowcontrol@5.12.4.redhat-00002?type=jar", + "type": "library", + "group": "io.fabric8", + "bom-ref": "pkg:maven/io.fabric8/kubernetes-model-flowcontrol@5.12.4.redhat-00002?type=jar", + "version": "5.12.4.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b41813009269dce0658cb78190586d0c0fa0a10e", + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git#5.12.4.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "url": "http://fabric8.io/kubernetes-model-generator/kubernetes-model-flowcontrol/", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU72KMSAO4QAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "kubernetes-model-metrics", + "purl": "pkg:maven/io.fabric8/kubernetes-model-metrics@5.12.4.redhat-00002?type=jar", + "type": "library", + "group": "io.fabric8", + "bom-ref": "pkg:maven/io.fabric8/kubernetes-model-metrics@5.12.4.redhat-00002?type=jar", + "version": "5.12.4.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b41813009269dce0658cb78190586d0c0fa0a10e", + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git#5.12.4.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "url": "http://fabric8.io/kubernetes-model-generator/kubernetes-model-metrics/", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU72KMSAO4QAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "kubernetes-model-networking", + "purl": "pkg:maven/io.fabric8/kubernetes-model-networking@5.12.4.redhat-00002?type=jar", + "type": "library", + "group": "io.fabric8", + "bom-ref": "pkg:maven/io.fabric8/kubernetes-model-networking@5.12.4.redhat-00002?type=jar", + "version": "5.12.4.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b41813009269dce0658cb78190586d0c0fa0a10e", + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git#5.12.4.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "url": "http://fabric8.io/kubernetes-model-generator/kubernetes-model-networking/", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU72KMSAO4QAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "kubernetes-model-node", + "purl": "pkg:maven/io.fabric8/kubernetes-model-node@5.12.4.redhat-00002?type=jar", + "type": "library", + "group": "io.fabric8", + "bom-ref": "pkg:maven/io.fabric8/kubernetes-model-node@5.12.4.redhat-00002?type=jar", + "version": "5.12.4.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b41813009269dce0658cb78190586d0c0fa0a10e", + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git#5.12.4.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "url": "http://fabric8.io/kubernetes-model-generator/kubernetes-model-node/", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU72KMSAO4QAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "kubernetes-model-policy", + "purl": "pkg:maven/io.fabric8/kubernetes-model-policy@5.12.4.redhat-00002?type=jar", + "type": "library", + "group": "io.fabric8", + "bom-ref": "pkg:maven/io.fabric8/kubernetes-model-policy@5.12.4.redhat-00002?type=jar", + "version": "5.12.4.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b41813009269dce0658cb78190586d0c0fa0a10e", + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git#5.12.4.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "url": "http://fabric8.io/kubernetes-model-generator/kubernetes-model-policy/", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU72KMSAO4QAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "kubernetes-model-rbac", + "purl": "pkg:maven/io.fabric8/kubernetes-model-rbac@5.12.4.redhat-00002?type=jar", + "type": "library", + "group": "io.fabric8", + "bom-ref": "pkg:maven/io.fabric8/kubernetes-model-rbac@5.12.4.redhat-00002?type=jar", + "version": "5.12.4.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b41813009269dce0658cb78190586d0c0fa0a10e", + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git#5.12.4.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "url": "http://fabric8.io/kubernetes-model-generator/kubernetes-model-rbac/", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU72KMSAO4QAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "kubernetes-model-scheduling", + "purl": "pkg:maven/io.fabric8/kubernetes-model-scheduling@5.12.4.redhat-00002?type=jar", + "type": "library", + "group": "io.fabric8", + "bom-ref": "pkg:maven/io.fabric8/kubernetes-model-scheduling@5.12.4.redhat-00002?type=jar", + "version": "5.12.4.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b41813009269dce0658cb78190586d0c0fa0a10e", + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git#5.12.4.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "url": "http://fabric8.io/kubernetes-model-generator/kubernetes-model-scheduling/", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU72KMSAO4QAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "kubernetes-model-storageclass", + "purl": "pkg:maven/io.fabric8/kubernetes-model-storageclass@5.12.4.redhat-00002?type=jar", + "type": "library", + "group": "io.fabric8", + "bom-ref": "pkg:maven/io.fabric8/kubernetes-model-storageclass@5.12.4.redhat-00002?type=jar", + "version": "5.12.4.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b41813009269dce0658cb78190586d0c0fa0a10e", + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git#5.12.4.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "url": "http://fabric8.io/kubernetes-model-generator/kubernetes-model-storageclass/", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU72KMSAO4QAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "zjsonpatch", + "purl": "pkg:maven/io.fabric8/zjsonpatch@0.3.0.redhat-00001?type=jar", + "type": "library", + "group": "io.fabric8", + "bom-ref": "pkg:maven/io.fabric8/zjsonpatch@0.3.0.redhat-00001?type=jar", + "version": "0.3.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "bc8c56892eb411e44e8b056cf1fa82aa88188e7a", + "url": "http://code.engineering.redhat.com/gerrit/fabric8io/zjsonpatch.git#0.3.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Java Library to find / apply JSON Patches according to RFC 6902", + "externalReferences": [ + { + "url": "https://github.com/fabric8io/zjsonpatch/", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "http://code.engineering.redhat.com/gerrit/fabric8io/zjsonpatch.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/63484", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.3.9:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "jansi", + "purl": "pkg:maven/org.fusesource.jansi/jansi@1.18.0.redhat-00001?type=jar", + "type": "library", + "group": "org.fusesource.jansi", + "bom-ref": "pkg:maven/org.fusesource.jansi/jansi@1.18.0.redhat-00001?type=jar", + "version": "1.18.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Jansi is a java library for generating and interpreting ANSI escape sequences.", + "externalReferences": [ + { + "url": "http://fusesource.github.io/jansi/jansi", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/fusesource/jansi/issues", + "type": "issue-tracker" + }, + { + "url": "http://groups.google.com/group/jansi", + "type": "mailing-list" + }, + { + "url": "http://code.engineering.redhat.com/gerrit/jansi.git", + "type": "vcs" + } + ] + }, + { + "name": "option-annotations", + "purl": "pkg:maven/io.dekorate/option-annotations@2.11.3.redhat-00001?type=jar", + "type": "library", + "group": "io.dekorate", + "bom-ref": "pkg:maven/io.dekorate/option-annotations@2.11.3.redhat-00001?type=jar", + "version": "2.11.3.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "2a157f03f136f720e39864a28d6971d09a977f3a", + "url": "https://code.engineering.redhat.com/gerrit/dekorateio/dekorate.git#2.11.3.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "A collection of annotations and processors for Kubernetes", + "externalReferences": [ + { + "url": "https://dekorate.io/annotations/option-annotations", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/dekorateio/dekorate.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUXIAZKQ3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.3.9:1.0.5", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "s2i-annotations", + "purl": "pkg:maven/io.dekorate/s2i-annotations@2.11.3.redhat-00001?type=jar", + "type": "library", + "group": "io.dekorate", + "bom-ref": "pkg:maven/io.dekorate/s2i-annotations@2.11.3.redhat-00001?type=jar", + "version": "2.11.3.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "2a157f03f136f720e39864a28d6971d09a977f3a", + "url": "https://code.engineering.redhat.com/gerrit/dekorateio/dekorate.git#2.11.3.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "A collection of annotations and processors for Kubernetes", + "externalReferences": [ + { + "url": "https://dekorate.io/annotations/s2i-annotations", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/dekorateio/dekorate.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUXIAZKQ3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.3.9:1.0.5", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "openshift-client", + "purl": "pkg:maven/io.fabric8/openshift-client@5.12.4.redhat-00002?type=jar", + "type": "library", + "group": "io.fabric8", + "bom-ref": "pkg:maven/io.fabric8/openshift-client@5.12.4.redhat-00002?type=jar", + "version": "5.12.4.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b41813009269dce0658cb78190586d0c0fa0a10e", + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git#5.12.4.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "url": "http://fabric8.io/openshift-client/", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU72KMSAO4QAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "openshift-model", + "purl": "pkg:maven/io.fabric8/openshift-model@5.12.4.redhat-00002?type=jar", + "type": "library", + "group": "io.fabric8", + "bom-ref": "pkg:maven/io.fabric8/openshift-model@5.12.4.redhat-00002?type=jar", + "version": "5.12.4.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b41813009269dce0658cb78190586d0c0fa0a10e", + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git#5.12.4.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "url": "http://fabric8.io/kubernetes-model-generator/openshift-model/", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU72KMSAO4QAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "openshift-model-clusterautoscaling", + "purl": "pkg:maven/io.fabric8/openshift-model-clusterautoscaling@5.12.4.redhat-00002?type=jar", + "type": "library", + "group": "io.fabric8", + "bom-ref": "pkg:maven/io.fabric8/openshift-model-clusterautoscaling@5.12.4.redhat-00002?type=jar", + "version": "5.12.4.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b41813009269dce0658cb78190586d0c0fa0a10e", + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git#5.12.4.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "url": "http://fabric8.io/kubernetes-model-generator/openshift-model-clusterautoscaling/", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU72KMSAO4QAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "openshift-model-console", + "purl": "pkg:maven/io.fabric8/openshift-model-console@5.12.4.redhat-00002?type=jar", + "type": "library", + "group": "io.fabric8", + "bom-ref": "pkg:maven/io.fabric8/openshift-model-console@5.12.4.redhat-00002?type=jar", + "version": "5.12.4.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b41813009269dce0658cb78190586d0c0fa0a10e", + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git#5.12.4.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "url": "http://fabric8.io/kubernetes-model-generator/openshift-model-console/", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU72KMSAO4QAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "openshift-model-hive", + "purl": "pkg:maven/io.fabric8/openshift-model-hive@5.12.4.redhat-00002?type=jar", + "type": "library", + "group": "io.fabric8", + "bom-ref": "pkg:maven/io.fabric8/openshift-model-hive@5.12.4.redhat-00002?type=jar", + "version": "5.12.4.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b41813009269dce0658cb78190586d0c0fa0a10e", + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git#5.12.4.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "url": "http://fabric8.io/kubernetes-model-generator/openshift-model-hive/", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU72KMSAO4QAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "openshift-model-installer", + "purl": "pkg:maven/io.fabric8/openshift-model-installer@5.12.4.redhat-00002?type=jar", + "type": "library", + "group": "io.fabric8", + "bom-ref": "pkg:maven/io.fabric8/openshift-model-installer@5.12.4.redhat-00002?type=jar", + "version": "5.12.4.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b41813009269dce0658cb78190586d0c0fa0a10e", + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git#5.12.4.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "url": "http://fabric8.io/kubernetes-model-generator/openshift-model-installer/", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU72KMSAO4QAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "openshift-model-machine", + "purl": "pkg:maven/io.fabric8/openshift-model-machine@5.12.4.redhat-00002?type=jar", + "type": "library", + "group": "io.fabric8", + "bom-ref": "pkg:maven/io.fabric8/openshift-model-machine@5.12.4.redhat-00002?type=jar", + "version": "5.12.4.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b41813009269dce0658cb78190586d0c0fa0a10e", + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git#5.12.4.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "url": "http://fabric8.io/kubernetes-model-generator/openshift-model-machine/", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU72KMSAO4QAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "openshift-model-machineconfig", + "purl": "pkg:maven/io.fabric8/openshift-model-machineconfig@5.12.4.redhat-00002?type=jar", + "type": "library", + "group": "io.fabric8", + "bom-ref": "pkg:maven/io.fabric8/openshift-model-machineconfig@5.12.4.redhat-00002?type=jar", + "version": "5.12.4.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b41813009269dce0658cb78190586d0c0fa0a10e", + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git#5.12.4.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "url": "http://fabric8.io/kubernetes-model-generator/openshift-model-machineconfig/", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU72KMSAO4QAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "openshift-model-miscellaneous", + "purl": "pkg:maven/io.fabric8/openshift-model-miscellaneous@5.12.4.redhat-00002?type=jar", + "type": "library", + "group": "io.fabric8", + "bom-ref": "pkg:maven/io.fabric8/openshift-model-miscellaneous@5.12.4.redhat-00002?type=jar", + "version": "5.12.4.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b41813009269dce0658cb78190586d0c0fa0a10e", + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git#5.12.4.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "url": "http://fabric8.io/kubernetes-model-generator/openshift-model-miscellaneous/", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU72KMSAO4QAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "openshift-model-operator", + "purl": "pkg:maven/io.fabric8/openshift-model-operator@5.12.4.redhat-00002?type=jar", + "type": "library", + "group": "io.fabric8", + "bom-ref": "pkg:maven/io.fabric8/openshift-model-operator@5.12.4.redhat-00002?type=jar", + "version": "5.12.4.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b41813009269dce0658cb78190586d0c0fa0a10e", + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git#5.12.4.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "url": "http://fabric8.io/kubernetes-model-generator/openshift-model-operator/", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU72KMSAO4QAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "openshift-model-monitoring", + "purl": "pkg:maven/io.fabric8/openshift-model-monitoring@5.12.4.redhat-00002?type=jar", + "type": "library", + "group": "io.fabric8", + "bom-ref": "pkg:maven/io.fabric8/openshift-model-monitoring@5.12.4.redhat-00002?type=jar", + "version": "5.12.4.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b41813009269dce0658cb78190586d0c0fa0a10e", + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git#5.12.4.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "url": "http://fabric8.io/kubernetes-model-generator/openshift-model-monitoring/", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU72KMSAO4QAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "openshift-model-operatorhub", + "purl": "pkg:maven/io.fabric8/openshift-model-operatorhub@5.12.4.redhat-00002?type=jar", + "type": "library", + "group": "io.fabric8", + "bom-ref": "pkg:maven/io.fabric8/openshift-model-operatorhub@5.12.4.redhat-00002?type=jar", + "version": "5.12.4.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b41813009269dce0658cb78190586d0c0fa0a10e", + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git#5.12.4.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "url": "http://fabric8.io/kubernetes-model-generator/openshift-model-operatorhub/", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU72KMSAO4QAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "openshift-model-storageversionmigrator", + "purl": "pkg:maven/io.fabric8/openshift-model-storageversionmigrator@5.12.4.redhat-00002?type=jar", + "type": "library", + "group": "io.fabric8", + "bom-ref": "pkg:maven/io.fabric8/openshift-model-storageversionmigrator@5.12.4.redhat-00002?type=jar", + "version": "5.12.4.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b41813009269dce0658cb78190586d0c0fa0a10e", + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git#5.12.4.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "url": "http://fabric8.io/kubernetes-model-generator/openshift-model-storageversionmigrator/", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU72KMSAO4QAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "openshift-model-tuned", + "purl": "pkg:maven/io.fabric8/openshift-model-tuned@5.12.4.redhat-00002?type=jar", + "type": "library", + "group": "io.fabric8", + "bom-ref": "pkg:maven/io.fabric8/openshift-model-tuned@5.12.4.redhat-00002?type=jar", + "version": "5.12.4.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b41813009269dce0658cb78190586d0c0fa0a10e", + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git#5.12.4.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "url": "http://fabric8.io/kubernetes-model-generator/openshift-model-tuned/", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU72KMSAO4QAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "openshift-model-whereabouts", + "purl": "pkg:maven/io.fabric8/openshift-model-whereabouts@5.12.4.redhat-00002?type=jar", + "type": "library", + "group": "io.fabric8", + "bom-ref": "pkg:maven/io.fabric8/openshift-model-whereabouts@5.12.4.redhat-00002?type=jar", + "version": "5.12.4.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b41813009269dce0658cb78190586d0c0fa0a10e", + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git#5.12.4.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "url": "http://fabric8.io/kubernetes-model-generator/openshift-model-whereabouts/", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU72KMSAO4QAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-container-image-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-container-image-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-container-image-spi", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-spi@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-container-image-spi@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Extensions that provide Container features should include this module and the corresponding BuildItems", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-core-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-core-deployment:2.13.9.Final-redhat-00003#1", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "aesh", + "purl": "pkg:maven/org.aesh/aesh@2.6.0.redhat-00001?type=jar", + "type": "library", + "group": "org.aesh", + "bom-ref": "o.a:aesh:2.6.0.redhat-00001#1", + "version": "2.6.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "76d81e20f1d5552b775d8c9a2d1bb907c4541903", + "url": "http://code.engineering.redhat.com/gerrit/aesh.git#2.6.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Æsh (Another Extendable SHell)", + "externalReferences": [ + { + "url": "http://www.jboss.org/aesh-all/aesh", + "type": "website" + }, + { + "url": "https://issues.jboss.org/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "http://code.engineering.redhat.com/gerrit/aesh.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/53970", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.3.9:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "readline", + "purl": "pkg:maven/org.aesh/readline@2.2.0.redhat-00001?type=jar", + "type": "library", + "group": "org.aesh", + "bom-ref": "o.a:readline:2.2.0.redhat-00001#1", + "version": "2.2.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "459ca9dc8fad44ad4de8cfb51cbde482937a0c6e", + "url": "http://code.engineering.redhat.com/gerrit/aeshell/aesh-readline.git#2.2.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Æsh (Another Extendable SHell) Readline API", + "externalReferences": [ + { + "url": "http://www.jboss.org/readline-all/readline", + "type": "website" + }, + { + "url": "https://issues.jboss.org/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "http://code.engineering.redhat.com/gerrit/aeshell/aesh-readline.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/85131", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.3.9:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-container-image-util", + "purl": "pkg:maven/io.quarkus/quarkus-container-image-util@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-container-image-util@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Utility classes common to the container image extensions", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-vertx-http-dev-console-spi", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http-dev-console-spi@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-vertx-http-dev-console-spi:2.13.9.Final-redhat-00003#1", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-kubernetes-client-internal-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client-internal-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-kubernetes-client-internal-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "This module only exists as a separate module to so the kubernetes extension can share code with the kubernetes-client extension", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-arc-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-arc-deployment:2.13.9.Final-redhat-00003#1", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-smallrye-context-propagation-spi", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-context-propagation-spi@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-smallrye-context-propagation-spi:2.13.9.Final-redhat-00003#1", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-kubernetes-client-spi", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client-spi@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-kubernetes-client-spi@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Extensions that use the Kubernetes client, use this module to configure the client instance", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-kubernetes-spi", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-spi@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-kubernetes-spi@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Extensions that provide Kubernetes native features should include this module and the corresponding BuildItems", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-extension-maven-plugin", + "purl": "pkg:maven/io.quarkus/quarkus-extension-maven-plugin@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-extension-maven-plugin@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Provides, via submodules, a base configuration for JBoss project builds, as well as a derived configuration supporting multi-release JARs", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.redhat.com/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-bootstrap-maven-resolver", + "purl": "pkg:maven/io.quarkus/quarkus-bootstrap-maven-resolver@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-bootstrap-maven-resolver@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Provides, via submodules, a base configuration for JBoss project builds, as well as a derived configuration supporting multi-release JARs", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.redhat.com/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "maven-embedder", + "purl": "pkg:maven/org.apache.maven/maven-embedder@3.8.6.redhat-00002?type=jar", + "type": "library", + "group": "org.apache.maven", + "bom-ref": "pkg:maven/org.apache.maven/maven-embedder@3.8.6.redhat-00002?type=jar", + "version": "3.8.6.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "f2b3f11f136d55cf6447e492a7ac991f3abc488e", + "url": "https://code.engineering.redhat.com/gerrit/apache/maven.git#3.8.6.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Maven embeddable component, with CLI and logging support.", + "externalReferences": [ + { + "url": "https://maven.apache.org/ref/3.8.6.redhat-00002/maven-embedder/", + "type": "website" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A3Y2XL76CMYAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.apache.org/jira/browse/MNG", + "type": "issue-tracker" + }, + { + "url": "https://lists.apache.org/list.html?users@maven.apache.org", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/apache/maven.git", + "type": "vcs" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.6", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "guice", + "purl": "pkg:maven/com.google.inject/guice@4.0.0.redhat-00003?classifier=no_aop&type=jar", + "type": "library", + "group": "com.google.inject", + "bom-ref": "pkg:maven/com.google.inject/guice@4.0.0.redhat-00003?classifier=no_aop&type=jar", + "version": "4.0.0.redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Guice is a lightweight dependency injection framework for Java 6 and above", + "externalReferences": [ + { + "url": "https://github.com/google/guice/guice", + "type": "website" + }, + { + "url": "https://travis-ci.org/google/guice", + "type": "build-system" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/google/guice/issues/", + "type": "issue-tracker" + }, + { + "url": "http://groups.google.com/group/google-guice/topics", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/google/guice.git", + "type": "vcs" + } + ] + }, + { + "name": "aopalliance", + "purl": "pkg:maven/aopalliance/aopalliance@1.0.0.redhat-00003?type=jar", + "type": "library", + "group": "aopalliance", + "bom-ref": "pkg:maven/aopalliance/aopalliance@1.0.0.redhat-00003?type=jar", + "version": "1.0.0.redhat-00003", + "licenses": [ + { + "license": { + "name": "Public Domain" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "232c290ab94c9134eeb83de95b5b6a7778d1d6db", + "url": "http://code.engineering.redhat.com/gerrit/aopalliance.git#1.0.0.redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "AOP Alliance", + "externalReferences": [ + { + "url": "http://aopalliance.sourceforge.net", + "type": "website" + }, + { + "url": "http://code.engineering.redhat.com/gerrit/aopalliance.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/12485", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.3.9:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "guava", + "purl": "pkg:maven/com.google.guava/guava@32.0.1.jre-redhat-00001?type=jar", + "type": "library", + "group": "com.google.guava", + "bom-ref": "c.g.g:guava:32.0.1.jre-redhat-00001#1", + "version": "32.0.1.jre-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "52da9696c57a4beca17f092ec50d98f12264cb94", + "url": "https://code.engineering.redhat.com/gerrit/google/guava.git#32.0.1.jre-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Guava is a suite of core and expanded libraries that include utility classes, Google's collections, I/O classes, and much more.", + "externalReferences": [ + { + "url": "https://github.com/google/guava", + "type": "website" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AZY2CVKAC7AAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/google/guava/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/google/guava.git", + "type": "vcs" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.0:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "failureaccess", + "purl": "pkg:maven/com.google.guava/failureaccess@1.0.1.redhat-00012?type=jar", + "type": "library", + "group": "com.google.guava", + "bom-ref": "pkg:maven/com.google.guava/failureaccess@1.0.1.redhat-00012?type=jar", + "version": "1.0.1.redhat-00012", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "3c0fc79a70e4a1539f4df638365a55b0194e1a0b", + "url": "https://code.engineering.redhat.com/gerrit/guava-failureaccess.git#1.0.1.redhat-00012" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Contains com.google.common.util.concurrent.internal.InternalFutureFailureAccess and InternalFutures. Most users will never need to use this artifact. Its classes are conceptually a part of Guava, but they're in this separate artifact so that Android libraries can use them without pulling in all of Guava (just as they can use ListenableFuture by depending on the listenablefuture artifact).", + "externalReferences": [ + { + "url": "https://github.com/google/guava/failureaccess", + "type": "website" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A3WZTPVFKMYAE", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "https://github.com/google/guava/issues", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/guava-failureaccess.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.3.9:1.0.5", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "commons-cli", + "purl": "pkg:maven/commons-cli/commons-cli@1.4.0.redhat-00001?type=jar", + "type": "library", + "group": "commons-cli", + "bom-ref": "pkg:maven/commons-cli/commons-cli@1.4.0.redhat-00001?type=jar", + "version": "1.4.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b133dca1ddeb0b010eb8820edd32521bb669a204", + "url": "http://code.engineering.redhat.com/gerrit/apache/commons-cli.git#1.4.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Apache Commons CLI provides a simple API for presenting, processing and validating a command line interface.", + "externalReferences": [ + { + "url": "http://commons.apache.org/proper/commons-cli/", + "type": "website" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/29368", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "http://issues.apache.org/jira/browse/CLI", + "type": "issue-tracker" + }, + { + "url": "http://mail-archives.apache.org/mod_mbox/commons-user/", + "type": "mailing-list" + }, + { + "url": "http://code.engineering.redhat.com/gerrit/apache/commons-cli.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.3.9:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "maven-builder-support", + "purl": "pkg:maven/org.apache.maven/maven-builder-support@3.8.6.redhat-00002?type=jar", + "type": "library", + "group": "org.apache.maven", + "bom-ref": "pkg:maven/org.apache.maven/maven-builder-support@3.8.6.redhat-00002?type=jar", + "version": "3.8.6.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "f2b3f11f136d55cf6447e492a7ac991f3abc488e", + "url": "https://code.engineering.redhat.com/gerrit/apache/maven.git#3.8.6.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Support for descriptor builders (model, setting, toolchains)", + "externalReferences": [ + { + "url": "https://maven.apache.org/ref/3.8.6.redhat-00002/maven-builder-support/", + "type": "website" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A3Y2XL76CMYAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.apache.org/jira/browse/MNG", + "type": "issue-tracker" + }, + { + "url": "https://lists.apache.org/list.html?users@maven.apache.org", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/apache/maven.git", + "type": "vcs" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.6", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "maven-core", + "purl": "pkg:maven/org.apache.maven/maven-core@3.8.6.redhat-00002?type=jar", + "type": "library", + "group": "org.apache.maven", + "bom-ref": "pkg:maven/org.apache.maven/maven-core@3.8.6.redhat-00002?type=jar", + "version": "3.8.6.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "f2b3f11f136d55cf6447e492a7ac991f3abc488e", + "url": "https://code.engineering.redhat.com/gerrit/apache/maven.git#3.8.6.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Maven Core classes.", + "externalReferences": [ + { + "url": "https://maven.apache.org/ref/3.8.6.redhat-00002/maven-core/", + "type": "website" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A3Y2XL76CMYAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.apache.org/jira/browse/MNG", + "type": "issue-tracker" + }, + { + "url": "https://lists.apache.org/list.html?users@maven.apache.org", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/apache/maven.git", + "type": "vcs" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.6", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "maven-artifact", + "purl": "pkg:maven/org.apache.maven/maven-artifact@3.8.6.redhat-00002?type=jar", + "type": "library", + "group": "org.apache.maven", + "bom-ref": "pkg:maven/org.apache.maven/maven-artifact@3.8.6.redhat-00002?type=jar", + "version": "3.8.6.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "f2b3f11f136d55cf6447e492a7ac991f3abc488e", + "url": "https://code.engineering.redhat.com/gerrit/apache/maven.git#3.8.6.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Maven is a software build management and comprehension tool. Based on the concept of a project object model: builds, dependency management, documentation creation, site publication, and distribution publication are all controlled from the declarative file. Maven can be extended by plugins to utilise a number of other development tools for reporting or the build process.", + "externalReferences": [ + { + "url": "https://maven.apache.org/ref/3.8.6.redhat-00002/maven-artifact/", + "type": "website" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A3Y2XL76CMYAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.apache.org/jira/browse/MNG", + "type": "issue-tracker" + }, + { + "url": "https://lists.apache.org/list.html?users@maven.apache.org", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/apache/maven.git", + "type": "vcs" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.6", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "plexus-utils", + "purl": "pkg:maven/org.codehaus.plexus/plexus-utils@3.3.0.redhat-00003?type=jar", + "type": "library", + "group": "org.codehaus.plexus", + "bom-ref": "pkg:maven/org.codehaus.plexus/plexus-utils@3.3.0.redhat-00003?type=jar", + "version": "3.3.0.redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "da1a8fab4b499b9ecc79e35c59dec988b6df54e6", + "url": "https://code.engineering.redhat.com/gerrit/codehaus-plexus/plexus-utils.git#3.3.0.redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "A collection of various utility classes to ease working with strings, files, command lines, XML and more.", + "externalReferences": [ + { + "url": "http://codehaus-plexus.github.io/plexus-utils/", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "http://github.com/codehaus-plexus/plexus-utils/issues", + "type": "issue-tracker" + }, + { + "url": "http://archive.plexus.codehaus.org/user", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/codehaus-plexus/plexus-utils.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A2PW6YTTQHQC2", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.6", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "maven-model", + "purl": "pkg:maven/org.apache.maven/maven-model@3.8.6.redhat-00002?type=jar", + "type": "library", + "group": "org.apache.maven", + "bom-ref": "pkg:maven/org.apache.maven/maven-model@3.8.6.redhat-00002?type=jar", + "version": "3.8.6.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "f2b3f11f136d55cf6447e492a7ac991f3abc488e", + "url": "https://code.engineering.redhat.com/gerrit/apache/maven.git#3.8.6.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Model for Maven POM (Project Object Model)", + "externalReferences": [ + { + "url": "https://maven.apache.org/ref/3.8.6.redhat-00002/maven-model/", + "type": "website" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A3Y2XL76CMYAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.apache.org/jira/browse/MNG", + "type": "issue-tracker" + }, + { + "url": "https://lists.apache.org/list.html?users@maven.apache.org", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/apache/maven.git", + "type": "vcs" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.6", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "maven-model-builder", + "purl": "pkg:maven/org.apache.maven/maven-model-builder@3.8.6.redhat-00002?type=jar", + "type": "library", + "group": "org.apache.maven", + "bom-ref": "o.a.m:maven-model-builder:3.8.6.redhat-00002#1", + "version": "3.8.6.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "f2b3f11f136d55cf6447e492a7ac991f3abc488e", + "url": "https://code.engineering.redhat.com/gerrit/apache/maven.git#3.8.6.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The effective model builder, with inheritance, profile activation, interpolation, ...", + "externalReferences": [ + { + "url": "https://maven.apache.org/ref/3.8.6.redhat-00002/maven-model-builder/", + "type": "website" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A3Y2XL76CMYAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.apache.org/jira/browse/MNG", + "type": "issue-tracker" + }, + { + "url": "https://lists.apache.org/list.html?users@maven.apache.org", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/apache/maven.git", + "type": "vcs" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.6", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "plexus-interpolation", + "purl": "pkg:maven/org.codehaus.plexus/plexus-interpolation@1.26.0.redhat-00005?type=jar", + "type": "library", + "group": "org.codehaus.plexus", + "bom-ref": "pkg:maven/org.codehaus.plexus/plexus-interpolation@1.26.0.redhat-00005?type=jar", + "version": "1.26.0.redhat-00005", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "f7ef4d1c5fcdd7d16a9c378330ac3d074c51577c", + "url": "https://code.engineering.redhat.com/gerrit/codehaus-plexus/plexus-interpolation.git#1.26.0.redhat-00005" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The Plexus project provides a full software stack for creating and executing software projects.", + "externalReferences": [ + { + "url": "http://codehaus-plexus.github.io/plexus-interpolation/", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/codehaus-plexus/plexus-interpolation/issues", + "type": "issue-tracker" + }, + { + "url": "http://archive.plexus.codehaus.org/user", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/codehaus-plexus/plexus-interpolation.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A2PW6YTTQHQBE", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.5", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "maven-plugin-api", + "purl": "pkg:maven/org.apache.maven/maven-plugin-api@3.8.6.redhat-00002?type=jar", + "type": "library", + "group": "org.apache.maven", + "bom-ref": "pkg:maven/org.apache.maven/maven-plugin-api@3.8.6.redhat-00002?type=jar", + "version": "3.8.6.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "f2b3f11f136d55cf6447e492a7ac991f3abc488e", + "url": "https://code.engineering.redhat.com/gerrit/apache/maven.git#3.8.6.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The API for plugins - Mojos - development.", + "externalReferences": [ + { + "url": "https://maven.apache.org/ref/3.8.6.redhat-00002/maven-plugin-api/", + "type": "website" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A3Y2XL76CMYAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.apache.org/jira/browse/MNG", + "type": "issue-tracker" + }, + { + "url": "https://lists.apache.org/list.html?users@maven.apache.org", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/apache/maven.git", + "type": "vcs" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.6", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "plexus-classworlds", + "purl": "pkg:maven/org.codehaus.plexus/plexus-classworlds@2.6.0?type=jar", + "type": "library", + "group": "org.codehaus.plexus", + "bom-ref": "pkg:maven/org.codehaus.plexus/plexus-classworlds@2.6.0?type=jar", + "version": "2.6.0", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "Codehaus Plexus", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "A class loader framework", + "externalReferences": [ + { + "url": "http://codehaus-plexus.github.io/plexus-classworlds/", + "type": "website" + }, + { + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "http://github.com/codehaus-plexus/plexus-classworlds/issues", + "type": "issue-tracker" + }, + { + "url": "http://archive.plexus.codehaus.org/user", + "type": "mailing-list" + }, + { + "url": "https://github.com/codehaus-plexus/plexus-classworlds", + "type": "vcs" + } + ] + }, + { + "name": "org.eclipse.sisu.plexus", + "purl": "pkg:maven/org.eclipse.sisu/org.eclipse.sisu.plexus@0.3.5?type=jar", + "type": "library", + "group": "org.eclipse.sisu", + "bom-ref": "pkg:maven/org.eclipse.sisu/org.eclipse.sisu.plexus@0.3.5?type=jar", + "version": "0.3.5", + "licenses": [ + { + "license": { + "id": "EPL-1.0" + } + } + ], + "publisher": "The Eclipse Foundation", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Plexus-JSR330 adapter; adds Plexus support to the Sisu-Inject container", + "externalReferences": [ + { + "url": "http://www.eclipse.org/sisu/org.eclipse.sisu.plexus/", + "type": "website" + }, + { + "url": "https://hudson.eclipse.org/sisu/job/sisu-plexus-nightly/", + "type": "build-system" + }, + { + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://bugs.eclipse.org/bugs/enter_bug.cgi?product=Sisu&component=Plexus&format=guided", + "type": "issue-tracker" + }, + { + "url": "http://dev.eclipse.org/mhonarc/lists/sisu-dev/", + "type": "mailing-list" + }, + { + "url": "https://github.com/eclipse/sisu.plexus", + "type": "vcs" + } + ] + }, + { + "name": "maven-repository-metadata", + "purl": "pkg:maven/org.apache.maven/maven-repository-metadata@3.8.6.redhat-00002?type=jar", + "type": "library", + "group": "org.apache.maven", + "bom-ref": "pkg:maven/org.apache.maven/maven-repository-metadata@3.8.6.redhat-00002?type=jar", + "version": "3.8.6.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "f2b3f11f136d55cf6447e492a7ac991f3abc488e", + "url": "https://code.engineering.redhat.com/gerrit/apache/maven.git#3.8.6.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Per-directory local and remote repository metadata.", + "externalReferences": [ + { + "url": "https://maven.apache.org/ref/3.8.6.redhat-00002/maven-repository-metadata/", + "type": "website" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A3Y2XL76CMYAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.apache.org/jira/browse/MNG", + "type": "issue-tracker" + }, + { + "url": "https://lists.apache.org/list.html?users@maven.apache.org", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/apache/maven.git", + "type": "vcs" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.6", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "maven-resolver-provider", + "purl": "pkg:maven/org.apache.maven/maven-resolver-provider@3.8.6.redhat-00002?type=jar", + "type": "library", + "group": "org.apache.maven", + "bom-ref": "o.a.m:maven-resolver-provider:3.8.6.redhat-00002#1", + "version": "3.8.6.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "f2b3f11f136d55cf6447e492a7ac991f3abc488e", + "url": "https://code.engineering.redhat.com/gerrit/apache/maven.git#3.8.6.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Extensions to Maven Resolver for utilizing Maven POM and repository metadata.", + "externalReferences": [ + { + "url": "https://maven.apache.org/ref/3.8.6.redhat-00002/maven-resolver-provider/", + "type": "website" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A3Y2XL76CMYAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.apache.org/jira/browse/MNG", + "type": "issue-tracker" + }, + { + "url": "https://lists.apache.org/list.html?users@maven.apache.org", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/apache/maven.git", + "type": "vcs" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.6", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "maven-resolver-api", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-api@1.6.3?type=jar", + "type": "library", + "group": "org.apache.maven.resolver", + "bom-ref": "pkg:maven/org.apache.maven.resolver/maven-resolver-api@1.6.3?type=jar", + "version": "1.6.3", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "The Apache Software Foundation", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The application programming interface for the repository system.", + "externalReferences": [ + { + "url": "https://maven.apache.org/resolver/maven-resolver-api/", + "type": "website" + }, + { + "url": "https://ci-builds.apache.org/job/Maven/job/maven-box/job/maven-resolver/", + "type": "build-system" + }, + { + "url": "https://repository.apache.org/service/local/staging/deploy/maven2", + "type": "distribution" + }, + { + "url": "https://issues.apache.org/jira/browse/MRESOLVER", + "type": "issue-tracker" + }, + { + "url": "https://lists.apache.org/list.html?users@maven.apache.org", + "type": "mailing-list" + }, + { + "url": "https://github.com/apache/maven-resolver", + "type": "vcs" + } + ] + }, + { + "name": "maven-resolver-impl", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-impl@1.6.3?type=jar", + "type": "library", + "group": "org.apache.maven.resolver", + "bom-ref": "o.a.m.r:maven-resolver-impl:1.6.3#1", + "version": "1.6.3", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "The Apache Software Foundation", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "An implementation of the repository system.", + "externalReferences": [ + { + "url": "https://maven.apache.org/resolver/maven-resolver-impl/", + "type": "website" + }, + { + "url": "https://ci-builds.apache.org/job/Maven/job/maven-box/job/maven-resolver/", + "type": "build-system" + }, + { + "url": "https://repository.apache.org/service/local/staging/deploy/maven2", + "type": "distribution" + }, + { + "url": "https://issues.apache.org/jira/browse/MRESOLVER", + "type": "issue-tracker" + }, + { + "url": "https://lists.apache.org/list.html?users@maven.apache.org", + "type": "mailing-list" + }, + { + "url": "https://github.com/apache/maven-resolver", + "type": "vcs" + } + ] + }, + { + "name": "maven-resolver-spi", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-spi@1.6.3?type=jar", + "type": "library", + "group": "org.apache.maven.resolver", + "bom-ref": "pkg:maven/org.apache.maven.resolver/maven-resolver-spi@1.6.3?type=jar", + "version": "1.6.3", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "The Apache Software Foundation", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The service provider interface for repository system implementations and repository connectors.", + "externalReferences": [ + { + "url": "https://maven.apache.org/resolver/maven-resolver-spi/", + "type": "website" + }, + { + "url": "https://ci-builds.apache.org/job/Maven/job/maven-box/job/maven-resolver/", + "type": "build-system" + }, + { + "url": "https://repository.apache.org/service/local/staging/deploy/maven2", + "type": "distribution" + }, + { + "url": "https://issues.apache.org/jira/browse/MRESOLVER", + "type": "issue-tracker" + }, + { + "url": "https://lists.apache.org/list.html?users@maven.apache.org", + "type": "mailing-list" + }, + { + "url": "https://github.com/apache/maven-resolver", + "type": "vcs" + } + ] + }, + { + "name": "maven-resolver-util", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-util@1.6.3?type=jar", + "type": "library", + "group": "org.apache.maven.resolver", + "bom-ref": "pkg:maven/org.apache.maven.resolver/maven-resolver-util@1.6.3?type=jar", + "version": "1.6.3", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "The Apache Software Foundation", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "A collection of utility classes to ease usage of the repository system.", + "externalReferences": [ + { + "url": "https://maven.apache.org/resolver/maven-resolver-util/", + "type": "website" + }, + { + "url": "https://ci-builds.apache.org/job/Maven/job/maven-box/job/maven-resolver/", + "type": "build-system" + }, + { + "url": "https://repository.apache.org/service/local/staging/deploy/maven2", + "type": "distribution" + }, + { + "url": "https://issues.apache.org/jira/browse/MRESOLVER", + "type": "issue-tracker" + }, + { + "url": "https://lists.apache.org/list.html?users@maven.apache.org", + "type": "mailing-list" + }, + { + "url": "https://github.com/apache/maven-resolver", + "type": "vcs" + } + ] + }, + { + "name": "maven-settings", + "purl": "pkg:maven/org.apache.maven/maven-settings@3.8.6.redhat-00002?type=jar", + "type": "library", + "group": "org.apache.maven", + "bom-ref": "pkg:maven/org.apache.maven/maven-settings@3.8.6.redhat-00002?type=jar", + "version": "3.8.6.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "f2b3f11f136d55cf6447e492a7ac991f3abc488e", + "url": "https://code.engineering.redhat.com/gerrit/apache/maven.git#3.8.6.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Maven Settings model.", + "externalReferences": [ + { + "url": "https://maven.apache.org/ref/3.8.6.redhat-00002/maven-settings/", + "type": "website" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A3Y2XL76CMYAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.apache.org/jira/browse/MNG", + "type": "issue-tracker" + }, + { + "url": "https://lists.apache.org/list.html?users@maven.apache.org", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/apache/maven.git", + "type": "vcs" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.6", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "maven-settings-builder", + "purl": "pkg:maven/org.apache.maven/maven-settings-builder@3.8.6.redhat-00002?type=jar", + "type": "library", + "group": "org.apache.maven", + "bom-ref": "o.a.m:maven-settings-builder:3.8.6.redhat-00002#1", + "version": "3.8.6.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "f2b3f11f136d55cf6447e492a7ac991f3abc488e", + "url": "https://code.engineering.redhat.com/gerrit/apache/maven.git#3.8.6.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The effective settings builder, with inheritance and password decryption.", + "externalReferences": [ + { + "url": "https://maven.apache.org/ref/3.8.6.redhat-00002/maven-settings-builder/", + "type": "website" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A3Y2XL76CMYAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.apache.org/jira/browse/MNG", + "type": "issue-tracker" + }, + { + "url": "https://lists.apache.org/list.html?users@maven.apache.org", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/apache/maven.git", + "type": "vcs" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.6", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "plexus-sec-dispatcher", + "purl": "pkg:maven/org.codehaus.plexus/plexus-sec-dispatcher@2.0.0.redhat-00004?type=jar", + "type": "library", + "group": "org.codehaus.plexus", + "bom-ref": "o.c.p:plexus-sec-dispatcher:2.0.0.redhat-00004#1", + "version": "2.0.0.redhat-00004", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "d7e2972bdc3d8107c77226f5b5be1b235f9704e6", + "url": "https://code.engineering.redhat.com/gerrit/codehaus-plexus/plexus-sec-dispatcher.git#2.0.0.redhat-00004" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The Plexus project provides a full software stack for creating and executing software projects.", + "externalReferences": [ + { + "url": "https://codehaus-plexus.github.io/plexus-sec-dispatcher/", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/codehaus-plexus/plexus-sec-dispatcher/issues", + "type": "issue-tracker" + }, + { + "url": "http://archive.plexus.codehaus.org/user", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/codehaus-plexus/plexus-sec-dispatcher.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A24G3WSLSEQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.3.9:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "plexus-cipher", + "purl": "pkg:maven/org.codehaus.plexus/plexus-cipher@2.0.0.redhat-00004?type=jar", + "type": "library", + "group": "org.codehaus.plexus", + "bom-ref": "pkg:maven/org.codehaus.plexus/plexus-cipher@2.0.0.redhat-00004?type=jar", + "version": "2.0.0.redhat-00004", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "f382f1b87c01581ef24c8f37de0062d5e87ce3d7", + "url": "https://code.engineering.redhat.com/gerrit/codehaus-plexus/plexus-cipher.git#2.0.0.redhat-00004" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The Plexus project provides a full software stack for creating and executing software projects.", + "externalReferences": [ + { + "url": "https://codehaus-plexus.github.io/plexus-cipher/", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/codehaus-plexus/plexus-cipher/issues", + "type": "issue-tracker" + }, + { + "url": "http://archive.plexus.codehaus.org/user", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/codehaus-plexus/plexus-cipher.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A2PW6YTQIHQBW", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.5.4:1.0.5", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "maven-shared-utils", + "purl": "pkg:maven/org.apache.maven.shared/maven-shared-utils@3.3.4?type=jar", + "type": "library", + "group": "org.apache.maven.shared", + "bom-ref": "pkg:maven/org.apache.maven.shared/maven-shared-utils@3.3.4?type=jar", + "version": "3.3.4", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "The Apache Software Foundation", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Shared utilities for use by Maven core and plugins", + "externalReferences": [ + { + "url": "https://maven.apache.org/shared/maven-shared-utils/", + "type": "website" + }, + { + "url": "https://ci-builds.apache.org/job/Maven/job/maven-box/job/maven-shared-utils/", + "type": "build-system" + }, + { + "url": "https://repository.apache.org/service/local/staging/deploy/maven2", + "type": "distribution" + }, + { + "url": "https://issues.apache.org/jira/issues/?jql=project%20%3D%20MSHARED%20AND%20component%20%3D%20maven-shared-utils", + "type": "issue-tracker" + }, + { + "url": "https://lists.apache.org/list.html?users@maven.apache.org", + "type": "mailing-list" + }, + { + "url": "https://github.com/apache/maven-shared-utils", + "type": "vcs" + } + ] + }, + { + "name": "plexus-component-annotations", + "purl": "pkg:maven/org.codehaus.plexus/plexus-component-annotations@2.1.0?type=jar", + "type": "library", + "group": "org.codehaus.plexus", + "bom-ref": "pkg:maven/org.codehaus.plexus/plexus-component-annotations@2.1.0?type=jar", + "version": "2.1.0", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "Codehaus Plexus", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Plexus Component \"Java 5\" Annotations, to describe plexus components properties in java sources with standard annotations instead of javadoc annotations.", + "externalReferences": [ + { + "url": "http://codehaus-plexus.github.io/plexus-containers/plexus-component-annotations/", + "type": "website" + }, + { + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "http://github.com/codehaus-plexus/plexus-containers/issues", + "type": "issue-tracker" + }, + { + "url": "http://archive.plexus.codehaus.org/user", + "type": "mailing-list" + }, + { + "url": "https://github.com/codehaus-plexus/plexus-containers", + "type": "vcs" + } + ] + }, + { + "name": "maven-resolver-connector-basic", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-connector-basic@1.6.3?type=jar", + "type": "library", + "group": "org.apache.maven.resolver", + "bom-ref": "pkg:maven/org.apache.maven.resolver/maven-resolver-connector-basic@1.6.3?type=jar", + "version": "1.6.3", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "The Apache Software Foundation", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "A repository connector implementation for repositories using URI-based layouts.", + "externalReferences": [ + { + "url": "https://maven.apache.org/resolver/maven-resolver-connector-basic/", + "type": "website" + }, + { + "url": "https://ci-builds.apache.org/job/Maven/job/maven-box/job/maven-resolver/", + "type": "build-system" + }, + { + "url": "https://repository.apache.org/service/local/staging/deploy/maven2", + "type": "distribution" + }, + { + "url": "https://issues.apache.org/jira/browse/MRESOLVER", + "type": "issue-tracker" + }, + { + "url": "https://lists.apache.org/list.html?users@maven.apache.org", + "type": "mailing-list" + }, + { + "url": "https://github.com/apache/maven-resolver", + "type": "vcs" + } + ] + }, + { + "name": "maven-resolver-transport-wagon", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-transport-wagon@1.6.3?type=jar", + "type": "library", + "group": "org.apache.maven.resolver", + "bom-ref": "o.a.m.r:maven-resolver-transport-wagon:1.6.3#1", + "version": "1.6.3", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "The Apache Software Foundation", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "A transport implementation based on Maven Wagon.", + "externalReferences": [ + { + "url": "https://maven.apache.org/resolver/maven-resolver-transport-wagon/", + "type": "website" + }, + { + "url": "https://ci-builds.apache.org/job/Maven/job/maven-box/job/maven-resolver/", + "type": "build-system" + }, + { + "url": "https://repository.apache.org/service/local/staging/deploy/maven2", + "type": "distribution" + }, + { + "url": "https://issues.apache.org/jira/browse/MRESOLVER", + "type": "issue-tracker" + }, + { + "url": "https://lists.apache.org/list.html?users@maven.apache.org", + "type": "mailing-list" + }, + { + "url": "https://github.com/apache/maven-resolver", + "type": "vcs" + } + ] + }, + { + "name": "wagon-file", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-file@3.5.1?type=jar", + "type": "library", + "group": "org.apache.maven.wagon", + "bom-ref": "pkg:maven/org.apache.maven.wagon/wagon-file@3.5.1?type=jar", + "version": "3.5.1", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "The Apache Software Foundation", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Wagon provider that gets and puts artifacts using file system protocol", + "externalReferences": [ + { + "url": "https://maven.apache.org/wagon/wagon-providers/wagon-file", + "type": "website" + }, + { + "url": "https://ci-builds.apache.org/job/Maven/job/maven-box/job/maven-wagon/", + "type": "build-system" + }, + { + "url": "https://repository.apache.org/service/local/staging/deploy/maven2", + "type": "distribution" + }, + { + "url": "https://issues.apache.org/jira/browse/WAGON", + "type": "issue-tracker" + }, + { + "url": "http://mail-archives.apache.org/mod_mbox/maven-dev", + "type": "mailing-list" + }, + { + "url": "https://github.com/apache/maven-wagon", + "type": "vcs" + } + ] + }, + { + "name": "wagon-provider-api", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-provider-api@3.5.1?type=jar", + "type": "library", + "group": "org.apache.maven.wagon", + "bom-ref": "pkg:maven/org.apache.maven.wagon/wagon-provider-api@3.5.1?type=jar", + "version": "3.5.1", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "The Apache Software Foundation", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Maven Wagon API that defines the contract between different Wagon implementations", + "externalReferences": [ + { + "url": "https://maven.apache.org/wagon/wagon-provider-api", + "type": "website" + }, + { + "url": "https://ci-builds.apache.org/job/Maven/job/maven-box/job/maven-wagon/", + "type": "build-system" + }, + { + "url": "https://repository.apache.org/service/local/staging/deploy/maven2", + "type": "distribution" + }, + { + "url": "https://issues.apache.org/jira/browse/WAGON", + "type": "issue-tracker" + }, + { + "url": "http://mail-archives.apache.org/mod_mbox/maven-dev", + "type": "mailing-list" + }, + { + "url": "https://github.com/apache/maven-wagon", + "type": "vcs" + } + ] + }, + { + "name": "wagon-http", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-http@3.5.1?type=jar", + "type": "library", + "group": "org.apache.maven.wagon", + "bom-ref": "pkg:maven/org.apache.maven.wagon/wagon-http@3.5.1?type=jar", + "version": "3.5.1", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "The Apache Software Foundation", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Wagon provider that gets and puts artifacts through HTTP(S) using Apache HttpClient-4.x.", + "externalReferences": [ + { + "url": "https://maven.apache.org/wagon/wagon-providers/wagon-http", + "type": "website" + }, + { + "url": "https://ci-builds.apache.org/job/Maven/job/maven-box/job/maven-wagon/", + "type": "build-system" + }, + { + "url": "https://repository.apache.org/service/local/staging/deploy/maven2", + "type": "distribution" + }, + { + "url": "https://issues.apache.org/jira/browse/WAGON", + "type": "issue-tracker" + }, + { + "url": "http://mail-archives.apache.org/mod_mbox/maven-dev", + "type": "mailing-list" + }, + { + "url": "https://github.com/apache/maven-wagon", + "type": "vcs" + } + ] + }, + { + "name": "httpclient", + "purl": "pkg:maven/org.apache.httpcomponents/httpclient@4.5.13.redhat-00006?type=jar", + "type": "library", + "group": "org.apache.httpcomponents", + "bom-ref": "o.a.h:httpclient:4.5.13.redhat-00006#1", + "version": "4.5.13.redhat-00006", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "9dd2b5380d187926908ef7f895cfda6b75a01356", + "url": "https://code.engineering.redhat.com/gerrit/apache/httpclient.git#4.5.13.redhat-00006" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Apache HttpComponents Client", + "externalReferences": [ + { + "url": "http://hc.apache.org/httpcomponents-client", + "type": "website" + }, + { + "url": "http://issues.apache.org/jira/browse/HTTPCLIENT", + "type": "issue-tracker" + }, + { + "url": "http://mail-archives.apache.org/mod_mbox/hc-httpclient-users/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/apache/httpclient.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A2ZTSKSSSEQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.3.9:1.0.5", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "httpcore", + "purl": "pkg:maven/org.apache.httpcomponents/httpcore@4.4.15.redhat-00008?type=jar", + "type": "library", + "group": "org.apache.httpcomponents", + "bom-ref": "pkg:maven/org.apache.httpcomponents/httpcore@4.4.15.redhat-00008?type=jar", + "version": "4.4.15.redhat-00008", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "37d01bc0da6a4539fc501865cc6e34bcd9121175", + "url": "https://code.engineering.redhat.com/gerrit/apache/httpcore.git#4.4.15.redhat-00008" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Apache HttpComponents Core (blocking I/O)", + "externalReferences": [ + { + "url": "http://hc.apache.org/httpcomponents-core-ga", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "http://issues.apache.org/jira/browse/HTTPCORE", + "type": "issue-tracker" + }, + { + "url": "http://mail-archives.apache.org/mod_mbox/hc-httpclient-users/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/apache/httpcore.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A3OFCG7J2MYDA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.3.9:1.0.5", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "wagon-http-shared", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-http-shared@3.5.1?type=jar", + "type": "library", + "group": "org.apache.maven.wagon", + "bom-ref": "pkg:maven/org.apache.maven.wagon/wagon-http-shared@3.5.1?type=jar", + "version": "3.5.1", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "The Apache Software Foundation", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Shared Library for wagon providers supporting HTTP.", + "externalReferences": [ + { + "url": "https://maven.apache.org/wagon/wagon-providers/wagon-http-shared", + "type": "website" + }, + { + "url": "https://ci-builds.apache.org/job/Maven/job/maven-box/job/maven-wagon/", + "type": "build-system" + }, + { + "url": "https://repository.apache.org/service/local/staging/deploy/maven2", + "type": "distribution" + }, + { + "url": "https://issues.apache.org/jira/browse/WAGON", + "type": "issue-tracker" + }, + { + "url": "http://mail-archives.apache.org/mod_mbox/maven-dev", + "type": "mailing-list" + }, + { + "url": "https://github.com/apache/maven-wagon", + "type": "vcs" + } + ] + }, + { + "name": "maven-plugin-annotations", + "purl": "pkg:maven/org.apache.maven.plugin-tools/maven-plugin-annotations@3.6.0.redhat-00002?type=jar", + "type": "library", + "group": "org.apache.maven.plugin-tools", + "bom-ref": "pkg:maven/org.apache.maven.plugin-tools/maven-plugin-annotations@3.6.0.redhat-00002?type=jar", + "version": "3.6.0.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "91392c49b611b8fb65bba81f51d46fe92caac123", + "url": "http://code.engineering.redhat.com/gerrit/apache/maven-plugin-tools.git#3.6.0.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Java annotations to use in Mojos", + "externalReferences": [ + { + "url": "https://maven.apache.org/plugin-tools/maven-plugin-annotations", + "type": "website" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/51740", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.apache.org/jira/browse/MPLUGIN", + "type": "issue-tracker" + }, + { + "url": "https://lists.apache.org/list.html?users@maven.apache.org", + "type": "mailing-list" + }, + { + "url": "http://code.engineering.redhat.com/gerrit/apache/maven-plugin-tools.git", + "type": "vcs" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.0-gradle5.6.2:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-extension-processor", + "purl": "pkg:maven/io.quarkus/quarkus-extension-processor@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-extension-processor@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "javaparser-core", + "purl": "pkg:maven/com.github.javaparser/javaparser-core@3.24.2.redhat-00003?type=jar", + "type": "library", + "group": "com.github.javaparser", + "bom-ref": "pkg:maven/com.github.javaparser/javaparser-core@3.24.2.redhat-00003?type=jar", + "version": "3.24.2.redhat-00003", + "licenses": [ + { + "license": { + "url": "http://www.gnu.org/licenses/lgpl-3.0.html", + "name": "GNU Lesser General Public License" + } + }, + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "9afb4f29b7ca7e79af71c649405cf4c6decaa9bf", + "url": "https://code.engineering.redhat.com/gerrit/javaparser/javaparser.git#3.24.2.redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The core parser functionality. This may be all you need.", + "externalReferences": [ + { + "url": "https://github.com/javaparser/javaparser-core", + "type": "website" + }, + { + "url": "https://github.com/javaparser/javaparser/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/javaparser/javaparser.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AXZFIYU2IAIAC", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.3.9:1.0.5", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "jdeparser", + "purl": "pkg:maven/org.jboss.jdeparser/jdeparser@2.0.3.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.jboss.jdeparser", + "bom-ref": "pkg:maven/org.jboss.jdeparser/jdeparser@2.0.3.Final-redhat-00001?type=jar", + "version": "2.0.3.Final-redhat-00001", + "licenses": [ + { + "license": { + "url": "http://repository.jboss.org/licenses/cc0-1.0.txt", + "name": "Public Domain" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Provides, via submodules, a base configuration for JBoss project builds, as well as a derived configuration supporting multi-release JARs", + "externalReferences": [ + { + "url": "http://www.jboss.org/jdeparser", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/jdeparser/jdeparser2.git", + "type": "vcs" + } + ] + }, + { + "name": "jsoup", + "purl": "pkg:maven/org.jsoup/jsoup@1.15.3.redhat-00003?type=jar", + "type": "library", + "group": "org.jsoup", + "bom-ref": "pkg:maven/org.jsoup/jsoup@1.15.3.redhat-00003?type=jar", + "version": "1.15.3.redhat-00003", + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "jsoup is a Java library for working with real-world HTML. It provides a very convenient API for fetching URLs and extracting and manipulating data, using the best of HTML5 DOM methods and CSS selectors. jsoup implements the WHATWG HTML5 specification, and parses HTML to the same DOM as modern browsers do.", + "externalReferences": [ + { + "url": "https://jsoup.org/", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/jhy/jsoup/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/jhy/jsoup.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-funqy-knative-events", + "purl": "pkg:maven/io.quarkus/quarkus-funqy-knative-events@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-funqy-knative-events@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Knative Events Binding for Quarkus Funqy framework", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-funqy-server-common", + "purl": "pkg:maven/io.quarkus/quarkus-funqy-server-common@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-funqy-server-common@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Quarkus Funqy Server Common framework", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-jackson", + "purl": "pkg:maven/io.quarkus/quarkus-jackson@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-jackson@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Jackson Databind support", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "jackson-datatype-jdk8", + "purl": "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jdk8@2.13.4.redhat-00004?type=jar", + "type": "library", + "group": "com.fasterxml.jackson.datatype", + "bom-ref": "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jdk8@2.13.4.redhat-00004?type=jar", + "version": "2.13.4.redhat-00004", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "1ffa097e3a88ae0b17fa3461f86b7107c18b97ec", + "url": "https://code.engineering.redhat.com/gerrit/FasterXML/jackson-modules-java8.git#2.13.4.redhat-00004" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Add-on module for Jackson (http://jackson.codehaus.org) to support JDK 8 data types.", + "externalReferences": [ + { + "url": "https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/FasterXML/jackson-modules-java8/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/FasterXML/jackson-modules-java8.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AVFSODCF7CAA4", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "jackson-module-parameter-names", + "purl": "pkg:maven/com.fasterxml.jackson.module/jackson-module-parameter-names@2.13.4.redhat-00004?type=jar", + "type": "library", + "group": "com.fasterxml.jackson.module", + "bom-ref": "pkg:maven/com.fasterxml.jackson.module/jackson-module-parameter-names@2.13.4.redhat-00004?type=jar", + "version": "2.13.4.redhat-00004", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "1ffa097e3a88ae0b17fa3461f86b7107c18b97ec", + "url": "https://code.engineering.redhat.com/gerrit/FasterXML/jackson-modules-java8.git#2.13.4.redhat-00004" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Add-on module for Jackson (http://jackson.codehaus.org) to support introspection of method/constructor parameter names, without having to add explicit property name annotation.", + "externalReferences": [ + { + "url": "https://github.com/FasterXML/jackson-modules-java8/jackson-module-parameter-names", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/FasterXML/jackson-modules-java8/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/FasterXML/jackson-modules-java8.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AVFSODCF7CAA4", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-vertx-http", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-vertx-http@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Vert.x HTTP", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-security-runtime-spi", + "purl": "pkg:maven/io.quarkus/quarkus-security-runtime-spi@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-security-runtime-spi@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-security", + "purl": "pkg:maven/io.quarkus.security/quarkus-security@1.1.4.Final-redhat-00001?type=jar", + "type": "library", + "group": "io.quarkus.security", + "bom-ref": "pkg:maven/io.quarkus.security/quarkus-security@1.1.4.Final-redhat-00001?type=jar", + "version": "1.1.4.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "919cba6bc10fdd8777a0bc53a9bf207a3a03ce8a", + "url": "http://code.engineering.redhat.com/gerrit/quarkusio/quarkus-security.git#1.1.4.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Provides, via submodules, a base configuration for JBoss project builds, as well as a derived configuration supporting multi-release JARs", + "externalReferences": [ + { + "url": "http://www.jboss.org/quarkus-security", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "http://code.engineering.redhat.com/gerrit/quarkusio/quarkus-security.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AMLRMCG4OYQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.11-9-mvn3.8.1-gradle7.0.2:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-vertx", + "purl": "pkg:maven/io.quarkus/quarkus-vertx@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-vertx@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Write reactive applications with the Vert.x API", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "netty-codec-haproxy", + "purl": "pkg:maven/io.netty/netty-codec-haproxy@4.1.100.Final-redhat-00001?type=jar", + "type": "library", + "group": "io.netty", + "bom-ref": "pkg:maven/io.netty/netty-codec-haproxy@4.1.100.Final-redhat-00001?type=jar", + "version": "4.1.100.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "0ff281ddc94bdea956407aa94ddda3eefe1e9201", + "url": "https://code.engineering.redhat.com/gerrit/netty/netty.git#4.1.100.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Netty is an asynchronous event-driven network application framework for rapid development of maintainable high performance protocol servers and clients.", + "externalReferences": [ + { + "url": "https://netty.io/netty-codec-haproxy/", + "type": "website" + }, + { + "url": "https://issues.jboss.org/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/netty/netty.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A3X7AQ2N2MYAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-oraclejdk8u192-mvn3.6.3-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-netty", + "purl": "pkg:maven/io.quarkus/quarkus-netty@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-netty@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Netty is a non-blocking I/O client-server framework. Used by Quarkus as foundation layer.", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "brotli4j", + "purl": "pkg:maven/com.aayushatharva.brotli4j/brotli4j@1.12.0.redhat-00005?type=jar", + "type": "library", + "group": "com.aayushatharva.brotli4j", + "bom-ref": "pkg:maven/com.aayushatharva.brotli4j/brotli4j@1.12.0.redhat-00005?type=jar", + "version": "1.12.0.redhat-00005", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b35f9059df4a8ccc1a7f6f221bc3e9ed86677fe2", + "url": "https://code.engineering.redhat.com/gerrit/hyperxpro/Brotli4j.git#1.12.0.redhat-00005" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Brotli4j provides Brotli compression and decompression for Java.", + "externalReferences": [ + { + "url": "https://github.com/hyperxpro/Brotli4j/brotli4j", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/hyperxpro/Brotli4j.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A3X7AQ2N2MYAC", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j8-mvn3.6.3-netty-tcnative:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "native-linux-x86_64", + "purl": "pkg:maven/com.aayushatharva.brotli4j/native-linux-x86_64@1.12.0.redhat-00005?type=jar", + "type": "library", + "group": "com.aayushatharva.brotli4j", + "bom-ref": "pkg:maven/com.aayushatharva.brotli4j/native-linux-x86_64@1.12.0.redhat-00005?type=jar", + "version": "1.12.0.redhat-00005", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b35f9059df4a8ccc1a7f6f221bc3e9ed86677fe2", + "url": "https://code.engineering.redhat.com/gerrit/hyperxpro/Brotli4j.git#1.12.0.redhat-00005" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Brotli4j provides Brotli compression and decompression for Java.", + "externalReferences": [ + { + "url": "https://github.com/hyperxpro/Brotli4j/natives/native-linux-x86_64", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/hyperxpro/Brotli4j.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A3X7AQ2N2MYAC", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j8-mvn3.6.3-netty-tcnative:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "service", + "purl": "pkg:maven/com.aayushatharva.brotli4j/service@1.12.0.redhat-00005?type=jar", + "type": "library", + "group": "com.aayushatharva.brotli4j", + "bom-ref": "pkg:maven/com.aayushatharva.brotli4j/service@1.12.0.redhat-00005?type=jar", + "version": "1.12.0.redhat-00005", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b35f9059df4a8ccc1a7f6f221bc3e9ed86677fe2", + "url": "https://code.engineering.redhat.com/gerrit/hyperxpro/Brotli4j.git#1.12.0.redhat-00005" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Brotli4j provides Brotli compression and decompression for Java.", + "externalReferences": [ + { + "url": "https://github.com/hyperxpro/Brotli4j/service", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/hyperxpro/Brotli4j.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A3X7AQ2N2MYAC", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j8-mvn3.6.3-netty-tcnative:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-vertx-latebound-mdc-provider", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-latebound-mdc-provider@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-vertx-latebound-mdc-provider@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Quarkus Vert.x Late Bound MDC Provider", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-fault-tolerance-vertx", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-vertx@5.5.0.redhat-00002?type=jar", + "type": "library", + "group": "io.smallrye", + "bom-ref": "pkg:maven/io.smallrye/smallrye-fault-tolerance-vertx@5.5.0.redhat-00002?type=jar", + "version": "5.5.0.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "dc7f47e955424d789a4c7435724bd36670c1390d", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-fault-tolerance.git#5.5.0.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "SmallRye Build Parent POM", + "externalReferences": [ + { + "url": "http://smallrye.io/smallrye-fault-tolerance-implementation-parent/smallrye-fault-tolerance-vertx", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-fault-tolerance/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-fault-tolerance.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUOPPWKP3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.3", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-common-vertx-context", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-vertx-context@1.13.1.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye.common", + "bom-ref": "pkg:maven/io.smallrye.common/smallrye-common-vertx-context@1.13.1.redhat-00001?type=jar", + "version": "1.13.1.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "8a344873dd02ed0f6205dd90eab71ddfc5ef7c6d", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-common.git#1.13.1.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "A set of utility classes to ease the usage of Vert.x context locals and duplicated contexts.", + "externalReferences": [ + { + "url": "http://smallrye.io/smallrye-common-vertx-context", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-common/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-common.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/ATTXFTRCLVQAK", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-mutiny-vertx-core", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-core@2.27.0.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye.reactive", + "bom-ref": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-core@2.27.0.redhat-00001?type=jar", + "version": "2.27.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "109a2da366d4e52568be8ecbeafd802e9d1091fa", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-mutiny-vertx-bindings.git#2.27.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "SmallRye Build Parent POM", + "externalReferences": [ + { + "url": "https://smallrye.io/smallrye-mutiny-vertx-bindings/vertx-mutiny-clients/smallrye-mutiny-vertx-core", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-mutiny-vertx-bindings/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-mutiny-vertx-bindings.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU3MITW53VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-mutiny-vertx-runtime", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-runtime@2.27.0.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye.reactive", + "bom-ref": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-runtime@2.27.0.redhat-00001?type=jar", + "version": "2.27.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "109a2da366d4e52568be8ecbeafd802e9d1091fa", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-mutiny-vertx-bindings.git#2.27.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "SmallRye Build Parent POM", + "externalReferences": [ + { + "url": "https://smallrye.io/smallrye-mutiny-vertx-bindings/vertx-mutiny-clients/smallrye-mutiny-vertx-runtime", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-mutiny-vertx-bindings/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-mutiny-vertx-bindings.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU3MITW53VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "vertx-mutiny-generator", + "purl": "pkg:maven/io.smallrye.reactive/vertx-mutiny-generator@2.27.0.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye.reactive", + "bom-ref": "pkg:maven/io.smallrye.reactive/vertx-mutiny-generator@2.27.0.redhat-00001?type=jar", + "version": "2.27.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "109a2da366d4e52568be8ecbeafd802e9d1091fa", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-mutiny-vertx-bindings.git#2.27.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "SmallRye Build Parent POM", + "externalReferences": [ + { + "url": "https://smallrye.io/smallrye-mutiny-vertx-bindings/vertx-mutiny-generator", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-mutiny-vertx-bindings/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-mutiny-vertx-bindings.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU3MITW53VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "vertx-codegen", + "purl": "pkg:maven/io.vertx/vertx-codegen@4.3.4.redhat-00008?type=jar", + "type": "library", + "group": "io.vertx", + "bom-ref": "pkg:maven/io.vertx/vertx-codegen@4.3.4.redhat-00008?type=jar", + "version": "4.3.4.redhat-00008", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + }, + { + "license": { + "id": "EPL-1.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c2450d18983da45006f7983c37aaff8cd55d2589", + "url": "https://code.engineering.redhat.com/gerrit/vert-x3/vertx-codegen.git#vertx-4.3.4.GA-1" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Sonatype helps open source projects to set up Maven repositories on https://oss.sonatype.org/", + "externalReferences": [ + { + "url": "http://nexus.sonatype.org/oss-repository-hosting.html/vertx-parent/vertx-codegen", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/vert-x3/vertx-codegen.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AZB7PSY53RQAI", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-mutiny-vertx-web", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web@2.27.0.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye.reactive", + "bom-ref": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web@2.27.0.redhat-00001?type=jar", + "version": "2.27.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "109a2da366d4e52568be8ecbeafd802e9d1091fa", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-mutiny-vertx-bindings.git#2.27.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "SmallRye Build Parent POM", + "externalReferences": [ + { + "url": "https://smallrye.io/smallrye-mutiny-vertx-bindings/vertx-mutiny-clients/smallrye-mutiny-vertx-web", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-mutiny-vertx-bindings/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-mutiny-vertx-bindings.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU3MITW53VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-mutiny-vertx-auth-common", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-auth-common@2.27.0.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye.reactive", + "bom-ref": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-auth-common@2.27.0.redhat-00001?type=jar", + "version": "2.27.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "109a2da366d4e52568be8ecbeafd802e9d1091fa", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-mutiny-vertx-bindings.git#2.27.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "SmallRye Build Parent POM", + "externalReferences": [ + { + "url": "https://smallrye.io/smallrye-mutiny-vertx-bindings/vertx-mutiny-clients/smallrye-mutiny-vertx-auth-common", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-mutiny-vertx-bindings/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-mutiny-vertx-bindings.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU3MITW53VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-mutiny-vertx-bridge-common", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-bridge-common@2.27.0.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye.reactive", + "bom-ref": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-bridge-common@2.27.0.redhat-00001?type=jar", + "version": "2.27.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "109a2da366d4e52568be8ecbeafd802e9d1091fa", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-mutiny-vertx-bindings.git#2.27.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "SmallRye Build Parent POM", + "externalReferences": [ + { + "url": "https://smallrye.io/smallrye-mutiny-vertx-bindings/vertx-mutiny-clients/smallrye-mutiny-vertx-bridge-common", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-mutiny-vertx-bindings/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-mutiny-vertx-bindings.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU3MITW53VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-mutiny-vertx-uri-template", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-uri-template@2.27.0.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye.reactive", + "bom-ref": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-uri-template@2.27.0.redhat-00001?type=jar", + "version": "2.27.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "109a2da366d4e52568be8ecbeafd802e9d1091fa", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-mutiny-vertx-bindings.git#2.27.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "SmallRye Build Parent POM", + "externalReferences": [ + { + "url": "https://smallrye.io/smallrye-mutiny-vertx-bindings/vertx-mutiny-clients/smallrye-mutiny-vertx-uri-template", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-mutiny-vertx-bindings/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-mutiny-vertx-bindings.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU3MITW53VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "vertx-uri-template", + "purl": "pkg:maven/io.vertx/vertx-uri-template@4.3.4.redhat-00008?type=jar", + "type": "library", + "group": "io.vertx", + "bom-ref": "pkg:maven/io.vertx/vertx-uri-template@4.3.4.redhat-00008?type=jar", + "version": "4.3.4.redhat-00008", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + }, + { + "license": { + "id": "EPL-1.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "8b149fe810e39024789d04ecdb2daea3a63e148a", + "url": "https://code.engineering.redhat.com/gerrit/eclipse-vertx/vertx-uri-template.git#vertx-4.3.4.GA-1" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Sonatype helps open source projects to set up Maven repositories on https://oss.sonatype.org/", + "externalReferences": [ + { + "url": "http://nexus.sonatype.org/oss-repository-hosting.html/vertx-parent/vertx-ext/vertx-ext-parent/vertx-uri-template", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/eclipse-vertx/vertx-uri-template.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AZB7PSY53RQAU", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-mutiny-vertx-web-common", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web-common@2.27.0.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye.reactive", + "bom-ref": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web-common@2.27.0.redhat-00001?type=jar", + "version": "2.27.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "109a2da366d4e52568be8ecbeafd802e9d1091fa", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-mutiny-vertx-bindings.git#2.27.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "SmallRye Build Parent POM", + "externalReferences": [ + { + "url": "https://smallrye.io/smallrye-mutiny-vertx-bindings/vertx-mutiny-clients/smallrye-mutiny-vertx-web-common", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-mutiny-vertx-bindings/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-mutiny-vertx-bindings.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU3MITW53VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-funqy-knative-events-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-funqy-knative-events-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-funqy-knative-events-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-funqy-server-common-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-funqy-server-common-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-funqy-server-common-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-jackson-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-jackson-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-jackson-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-vertx-http-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-vertx-http-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-kubernetes-spi", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-spi@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-kubernetes-spi:2.13.9.Final-redhat-00003#1", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Extensions that provide Kubernetes native features should include this module and the corresponding BuildItems", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-vertx-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-vertx-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-netty-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-netty-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-netty-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-vertx-http-deployment-spi", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http-deployment-spi@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-vertx-http-deployment-spi@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "qute-core", + "purl": "pkg:maven/io.quarkus.qute/qute-core@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus.qute", + "bom-ref": "pkg:maven/io.quarkus.qute/qute-core@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Provides, via submodules, a base configuration for JBoss project builds, as well as a derived configuration supporting multi-release JARs", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.redhat.com/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-grpc", + "purl": "pkg:maven/io.quarkus/quarkus-grpc@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-grpc@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Serve and consume gRPC services", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "grpc-stub", + "purl": "pkg:maven/io.grpc/grpc-stub@1.49.0.redhat-00002?type=jar", + "type": "library", + "group": "io.grpc", + "bom-ref": "pkg:maven/io.grpc/grpc-stub@1.49.0.redhat-00002?type=jar", + "version": "1.49.0.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "f14fcfe356ca9b09a76b29bb44d5b316535caf68", + "url": "https://code.engineering.redhat.com/gerrit/grpc/grpc-java.git#1.49.0.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "gRPC: Stub", + "externalReferences": [ + { + "url": "https://github.com/grpc/grpc-java", + "type": "website" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/grpc/grpc-java.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU2DCQ2H3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.14-9-mvn3.8.4-gradle7.3.3:1.0.2", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "guava", + "purl": "pkg:maven/com.google.guava/guava@32.0.1.jre-redhat-00001?type=jar", + "type": "library", + "group": "com.google.guava", + "bom-ref": "pkg:maven/com.google.guava/guava@32.0.1.jre-redhat-00001?type=jar", + "version": "32.0.1.jre-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "52da9696c57a4beca17f092ec50d98f12264cb94", + "url": "https://code.engineering.redhat.com/gerrit/google/guava.git#32.0.1.jre-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Guava is a suite of core and expanded libraries that include utility classes, Google's collections, I/O classes, and much more.", + "externalReferences": [ + { + "url": "https://github.com/google/guava", + "type": "website" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AZY2CVKAC7AAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/google/guava/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/google/guava.git", + "type": "vcs" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.0:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "checker-qual", + "purl": "pkg:maven/org.checkerframework/checker-qual@3.25.0?type=jar", + "type": "library", + "group": "org.checkerframework", + "bom-ref": "pkg:maven/org.checkerframework/checker-qual@3.25.0?type=jar", + "version": "3.25.0", + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "publisher": "central", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "checker-qual contains annotations (type qualifiers) that a programmer writes to specify Java code for type-checking by the Checker Framework.", + "externalReferences": [ + { + "url": "https://checkerframework.org", + "type": "website" + }, + { + "url": "https://github.com/typetools/checker-framework", + "type": "vcs" + } + ] + }, + { + "name": "grpc-api", + "purl": "pkg:maven/io.grpc/grpc-api@1.49.0.redhat-00002?type=jar", + "type": "library", + "group": "io.grpc", + "bom-ref": "pkg:maven/io.grpc/grpc-api@1.49.0.redhat-00002?type=jar", + "version": "1.49.0.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "f14fcfe356ca9b09a76b29bb44d5b316535caf68", + "url": "https://code.engineering.redhat.com/gerrit/grpc/grpc-java.git#1.49.0.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "gRPC: API", + "externalReferences": [ + { + "url": "https://github.com/grpc/grpc-java", + "type": "website" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/grpc/grpc-java.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU2DCQ2H3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.14-9-mvn3.8.4-gradle7.3.3:1.0.2", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "jsr305", + "purl": "pkg:maven/com.google.code.findbugs/jsr305@3.0.2.redhat-00016?type=jar", + "type": "library", + "group": "com.google.code.findbugs", + "bom-ref": "pkg:maven/com.google.code.findbugs/jsr305@3.0.2.redhat-00016?type=jar", + "version": "3.0.2.redhat-00016", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "a60157b5d5eca4b73764fae5b48ac40cf34eff7d", + "url": "https://code.engineering.redhat.com/gerrit/jboss-mobile/jsr-305.git#3.0.2.redhat-00016" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "JSR305 Annotations for Findbugs", + "externalReferences": [ + { + "url": "http://findbugs.sourceforge.net/", + "type": "website" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/jboss-mobile/jsr-305.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A4A656NRYZQAK", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.6", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "grpc-context", + "purl": "pkg:maven/io.grpc/grpc-context@1.49.0.redhat-00002?type=jar", + "type": "library", + "group": "io.grpc", + "bom-ref": "pkg:maven/io.grpc/grpc-context@1.49.0.redhat-00002?type=jar", + "version": "1.49.0.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "f14fcfe356ca9b09a76b29bb44d5b316535caf68", + "url": "https://code.engineering.redhat.com/gerrit/grpc/grpc-java.git#1.49.0.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "gRPC: Context", + "externalReferences": [ + { + "url": "https://github.com/grpc/grpc-java", + "type": "website" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/grpc/grpc-java.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU2DCQ2H3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.14-9-mvn3.8.4-gradle7.3.3:1.0.2", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-grpc-api", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-api@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-grpc-api@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-grpc-common", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-common@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-grpc-common@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "vertx-grpc", + "purl": "pkg:maven/io.vertx/vertx-grpc@4.3.4.redhat-00008?type=jar", + "type": "library", + "group": "io.vertx", + "bom-ref": "pkg:maven/io.vertx/vertx-grpc@4.3.4.redhat-00008?type=jar", + "version": "4.3.4.redhat-00008", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + }, + { + "license": { + "id": "EPL-1.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "123941057b6c3c75e651a8cc6ab96482e4a0f8b8", + "url": "https://code.engineering.redhat.com/gerrit/vert-x3/vertx-grpc.git#vertx-4.3.4.GA-1" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Sonatype helps open source projects to set up Maven repositories on https://oss.sonatype.org/", + "externalReferences": [ + { + "url": "http://nexus.sonatype.org/oss-repository-hosting.html/vertx-parent/vertx-ext/vertx-ext-parent/vertx-grpc-parent/vertx-grpc", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/vert-x3/vertx-grpc.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AZB7PSY53RQAM", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "grpc-netty", + "purl": "pkg:maven/io.grpc/grpc-netty@1.49.0.redhat-00002?type=jar", + "type": "library", + "group": "io.grpc", + "bom-ref": "pkg:maven/io.grpc/grpc-netty@1.49.0.redhat-00002?type=jar", + "version": "1.49.0.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "f14fcfe356ca9b09a76b29bb44d5b316535caf68", + "url": "https://code.engineering.redhat.com/gerrit/grpc/grpc-java.git#1.49.0.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "gRPC: Netty", + "externalReferences": [ + { + "url": "https://github.com/grpc/grpc-java", + "type": "website" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/grpc/grpc-java.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU2DCQ2H3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.14-9-mvn3.8.4-gradle7.3.3:1.0.2", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "grpc-core", + "purl": "pkg:maven/io.grpc/grpc-core@1.49.0.redhat-00002?type=jar", + "type": "library", + "group": "io.grpc", + "bom-ref": "pkg:maven/io.grpc/grpc-core@1.49.0.redhat-00002?type=jar", + "version": "1.49.0.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "f14fcfe356ca9b09a76b29bb44d5b316535caf68", + "url": "https://code.engineering.redhat.com/gerrit/grpc/grpc-java.git#1.49.0.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "gRPC: Core", + "externalReferences": [ + { + "url": "https://github.com/grpc/grpc-java", + "type": "website" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/grpc/grpc-java.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU2DCQ2H3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.14-9-mvn3.8.4-gradle7.3.3:1.0.2", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "gson", + "purl": "pkg:maven/com.google.code.gson/gson@2.9.1.redhat-00003?type=jar", + "type": "library", + "group": "com.google.code.gson", + "bom-ref": "pkg:maven/com.google.code.gson/gson@2.9.1.redhat-00003?type=jar", + "version": "2.9.1.redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "21505749fefe22e61e66887040e9de1d4f51917f", + "url": "https://code.engineering.redhat.com/gerrit/google/gson.git#2.9.1.redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Gson JSON library", + "externalReferences": [ + { + "url": "https://github.com/google/gson/gson", + "type": "website" + }, + { + "url": "https://github.com/google/gson/issues", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/google/gson.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AXZFIYU6AAICO", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.0-gradle6.3:1.0.8", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "perfmark-api", + "purl": "pkg:maven/io.perfmark/perfmark-api@0.25.0?type=jar", + "type": "library", + "group": "io.perfmark", + "bom-ref": "pkg:maven/io.perfmark/perfmark-api@0.25.0?type=jar", + "version": "0.25.0", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "central", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "PerfMark API", + "externalReferences": [ + { + "url": "https://github.com/perfmark/perfmark", + "type": "website" + }, + { + "url": "https://github.com/perfmark/perfmark", + "type": "vcs" + } + ] + }, + { + "name": "grpc-protobuf", + "purl": "pkg:maven/io.grpc/grpc-protobuf@1.49.0.redhat-00002?type=jar", + "type": "library", + "group": "io.grpc", + "bom-ref": "pkg:maven/io.grpc/grpc-protobuf@1.49.0.redhat-00002?type=jar", + "version": "1.49.0.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "f14fcfe356ca9b09a76b29bb44d5b316535caf68", + "url": "https://code.engineering.redhat.com/gerrit/grpc/grpc-java.git#1.49.0.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "gRPC: Protobuf", + "externalReferences": [ + { + "url": "https://github.com/grpc/grpc-java", + "type": "website" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/grpc/grpc-java.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU2DCQ2H3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.14-9-mvn3.8.4-gradle7.3.3:1.0.2", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "proto-google-common-protos", + "purl": "pkg:maven/com.google.api.grpc/proto-google-common-protos@2.9.2.redhat-00004?type=jar", + "type": "library", + "group": "com.google.api.grpc", + "bom-ref": "pkg:maven/com.google.api.grpc/proto-google-common-protos@2.9.2.redhat-00004?type=jar", + "version": "2.9.2.redhat-00004", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "d77d242639e900a98cfb6db32f3b0bcc00619381", + "url": "https://code.engineering.redhat.com/gerrit/googleapis/java-common-protos.git#2.9.2.redhat-00004" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "PROTO library for proto-google-common-protos", + "externalReferences": [ + { + "url": "https://github.com/googleapis/java-iam/proto-google-common-protos", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/googleapis/java-common-protos/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/googleapis/java-common-protos.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AXZFIYU6IAICE", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.3.9:1.0.5", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "protobuf-java", + "purl": "pkg:maven/com.google.protobuf/protobuf-java@3.19.6.redhat-00003?type=jar", + "type": "library", + "group": "com.google.protobuf", + "bom-ref": "pkg:maven/com.google.protobuf/protobuf-java@3.19.6.redhat-00003?type=jar", + "version": "3.19.6.redhat-00003", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "ec2abdbdb4b16e0875ccd943be16225c40f2534d", + "url": "https://code.engineering.redhat.com/gerrit/protocolbuffers/protobuf.git#3.19.6.redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Core Protocol Buffers library. Protocol Buffers are a way of encoding structured data in an efficient yet extensible format.", + "externalReferences": [ + { + "url": "https://developers.google.com/protocol-buffers/protobuf-java/", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.redhat.com/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/protocolbuffers/protobuf.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AX6MT5RFQAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.5", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "grpc-protobuf-lite", + "purl": "pkg:maven/io.grpc/grpc-protobuf-lite@1.49.0.redhat-00002?type=jar", + "type": "library", + "group": "io.grpc", + "bom-ref": "pkg:maven/io.grpc/grpc-protobuf-lite@1.49.0.redhat-00002?type=jar", + "version": "1.49.0.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "f14fcfe356ca9b09a76b29bb44d5b316535caf68", + "url": "https://code.engineering.redhat.com/gerrit/grpc/grpc-java.git#1.49.0.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "gRPC: Protobuf Lite", + "externalReferences": [ + { + "url": "https://github.com/grpc/grpc-java", + "type": "website" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/grpc/grpc-java.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU2DCQ2H3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.14-9-mvn3.8.4-gradle7.3.3:1.0.2", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-grpc-stubs", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-stubs@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-grpc-stubs@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-grpc-codegen", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-codegen@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-grpc-codegen@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "protobuf-java-util", + "purl": "pkg:maven/com.google.protobuf/protobuf-java-util@3.19.6.redhat-00003?type=jar", + "type": "library", + "group": "com.google.protobuf", + "bom-ref": "pkg:maven/com.google.protobuf/protobuf-java-util@3.19.6.redhat-00003?type=jar", + "version": "3.19.6.redhat-00003", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "ec2abdbdb4b16e0875ccd943be16225c40f2534d", + "url": "https://code.engineering.redhat.com/gerrit/protocolbuffers/protobuf.git#3.19.6.redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Utilities for Protocol Buffers", + "externalReferences": [ + { + "url": "https://developers.google.com/protocol-buffers/protobuf-java-util/", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.redhat.com/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/protocolbuffers/protobuf.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AX6MT5RFQAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.5", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "j2objc-annotations", + "purl": "pkg:maven/com.google.j2objc/j2objc-annotations@2.8.0.redhat-00002?type=jar", + "type": "library", + "group": "com.google.j2objc", + "bom-ref": "pkg:maven/com.google.j2objc/j2objc-annotations@2.8.0.redhat-00002?type=jar", + "version": "2.8.0.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "1abc6f75133c83c2841e577735159d4122b11b46", + "url": "https://code.engineering.redhat.com/gerrit/j2objc.git#2.8.0.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "A set of annotations that provide additional information to the J2ObjC translator to modify the result of translation.", + "externalReferences": [ + { + "url": "https://github.com/google/j2objc/", + "type": "website" + }, + { + "url": "https://issues.jboss.org/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/j2objc.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A2YRVMQ62EQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.5.4-golang-nodejs6-npm3:1.0.7", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "protoc", + "purl": "pkg:maven/com.google.protobuf/protoc@3.19.6?classifier=linux-aarch_64&type=exe", + "type": "library", + "group": "com.google.protobuf", + "bom-ref": "pkg:maven/com.google.protobuf/protoc@3.19.6?classifier=linux-aarch_64&type=exe", + "version": "3.19.6", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + } + ], + "publisher": "Google", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Protobuf Compiler (protoc) is a compiler for .proto files. It generates language-specific code for Protobuf messages and RPC interfaces.", + "externalReferences": [ + { + "url": "https://developers.google.com/protocol-buffers/", + "type": "website" + }, + { + "url": "dav:https://google-maven-repository.googlecode.com/svn/repository/", + "type": "distribution" + }, + { + "url": "https://github.com/protocolbuffers/protobuf", + "type": "vcs" + } + ] + }, + { + "name": "protoc", + "purl": "pkg:maven/com.google.protobuf/protoc@3.19.6?classifier=linux-x86_32&type=exe", + "type": "library", + "group": "com.google.protobuf", + "bom-ref": "pkg:maven/com.google.protobuf/protoc@3.19.6?classifier=linux-x86_32&type=exe", + "version": "3.19.6", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + } + ], + "publisher": "Google", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Protobuf Compiler (protoc) is a compiler for .proto files. It generates language-specific code for Protobuf messages and RPC interfaces.", + "externalReferences": [ + { + "url": "https://developers.google.com/protocol-buffers/", + "type": "website" + }, + { + "url": "dav:https://google-maven-repository.googlecode.com/svn/repository/", + "type": "distribution" + }, + { + "url": "https://github.com/protocolbuffers/protobuf", + "type": "vcs" + } + ] + }, + { + "name": "protoc", + "purl": "pkg:maven/com.google.protobuf/protoc@3.19.6?classifier=linux-x86_64&type=exe", + "type": "library", + "group": "com.google.protobuf", + "bom-ref": "pkg:maven/com.google.protobuf/protoc@3.19.6?classifier=linux-x86_64&type=exe", + "version": "3.19.6", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + } + ], + "publisher": "Google", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Protobuf Compiler (protoc) is a compiler for .proto files. It generates language-specific code for Protobuf messages and RPC interfaces.", + "externalReferences": [ + { + "url": "https://developers.google.com/protocol-buffers/", + "type": "website" + }, + { + "url": "dav:https://google-maven-repository.googlecode.com/svn/repository/", + "type": "distribution" + }, + { + "url": "https://github.com/protocolbuffers/protobuf", + "type": "vcs" + } + ] + }, + { + "name": "protoc", + "purl": "pkg:maven/com.google.protobuf/protoc@3.19.6?classifier=osx-aarch_64&type=exe", + "type": "library", + "group": "com.google.protobuf", + "bom-ref": "pkg:maven/com.google.protobuf/protoc@3.19.6?classifier=osx-aarch_64&type=exe", + "version": "3.19.6", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + } + ], + "publisher": "Google", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Protobuf Compiler (protoc) is a compiler for .proto files. It generates language-specific code for Protobuf messages and RPC interfaces.", + "externalReferences": [ + { + "url": "https://developers.google.com/protocol-buffers/", + "type": "website" + }, + { + "url": "dav:https://google-maven-repository.googlecode.com/svn/repository/", + "type": "distribution" + }, + { + "url": "https://github.com/protocolbuffers/protobuf", + "type": "vcs" + } + ] + }, + { + "name": "protoc", + "purl": "pkg:maven/com.google.protobuf/protoc@3.19.6?classifier=osx-x86_64&type=exe", + "type": "library", + "group": "com.google.protobuf", + "bom-ref": "pkg:maven/com.google.protobuf/protoc@3.19.6?classifier=osx-x86_64&type=exe", + "version": "3.19.6", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + } + ], + "publisher": "Google", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Protobuf Compiler (protoc) is a compiler for .proto files. It generates language-specific code for Protobuf messages and RPC interfaces.", + "externalReferences": [ + { + "url": "https://developers.google.com/protocol-buffers/", + "type": "website" + }, + { + "url": "dav:https://google-maven-repository.googlecode.com/svn/repository/", + "type": "distribution" + }, + { + "url": "https://github.com/protocolbuffers/protobuf", + "type": "vcs" + } + ] + }, + { + "name": "protoc", + "purl": "pkg:maven/com.google.protobuf/protoc@3.19.6?classifier=windows-x86_32&type=exe", + "type": "library", + "group": "com.google.protobuf", + "bom-ref": "pkg:maven/com.google.protobuf/protoc@3.19.6?classifier=windows-x86_32&type=exe", + "version": "3.19.6", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + } + ], + "publisher": "Google", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Protobuf Compiler (protoc) is a compiler for .proto files. It generates language-specific code for Protobuf messages and RPC interfaces.", + "externalReferences": [ + { + "url": "https://developers.google.com/protocol-buffers/", + "type": "website" + }, + { + "url": "dav:https://google-maven-repository.googlecode.com/svn/repository/", + "type": "distribution" + }, + { + "url": "https://github.com/protocolbuffers/protobuf", + "type": "vcs" + } + ] + }, + { + "name": "protoc", + "purl": "pkg:maven/com.google.protobuf/protoc@3.19.6?classifier=windows-x86_64&type=exe", + "type": "library", + "group": "com.google.protobuf", + "bom-ref": "pkg:maven/com.google.protobuf/protoc@3.19.6?classifier=windows-x86_64&type=exe", + "version": "3.19.6", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + } + ], + "publisher": "Google", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Protobuf Compiler (protoc) is a compiler for .proto files. It generates language-specific code for Protobuf messages and RPC interfaces.", + "externalReferences": [ + { + "url": "https://developers.google.com/protocol-buffers/", + "type": "website" + }, + { + "url": "dav:https://google-maven-repository.googlecode.com/svn/repository/", + "type": "distribution" + }, + { + "url": "https://github.com/protocolbuffers/protobuf", + "type": "vcs" + } + ] + }, + { + "name": "protoc-gen-grpc-java", + "purl": "pkg:maven/io.grpc/protoc-gen-grpc-java@1.49.0?classifier=linux-aarch_64&type=exe", + "type": "library", + "group": "io.grpc", + "bom-ref": "pkg:maven/io.grpc/protoc-gen-grpc-java@1.49.0?classifier=linux-aarch_64&type=exe", + "version": "1.49.0", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "central", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The protoc plugin for gRPC Java", + "externalReferences": [ + { + "url": "https://github.com/grpc/grpc-java", + "type": "website" + }, + { + "url": "https://github.com/grpc/grpc-java", + "type": "vcs" + } + ] + }, + { + "name": "protoc-gen-grpc-java", + "purl": "pkg:maven/io.grpc/protoc-gen-grpc-java@1.49.0?classifier=linux-x86_32&type=exe", + "type": "library", + "group": "io.grpc", + "bom-ref": "pkg:maven/io.grpc/protoc-gen-grpc-java@1.49.0?classifier=linux-x86_32&type=exe", + "version": "1.49.0", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "central", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The protoc plugin for gRPC Java", + "externalReferences": [ + { + "url": "https://github.com/grpc/grpc-java", + "type": "website" + }, + { + "url": "https://github.com/grpc/grpc-java", + "type": "vcs" + } + ] + }, + { + "name": "protoc-gen-grpc-java", + "purl": "pkg:maven/io.grpc/protoc-gen-grpc-java@1.49.0?classifier=linux-x86_64&type=exe", + "type": "library", + "group": "io.grpc", + "bom-ref": "pkg:maven/io.grpc/protoc-gen-grpc-java@1.49.0?classifier=linux-x86_64&type=exe", + "version": "1.49.0", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "central", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The protoc plugin for gRPC Java", + "externalReferences": [ + { + "url": "https://github.com/grpc/grpc-java", + "type": "website" + }, + { + "url": "https://github.com/grpc/grpc-java", + "type": "vcs" + } + ] + }, + { + "name": "protoc-gen-grpc-java", + "purl": "pkg:maven/io.grpc/protoc-gen-grpc-java@1.49.0?classifier=osx-aarch_64&type=exe", + "type": "library", + "group": "io.grpc", + "bom-ref": "pkg:maven/io.grpc/protoc-gen-grpc-java@1.49.0?classifier=osx-aarch_64&type=exe", + "version": "1.49.0", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "central", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The protoc plugin for gRPC Java", + "externalReferences": [ + { + "url": "https://github.com/grpc/grpc-java", + "type": "website" + }, + { + "url": "https://github.com/grpc/grpc-java", + "type": "vcs" + } + ] + }, + { + "name": "protoc-gen-grpc-java", + "purl": "pkg:maven/io.grpc/protoc-gen-grpc-java@1.49.0?classifier=osx-x86_64&type=exe", + "type": "library", + "group": "io.grpc", + "bom-ref": "pkg:maven/io.grpc/protoc-gen-grpc-java@1.49.0?classifier=osx-x86_64&type=exe", + "version": "1.49.0", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "central", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The protoc plugin for gRPC Java", + "externalReferences": [ + { + "url": "https://github.com/grpc/grpc-java", + "type": "website" + }, + { + "url": "https://github.com/grpc/grpc-java", + "type": "vcs" + } + ] + }, + { + "name": "protoc-gen-grpc-java", + "purl": "pkg:maven/io.grpc/protoc-gen-grpc-java@1.49.0?classifier=windows-x86_32&type=exe", + "type": "library", + "group": "io.grpc", + "bom-ref": "pkg:maven/io.grpc/protoc-gen-grpc-java@1.49.0?classifier=windows-x86_32&type=exe", + "version": "1.49.0", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "central", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The protoc plugin for gRPC Java", + "externalReferences": [ + { + "url": "https://github.com/grpc/grpc-java", + "type": "website" + }, + { + "url": "https://github.com/grpc/grpc-java", + "type": "vcs" + } + ] + }, + { + "name": "protoc-gen-grpc-java", + "purl": "pkg:maven/io.grpc/protoc-gen-grpc-java@1.49.0?classifier=windows-x86_64&type=exe", + "type": "library", + "group": "io.grpc", + "bom-ref": "pkg:maven/io.grpc/protoc-gen-grpc-java@1.49.0?classifier=windows-x86_64&type=exe", + "version": "1.49.0", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "central", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The protoc plugin for gRPC Java", + "externalReferences": [ + { + "url": "https://github.com/grpc/grpc-java", + "type": "website" + }, + { + "url": "https://github.com/grpc/grpc-java", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-grpc-protoc-plugin", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-protoc-plugin@2.13.9.Final?classifier=shaded&type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-grpc-protoc-plugin@2.13.9.Final?classifier=shaded&type=jar", + "version": "2.13.9.Final", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "JBoss by Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://github.com/quarkusio/quarkus", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-smallrye-stork", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-stork@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-smallrye-stork@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Support for SmallRye Stork", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "stork-api", + "purl": "pkg:maven/io.smallrye.stork/stork-api@1.1.2.redhat-00002?type=jar", + "type": "library", + "group": "io.smallrye.stork", + "bom-ref": "pkg:maven/io.smallrye.stork/stork-api@1.1.2.redhat-00002?type=jar", + "version": "1.1.2.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "ed458121fc9a805d66af4b6295cd1d1104290de7", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-stork.git#1.1.2.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Main Stork API classes. You are likely to need `smallrye-stork-core` and not this module.", + "externalReferences": [ + { + "url": "http://smallrye.io/stork-api", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-stork/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-stork.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AXZFIYU4AAIBO", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.14-9-mx-mvn3.6.3:1.0.1", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "stork-core", + "purl": "pkg:maven/io.smallrye.stork/stork-core@1.1.2.redhat-00002?type=jar", + "type": "library", + "group": "io.smallrye.stork", + "bom-ref": "pkg:maven/io.smallrye.stork/stork-core@1.1.2.redhat-00002?type=jar", + "version": "1.1.2.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "ed458121fc9a805d66af4b6295cd1d1104290de7", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-stork.git#1.1.2.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "SmallRye Parent POM", + "externalReferences": [ + { + "url": "http://smallrye.io/stork-core", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-stork/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-stork.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AXZFIYU4AAIBO", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.14-9-mx-mvn3.6.3:1.0.1", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-grpc-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-grpc-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-grpc", + "purl": "pkg:maven/io.quarkus/quarkus-grpc@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-grpc:2.13.9.Final-redhat-00003#1", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Serve and consume gRPC services", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "grpc-stub", + "purl": "pkg:maven/io.grpc/grpc-stub@1.49.0.redhat-00002?type=jar", + "type": "library", + "group": "io.grpc", + "bom-ref": "i.g:grpc-stub:1.49.0.redhat-00002#1", + "version": "1.49.0.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "f14fcfe356ca9b09a76b29bb44d5b316535caf68", + "url": "https://code.engineering.redhat.com/gerrit/grpc/grpc-java.git#1.49.0.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "gRPC: Stub", + "externalReferences": [ + { + "url": "https://github.com/grpc/grpc-java", + "type": "website" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/grpc/grpc-java.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU2DCQ2H3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.14-9-mvn3.8.4-gradle7.3.3:1.0.2", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "grpc-api", + "purl": "pkg:maven/io.grpc/grpc-api@1.49.0.redhat-00002?type=jar", + "type": "library", + "group": "io.grpc", + "bom-ref": "i.g:grpc-api:1.49.0.redhat-00002#1", + "version": "1.49.0.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "f14fcfe356ca9b09a76b29bb44d5b316535caf68", + "url": "https://code.engineering.redhat.com/gerrit/grpc/grpc-java.git#1.49.0.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "gRPC: API", + "externalReferences": [ + { + "url": "https://github.com/grpc/grpc-java", + "type": "website" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/grpc/grpc-java.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU2DCQ2H3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.14-9-mvn3.8.4-gradle7.3.3:1.0.2", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-grpc-api", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-api@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-grpc-api:2.13.9.Final-redhat-00003#1", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-grpc-common", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-common@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-grpc-common:2.13.9.Final-redhat-00003#1", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "vertx-grpc", + "purl": "pkg:maven/io.vertx/vertx-grpc@4.3.4.redhat-00008?type=jar", + "type": "library", + "group": "io.vertx", + "bom-ref": "i.v:vertx-grpc:4.3.4.redhat-00008#1", + "version": "4.3.4.redhat-00008", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + }, + { + "license": { + "id": "EPL-1.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "123941057b6c3c75e651a8cc6ab96482e4a0f8b8", + "url": "https://code.engineering.redhat.com/gerrit/vert-x3/vertx-grpc.git#vertx-4.3.4.GA-1" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Sonatype helps open source projects to set up Maven repositories on https://oss.sonatype.org/", + "externalReferences": [ + { + "url": "http://nexus.sonatype.org/oss-repository-hosting.html/vertx-parent/vertx-ext/vertx-ext-parent/vertx-grpc-parent/vertx-grpc", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/vert-x3/vertx-grpc.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AZB7PSY53RQAM", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "grpc-netty", + "purl": "pkg:maven/io.grpc/grpc-netty@1.49.0.redhat-00002?type=jar", + "type": "library", + "group": "io.grpc", + "bom-ref": "i.g:grpc-netty:1.49.0.redhat-00002#1", + "version": "1.49.0.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "f14fcfe356ca9b09a76b29bb44d5b316535caf68", + "url": "https://code.engineering.redhat.com/gerrit/grpc/grpc-java.git#1.49.0.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "gRPC: Netty", + "externalReferences": [ + { + "url": "https://github.com/grpc/grpc-java", + "type": "website" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/grpc/grpc-java.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU2DCQ2H3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.14-9-mvn3.8.4-gradle7.3.3:1.0.2", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "grpc-core", + "purl": "pkg:maven/io.grpc/grpc-core@1.49.0.redhat-00002?type=jar", + "type": "library", + "group": "io.grpc", + "bom-ref": "i.g:grpc-core:1.49.0.redhat-00002#1", + "version": "1.49.0.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "f14fcfe356ca9b09a76b29bb44d5b316535caf68", + "url": "https://code.engineering.redhat.com/gerrit/grpc/grpc-java.git#1.49.0.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "gRPC: Core", + "externalReferences": [ + { + "url": "https://github.com/grpc/grpc-java", + "type": "website" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/grpc/grpc-java.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU2DCQ2H3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.14-9-mvn3.8.4-gradle7.3.3:1.0.2", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "grpc-protobuf", + "purl": "pkg:maven/io.grpc/grpc-protobuf@1.49.0.redhat-00002?type=jar", + "type": "library", + "group": "io.grpc", + "bom-ref": "i.g:grpc-protobuf:1.49.0.redhat-00002#1", + "version": "1.49.0.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "f14fcfe356ca9b09a76b29bb44d5b316535caf68", + "url": "https://code.engineering.redhat.com/gerrit/grpc/grpc-java.git#1.49.0.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "gRPC: Protobuf", + "externalReferences": [ + { + "url": "https://github.com/grpc/grpc-java", + "type": "website" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/grpc/grpc-java.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU2DCQ2H3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.14-9-mvn3.8.4-gradle7.3.3:1.0.2", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "grpc-protobuf-lite", + "purl": "pkg:maven/io.grpc/grpc-protobuf-lite@1.49.0.redhat-00002?type=jar", + "type": "library", + "group": "io.grpc", + "bom-ref": "i.g:grpc-protobuf-lite:1.49.0.redhat-00002#1", + "version": "1.49.0.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "f14fcfe356ca9b09a76b29bb44d5b316535caf68", + "url": "https://code.engineering.redhat.com/gerrit/grpc/grpc-java.git#1.49.0.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "gRPC: Protobuf Lite", + "externalReferences": [ + { + "url": "https://github.com/grpc/grpc-java", + "type": "website" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/grpc/grpc-java.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU2DCQ2H3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.14-9-mvn3.8.4-gradle7.3.3:1.0.2", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-grpc-stubs", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-stubs@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-grpc-stubs:2.13.9.Final-redhat-00003#1", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-grpc-codegen", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-codegen@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-grpc-codegen:2.13.9.Final-redhat-00003#1", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "protobuf-java-util", + "purl": "pkg:maven/com.google.protobuf/protobuf-java-util@3.19.6.redhat-00003?type=jar", + "type": "library", + "group": "com.google.protobuf", + "bom-ref": "c.g.p:protobuf-java-util:3.19.6.redhat-00003#1", + "version": "3.19.6.redhat-00003", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "ec2abdbdb4b16e0875ccd943be16225c40f2534d", + "url": "https://code.engineering.redhat.com/gerrit/protocolbuffers/protobuf.git#3.19.6.redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Utilities for Protocol Buffers", + "externalReferences": [ + { + "url": "https://developers.google.com/protocol-buffers/protobuf-java-util/", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.redhat.com/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/protocolbuffers/protobuf.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AX6MT5RFQAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.5", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-grpc-common-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-grpc-common-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-grpc-common-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-smallrye-stork-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-stork-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-smallrye-stork-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-hibernate-orm", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-hibernate-orm@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Define your persistent model with Hibernate ORM and JPA", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "jakarta.persistence-api", + "purl": "pkg:maven/jakarta.persistence/jakarta.persistence-api@2.2.3.redhat-00001?type=jar", + "type": "library", + "group": "jakarta.persistence", + "bom-ref": "pkg:maven/jakarta.persistence/jakarta.persistence-api@2.2.3.redhat-00001?type=jar", + "version": "2.2.3.redhat-00001", + "licenses": [ + { + "license": { + "id": "EPL-2.0" + } + }, + { + "license": { + "id": "BSD-3-Clause" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "1e84ac7a53aac9915dfe7b82267440b008b59769", + "url": "http://code.engineering.redhat.com/gerrit/eclipse-ee4j/jpa-api.git#2.2.3.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Provides, via submodules, a base configuration for JBoss project builds, as well as a derived configuration supporting multi-release JARs", + "externalReferences": [ + { + "url": "https://github.com/eclipse-ee4j/jpa-api", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/eclipse-ee4j/jpa-api/issues", + "type": "issue-tracker" + }, + { + "url": "https://dev.eclipse.org/mhonarc/lists/jpa-dev/", + "type": "mailing-list" + }, + { + "url": "http://code.engineering.redhat.com/gerrit/eclipse-ee4j/jpa-api.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/32622", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.3.9:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "jaxb-runtime", + "purl": "pkg:maven/org.glassfish.jaxb/jaxb-runtime@2.3.3.b02-redhat-00004?type=jar", + "type": "library", + "group": "org.glassfish.jaxb", + "bom-ref": "pkg:maven/org.glassfish.jaxb/jaxb-runtime@2.3.3.b02-redhat-00004?type=jar", + "version": "2.3.3.b02-redhat-00004", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "2c42db09964ddfcff0862f2ccd39b4c443ff89b4", + "url": "https://code.engineering.redhat.com/gerrit/eclipse-ee4j/jaxb-ri.git#2.3.3.b02-redhat-00004" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "JAXB (JSR 222) Reference Implementation", + "externalReferences": [ + { + "url": "https://javaee.github.io/jaxb-v2/jaxb-runtime-parent/jaxb-runtime/", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/eclipse-ee4j/jaxb-ri/issues", + "type": "issue-tracker" + }, + { + "url": "https://dev.eclipse.org/mhonarc/lists/jaxb-dev", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/eclipse-ee4j/jaxb-ri.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AYQR7DK2TRQBI", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "jakarta.activation", + "purl": "pkg:maven/com.sun.activation/jakarta.activation@1.2.1.redhat-00005?type=jar", + "type": "library", + "group": "com.sun.activation", + "bom-ref": "pkg:maven/com.sun.activation/jakarta.activation@1.2.1.redhat-00005?type=jar", + "version": "1.2.1.redhat-00005", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "ac1068032a48dd7cdb5b9430a5649e39f0f4dde0", + "url": "https://code.engineering.redhat.com/gerrit/eclipse-ee4j/jaf.git#1.2.1.redhat-00005" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "JavaBeans Activation Framework", + "externalReferences": [ + { + "url": "https://github.com/eclipse-ee4j/jaf/jakarta.activation", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/eclipse-ee4j/jaf/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/eclipse-ee4j/jaf.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AYQU55M3LRQBC", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.3.9:1.0.5", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "istack-commons-runtime", + "purl": "pkg:maven/com.sun.istack/istack-commons-runtime@3.0.10.redhat-00003?type=jar", + "type": "library", + "group": "com.sun.istack", + "bom-ref": "pkg:maven/com.sun.istack/istack-commons-runtime@3.0.10.redhat-00003?type=jar", + "version": "3.0.10.redhat-00003", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "a0dbe23657cff07680017abf487546484cecf9ee", + "url": "https://code.engineering.redhat.com/gerrit/eclipse-ee4j/jaxb-istack-commons.git#3.0.10.redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "istack common utility code", + "externalReferences": [ + { + "url": "http://www.jboss.org/istack-commons/istack-commons-runtime", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/eclipse-ee4j/jaxb-istack-commons/issues", + "type": "issue-tracker" + }, + { + "url": "https://dev.eclipse.org/mhonarc/lists/jaxb-impl-dev", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/eclipse-ee4j/jaxb-istack-commons.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AYQR7DK2TRQBG", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.5", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "jakarta.xml.bind-api", + "purl": "pkg:maven/jakarta.xml.bind/jakarta.xml.bind-api@2.3.3.redhat-00003?type=jar", + "type": "library", + "group": "jakarta.xml.bind", + "bom-ref": "pkg:maven/jakarta.xml.bind/jakarta.xml.bind-api@2.3.3.redhat-00003?type=jar", + "version": "2.3.3.redhat-00003", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "0b00a7a83db6bad5572ff7a5ee2d0836d5521a12", + "url": "https://code.engineering.redhat.com/gerrit/eclipse-ee4j/jaxb-api.git#2.3.3.redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Jakarta XML Binding API", + "externalReferences": [ + { + "url": "https://github.com/eclipse-ee4j/jaxb-api/jakarta.xml.bind-api", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/eclipse-ee4j/jaxb-api/issues", + "type": "issue-tracker" + }, + { + "url": "https://dev.eclipse.org/mhonarc/lists/jaxb-dev", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/eclipse-ee4j/jaxb-api.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AXGXQDY4WSYAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.0:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "txw2", + "purl": "pkg:maven/org.glassfish.jaxb/txw2@2.3.3.b02-redhat-00004?type=jar", + "type": "library", + "group": "org.glassfish.jaxb", + "bom-ref": "pkg:maven/org.glassfish.jaxb/txw2@2.3.3.b02-redhat-00004?type=jar", + "version": "2.3.3.b02-redhat-00004", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "2c42db09964ddfcff0862f2ccd39b4c443ff89b4", + "url": "https://code.engineering.redhat.com/gerrit/eclipse-ee4j/jaxb-ri.git#2.3.3.b02-redhat-00004" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "TXW is a library that allows you to write XML documents.", + "externalReferences": [ + { + "url": "https://javaee.github.io/jaxb-v2/jaxb-txw-parent/txw2/", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/eclipse-ee4j/jaxb-ri/issues", + "type": "issue-tracker" + }, + { + "url": "https://dev.eclipse.org/mhonarc/lists/jaxb-dev", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/eclipse-ee4j/jaxb-ri.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AYQR7DK2TRQBI", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "hibernate-core", + "purl": "pkg:maven/org.hibernate/hibernate-core@5.6.15.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.hibernate", + "bom-ref": "pkg:maven/org.hibernate/hibernate-core@5.6.15.Final-redhat-00001?type=jar", + "version": "5.6.15.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "LGPL-2.1-only", + "url": "https://opensource.org/licenses/LGPL-2.1" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "06b4b5c97651f45271770644b035366c0f575b81", + "url": "https://code.engineering.redhat.com/gerrit/hibernate/hibernate-core.git#5.6.15.Final-redhat-00001-06b4b5c9" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Hibernate's core ORM functionality", + "externalReferences": [ + { + "url": "https://hibernate.org/orm", + "type": "website" + }, + { + "url": "https://hibernate.atlassian.net/browse/HHH", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/hibernate/hibernate-core.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A4YFKI3UFVIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.3.9-gradle6.8.3:1.0.7", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "antlr", + "purl": "pkg:maven/antlr/antlr@2.7.7.redhat-7?type=jar", + "type": "library", + "group": "antlr", + "bom-ref": "pkg:maven/antlr/antlr@2.7.7.redhat-7?type=jar", + "version": "2.7.7.redhat-7", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "A framework for constructing recognizers, compilers, and translators from grammatical descriptions containing Java, C#, C++, or Python actions.", + "externalReferences": [ + { + "url": "http://www.antlr.org/", + "type": "website" + }, + { + "url": "https://issues.jboss.org/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://git.app.eng.bos.redhat.com/antlr2", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + } + ] + }, + { + "name": "classmate", + "purl": "pkg:maven/com.fasterxml/classmate@1.5.1.redhat-00003?type=jar", + "type": "library", + "group": "com.fasterxml", + "bom-ref": "pkg:maven/com.fasterxml/classmate@1.5.1.redhat-00003?type=jar", + "version": "1.5.1.redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "3b0bb6692642989e391ac2233c94a40a55062c9a", + "url": "https://code.engineering.redhat.com/gerrit/java-classmate.git#1.5.1.redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Library for introspecting types with full generic information including resolving of field and method types.", + "externalReferences": [ + { + "url": "https://github.com/FasterXML/java-classmate", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/FasterXML/classmate/issues", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/java-classmate.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A2PW6YTTYHQDA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.3.9:1.0.5", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "javax.activation-api", + "purl": "pkg:maven/javax.activation/javax.activation-api@1.2.0.redhat-00002?type=jar", + "type": "library", + "group": "javax.activation", + "bom-ref": "pkg:maven/javax.activation/javax.activation-api@1.2.0.redhat-00002?type=jar", + "version": "1.2.0.redhat-00002", + "licenses": [ + { + "expression": "(CDDL-1.0 OR GPL-2.0-with-classpath-exception)" + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "JavaBeans Activation Framework API jar", + "externalReferences": [ + { + "url": "http://java.net/all/javax.activation-api/", + "type": "website" + }, + { + "url": "https://github.com/javaee/activation/issues", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/javaee/activation.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + } + ] + }, + { + "name": "javax.persistence-api", + "purl": "pkg:maven/javax.persistence/javax.persistence-api@2.2?type=jar", + "type": "library", + "group": "javax.persistence", + "bom-ref": "pkg:maven/javax.persistence/javax.persistence-api@2.2?type=jar", + "version": "2.2", + "licenses": [ + { + "license": { + "id": "EPL-1.0" + } + }, + { + "license": { + "id": "BSD-3-Clause" + } + } + ], + "publisher": "central", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Java(TM) Persistence API", + "externalReferences": [ + { + "url": "https://github.com/javaee/jpa-spec", + "type": "website" + }, + { + "url": "https://maven.java.net/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://github.com/javaee/jpa-spec/issues", + "type": "issue-tracker" + }, + { + "url": "https://javaee.groups.io/g/jpa-spec/topics", + "type": "mailing-list" + }, + { + "url": "https://github.com/javaee/jpa-spec", + "type": "vcs" + } + ] + }, + { + "name": "jaxb-api", + "purl": "pkg:maven/javax.xml.bind/jaxb-api@2.3.1.redhat-00002?type=jar", + "type": "library", + "group": "javax.xml.bind", + "bom-ref": "pkg:maven/javax.xml.bind/jaxb-api@2.3.1.redhat-00002?type=jar", + "version": "2.3.1.redhat-00002", + "licenses": [ + { + "license": { + "id": "CDDL-1.1" + } + }, + { + "license": { + "id": "GPL-2.0-with-classpath-exception" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "JAXB (JSR 222) API", + "externalReferences": [ + { + "url": "https://github.com/javaee/jaxb-spec/jaxb-api", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/javaee/jaxb-spec/issues", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/javaee/jaxb-spec.git", + "type": "vcs" + } + ] + }, + { + "name": "byte-buddy", + "purl": "pkg:maven/net.bytebuddy/byte-buddy@1.12.18.redhat-00004?type=jar", + "type": "library", + "group": "net.bytebuddy", + "bom-ref": "pkg:maven/net.bytebuddy/byte-buddy@1.12.18.redhat-00004?type=jar", + "version": "1.12.18.redhat-00004", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "dc9310ecfb3c4cc2ff11aade26150ede25c86c0d", + "url": "https://code.engineering.redhat.com/gerrit/raphw/byte-buddy.git#1.12.18.redhat-00004" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Byte Buddy is a Java library for creating Java classes at run time. This artifact is a build of Byte Buddy with all ASM dependencies repackaged into its own name space.", + "externalReferences": [ + { + "url": "https://bytebuddy.net/byte-buddy", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/raphw/byte-buddy/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/raphw/byte-buddy.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A2K3WDXTO5IAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3-ant1.10.9:1.0.1", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "hibernate-commons-annotations", + "purl": "pkg:maven/org.hibernate.common/hibernate-commons-annotations@5.1.2.Final-redhat-00006?type=jar", + "type": "library", + "group": "org.hibernate.common", + "bom-ref": "pkg:maven/org.hibernate.common/hibernate-commons-annotations@5.1.2.Final-redhat-00006?type=jar", + "version": "5.1.2.Final-redhat-00006", + "licenses": [ + { + "license": { + "id": "LGPL-2.1-only", + "url": "https://opensource.org/licenses/LGPL-2.1" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "3a541e282a3163dcf883f5133bb96f84f2467b2a", + "url": "https://code.engineering.redhat.com/gerrit/hibernate/hibernate-commons-annotations.git#5.1.2.Final-redhat-00006" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Common reflection code used in support of annotation processing", + "externalReferences": [ + { + "url": "http://hibernate.org", + "type": "website" + }, + { + "url": "https://hibernate.atlassian.net/browse/HCANN", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/hibernate/hibernate-commons-annotations.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AXZFIYU6IAIBY", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.3.9-gradle4.10:1.0.8", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "jboss-transaction-api_1.2_spec", + "purl": "pkg:maven/org.jboss.spec.javax.transaction/jboss-transaction-api_1.2_spec@1.1.1.Final?type=jar", + "type": "library", + "group": "org.jboss.spec.javax.transaction", + "bom-ref": "pkg:maven/org.jboss.spec.javax.transaction/jboss-transaction-api_1.2_spec@1.1.1.Final?type=jar", + "version": "1.1.1.Final", + "licenses": [ + { + "license": { + "url": "http://repository.jboss.org/licenses/cddl.txt", + "name": "Common Development and Distribution License" + } + }, + { + "license": { + "url": "http://repository.jboss.org/licenses/gpl-2.0-ce.txt", + "name": "GNU General Public License, Version 2 with the Classpath Exception" + } + } + ], + "publisher": "JBoss by Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The Java Transaction 1.2 API classes", + "externalReferences": [ + { + "url": "http://www.jboss.org/jboss-transaction-api_1.2_spec", + "type": "website" + }, + { + "url": "https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://github.com/jboss/jboss-transaction-api_spec", + "type": "vcs" + } + ] + }, + { + "name": "hibernate-graalvm", + "purl": "pkg:maven/org.hibernate/hibernate-graalvm@5.6.15.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.hibernate", + "bom-ref": "pkg:maven/org.hibernate/hibernate-graalvm@5.6.15.Final-redhat-00001?type=jar", + "version": "5.6.15.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "LGPL-2.1-only", + "url": "https://opensource.org/licenses/LGPL-2.1" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "06b4b5c97651f45271770644b035366c0f575b81", + "url": "https://code.engineering.redhat.com/gerrit/hibernate/hibernate-core.git#5.6.15.Final-redhat-00001-06b4b5c9" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Experimental extension to make it easier to compile applications into a GraalVM native image", + "externalReferences": [ + { + "url": "https://hibernate.org/orm", + "type": "website" + }, + { + "url": "https://hibernate.atlassian.net/browse/HHH", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/hibernate/hibernate-core.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A4YFKI3UFVIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.3.9-gradle6.8.3:1.0.7", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-local-cache", + "purl": "pkg:maven/org.hibernate/quarkus-local-cache@0.1.1.redhat-00002?type=jar", + "type": "library", + "group": "org.hibernate", + "bom-ref": "pkg:maven/org.hibernate/quarkus-local-cache@0.1.1.redhat-00002?type=jar", + "version": "0.1.1.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "859f75638840a8c28e7d89b6feb6932ec18fedf4", + "url": "https://code.engineering.redhat.com/gerrit/hibernate/quarkus-local-cache.git#0.1.1.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Local-only Hibernate Cache optimized for Quarkus", + "externalReferences": [ + { + "url": "https://github.com/hibernate/quarkus-local-cache/quarkus-local-cache", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/hibernate/quarkus-local-cache/issues", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/hibernate-dev/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/hibernate/quarkus-local-cache.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU7WQQ35O4QAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.3", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "jboss-jaxb-api_2.3_spec", + "purl": "pkg:maven/org.jboss.spec.javax.xml.bind/jboss-jaxb-api_2.3_spec@2.0.0.Final-redhat-00004?type=jar", + "type": "library", + "group": "org.jboss.spec.javax.xml.bind", + "bom-ref": "pkg:maven/org.jboss.spec.javax.xml.bind/jboss-jaxb-api_2.3_spec@2.0.0.Final-redhat-00004?type=jar", + "version": "2.0.0.Final-redhat-00004", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "03bdd413778222a27a91d928c0fd0b4f8f6bb983", + "url": "https://code.engineering.redhat.com/gerrit/jboss/jboss-jakarta-jaxb-api_spec.git#2.0.0.Final-redhat-00004" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Jakarta XML Binding API", + "externalReferences": [ + { + "url": "https://github.com/eclipse-ee4j/jaxb-api/jboss-jaxb-api_2.3_spec", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/eclipse-ee4j/jaxb-api/issues", + "type": "issue-tracker" + }, + { + "url": "https://dev.eclipse.org/mhonarc/lists/jaxb-dev", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/jboss/jboss-jakarta-jaxb-api_spec.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AYQU55M3LRQBM", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.3.9:1.0.5", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-hibernate-orm-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-hibernate-orm-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-hibernate-orm", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-hibernate-orm:2.13.9.Final-redhat-00003#1", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Define your persistent model with Hibernate ORM and JPA", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "jaxb-runtime", + "purl": "pkg:maven/org.glassfish.jaxb/jaxb-runtime@2.3.3.b02-redhat-00004?type=jar", + "type": "library", + "group": "org.glassfish.jaxb", + "bom-ref": "o.g.j:jaxb-runtime:2.3.3.b02-redhat-00004#1", + "version": "2.3.3.b02-redhat-00004", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "2c42db09964ddfcff0862f2ccd39b4c443ff89b4", + "url": "https://code.engineering.redhat.com/gerrit/eclipse-ee4j/jaxb-ri.git#2.3.3.b02-redhat-00004" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "JAXB (JSR 222) Reference Implementation", + "externalReferences": [ + { + "url": "https://javaee.github.io/jaxb-v2/jaxb-runtime-parent/jaxb-runtime/", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/eclipse-ee4j/jaxb-ri/issues", + "type": "issue-tracker" + }, + { + "url": "https://dev.eclipse.org/mhonarc/lists/jaxb-dev", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/eclipse-ee4j/jaxb-ri.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AYQR7DK2TRQBI", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "hibernate-core", + "purl": "pkg:maven/org.hibernate/hibernate-core@5.6.15.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.hibernate", + "bom-ref": "o.h:hibernate-core:5.6.15.Final-redhat-00001#1", + "version": "5.6.15.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "LGPL-2.1-only", + "url": "https://opensource.org/licenses/LGPL-2.1" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "06b4b5c97651f45271770644b035366c0f575b81", + "url": "https://code.engineering.redhat.com/gerrit/hibernate/hibernate-core.git#5.6.15.Final-redhat-00001-06b4b5c9" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Hibernate's core ORM functionality", + "externalReferences": [ + { + "url": "https://hibernate.org/orm", + "type": "website" + }, + { + "url": "https://hibernate.atlassian.net/browse/HHH", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/hibernate/hibernate-core.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A4YFKI3UFVIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.3.9-gradle6.8.3:1.0.7", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-local-cache", + "purl": "pkg:maven/org.hibernate/quarkus-local-cache@0.1.1.redhat-00002?type=jar", + "type": "library", + "group": "org.hibernate", + "bom-ref": "o.h:quarkus-local-cache:0.1.1.redhat-00002#1", + "version": "0.1.1.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "859f75638840a8c28e7d89b6feb6932ec18fedf4", + "url": "https://code.engineering.redhat.com/gerrit/hibernate/quarkus-local-cache.git#0.1.1.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Local-only Hibernate Cache optimized for Quarkus", + "externalReferences": [ + { + "url": "https://github.com/hibernate/quarkus-local-cache/quarkus-local-cache", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/hibernate/quarkus-local-cache/issues", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/hibernate-dev/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/hibernate/quarkus-local-cache.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU7WQQ35O4QAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.3", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-hibernate-orm-deployment-spi", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-deployment-spi@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-hibernate-orm-deployment-spi@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-panache-hibernate-common-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-panache-hibernate-common-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-panache-hibernate-common-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-panache-common-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-panache-common-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-panache-common-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-panache-common", + "purl": "pkg:maven/io.quarkus/quarkus-panache-common@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-panache-common@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "An opinionated approach to make Hibernate as easy as possible", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "jakarta.validation-api", + "purl": "pkg:maven/jakarta.validation/jakarta.validation-api@2.0.2.redhat-00007?type=jar", + "type": "library", + "group": "jakarta.validation", + "bom-ref": "pkg:maven/jakarta.validation/jakarta.validation-api@2.0.2.redhat-00007?type=jar", + "version": "2.0.2.redhat-00007", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "0be1b52c1815cd8010a4abe87fc30303ad5bc379", + "url": "https://code.engineering.redhat.com/gerrit/eclipse-ee4j/beanvalidation-api.git#2.0.2.redhat-00007" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Jakarta Bean Validation API", + "externalReferences": [ + { + "url": "https://beanvalidation.org", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://hibernate.atlassian.net/projects/BVAL/", + "type": "issue-tracker" + }, + { + "url": "https://dev.eclipse.org/mhonarc/lists/jakarta.ee-community/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/eclipse-ee4j/beanvalidation-api.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A3GTD26SKEQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.3.9-gcc-cpp-make:1.0.6", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-panache-hibernate-common", + "purl": "pkg:maven/io.quarkus/quarkus-panache-hibernate-common@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-panache-hibernate-common@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "An opinionated approach to make Hibernate as easy as possible", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-resteasy-reactive-server-spi-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-server-spi-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-server-spi-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-resteasy-reactive-spi-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-spi-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-spi-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "jboss-jaxrs-api_2.1_spec", + "purl": "pkg:maven/org.jboss.spec.javax.ws.rs/jboss-jaxrs-api_2.1_spec@2.0.1.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.jboss.spec.javax.ws.rs", + "bom-ref": "pkg:maven/org.jboss.spec.javax.ws.rs/jboss-jaxrs-api_2.1_spec@2.0.1.Final-redhat-00001?type=jar", + "version": "2.0.1.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "EPL-2.0" + } + }, + { + "license": { + "id": "GPL-2.0-with-classpath-exception" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c78a5704d1eb3891100c605c31605993d37a8cc9", + "url": "http://code.engineering.redhat.com/gerrit/jboss/jboss-jakarta-jaxrs-api_spec.git#2.0.1.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Jakarta API for RESTful Web Services", + "externalReferences": [ + { + "url": "http://www.jboss.org/jboss-jaxrs-api_2.1_spec", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "http://code.engineering.redhat.com/gerrit/jboss/jboss-jakarta-jaxrs-api_spec.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/34000", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.3.9:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "resteasy-reactive-processor", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-processor@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus.resteasy.reactive", + "bom-ref": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-processor@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Provides, via submodules, a base configuration for JBoss project builds, as well as a derived configuration supporting multi-release JARs", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.redhat.com/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "resteasy-reactive", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus.resteasy.reactive", + "bom-ref": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Provides, via submodules, a base configuration for JBoss project builds, as well as a derived configuration supporting multi-release JARs", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.redhat.com/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "resteasy-reactive-common", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-common@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus.resteasy.reactive", + "bom-ref": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-common@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Provides, via submodules, a base configuration for JBoss project builds, as well as a derived configuration supporting multi-release JARs", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.redhat.com/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "resteasy-reactive-common-types", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-common-types@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus.resteasy.reactive", + "bom-ref": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-common-types@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Provides, via submodules, a base configuration for JBoss project builds, as well as a derived configuration supporting multi-release JARs", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.redhat.com/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "jakarta.json", + "purl": "pkg:maven/org.glassfish/jakarta.json@1.1.6.redhat-00003?type=jar", + "type": "library", + "group": "org.glassfish", + "bom-ref": "pkg:maven/org.glassfish/jakarta.json@1.1.6.redhat-00003?type=jar", + "version": "1.1.6.redhat-00003", + "licenses": [ + { + "license": { + "id": "EPL-2.0", + "url": "https://www.eclipse.org/legal/epl-2.0" + } + }, + { + "license": { + "url": "https://projects.eclipse.org/license/secondary-gpl-2.0-cp", + "name": "GNU General Public License, version 2 with the GNU Classpath Exception" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "83609db577c435fb326d3570460561fd15e5e296", + "url": "http://code.engineering.redhat.com/gerrit/eclipse-ee4j/jsonp.git#1.1.6.redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Default provider for Jakarta JSON Processing", + "externalReferences": [ + { + "url": "https://github.com/eclipse-ee4j/jsonp", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/eclipse-ee4j/ee4j/issues", + "type": "issue-tracker" + }, + { + "url": "https://dev.eclipse.org/mhonarc/lists/jakarta.ee-community/", + "type": "mailing-list" + }, + { + "url": "http://code.engineering.redhat.com/gerrit/eclipse-ee4j/jsonp.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/60274", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.0:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "resteasy-reactive-common-processor", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-common-processor@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus.resteasy.reactive", + "bom-ref": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-common-processor@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Provides, via submodules, a base configuration for JBoss project builds, as well as a derived configuration supporting multi-release JARs", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.redhat.com/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-hibernate-orm-panache", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Simplify your persistence code for Hibernate ORM via the active record or the repository pattern", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-hibernate-orm-panache-common", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache-common@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache-common@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Hibernate ORM with Panache Common module", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-hibernate-orm-panache-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-hibernate-orm-panache-common-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache-common-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache-common-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-hibernate-orm-rest-data-panache", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-rest-data-panache@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-hibernate-orm-rest-data-panache@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Generate JAX-RS resources for your Hibernate Panache entities and repositories", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-rest-data-panache", + "purl": "pkg:maven/io.quarkus/quarkus-rest-data-panache@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-rest-data-panache@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-hal", + "purl": "pkg:maven/io.quarkus/quarkus-hal@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-hal@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Hypertext Application Language (HAL) support", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-hibernate-orm-rest-data-panache-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-rest-data-panache-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-hibernate-orm-rest-data-panache-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-rest-data-panache-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-rest-data-panache-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-rest-data-panache-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-hal-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-hal-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-hal-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-jsonb-spi", + "purl": "pkg:maven/io.quarkus/quarkus-jsonb-spi@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-jsonb-spi@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Artifact that provides BuildItems specific to JSON-B", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-resteasy-common-spi", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-common-spi@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-resteasy-common-spi@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-hibernate-reactive", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-reactive@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-hibernate-reactive@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "A reactive API for Hibernate ORM, supporting non-blocking database drivers and a reactive style of interaction with the database.", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-reactive-datasource", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-datasource@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-reactive-datasource@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Configure your reactive datasources", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "vertx-sql-client", + "purl": "pkg:maven/io.vertx/vertx-sql-client@4.3.4.redhat-00008?type=jar", + "type": "library", + "group": "io.vertx", + "bom-ref": "pkg:maven/io.vertx/vertx-sql-client@4.3.4.redhat-00008?type=jar", + "version": "4.3.4.redhat-00008", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "92b725d7e876e53d3fe8614229480e0f5bb289e7", + "url": "https://code.engineering.redhat.com/gerrit/eclipse-vertx/vertx-sql-client.git#vertx-4.3.4.GA-1" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The Reactive SQL Client", + "externalReferences": [ + { + "url": "https://github.com/eclipse-vertx/vertx-sql-client", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/eclipse-vertx/vertx-sql-client.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AZB7PSY53RQBM", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "hibernate-reactive-core", + "purl": "pkg:maven/org.hibernate.reactive/hibernate-reactive-core@1.1.8.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.hibernate.reactive", + "bom-ref": "pkg:maven/org.hibernate.reactive/hibernate-reactive-core@1.1.8.Final-redhat-00001?type=jar", + "version": "1.1.8.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "f993a68765909a2ba00394b49eb9ef81b93e8817", + "url": "https://code.engineering.redhat.com/gerrit/hibernate/hibernate-reactive.git#1.1.8.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The core module of Hibernate Reactive", + "externalReferences": [ + { + "url": "https://github.com/hibernate/hibernate-reactive", + "type": "website" + }, + { + "url": "https://github.com/hibernate/hibernate-reactive/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/hibernate/hibernate-reactive.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU3MPDNG3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.14-9-mvn3.8.4-gradle7.4.2:1.0.3", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-hibernate-reactive-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-reactive-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-hibernate-reactive-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-hibernate-reactive", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-reactive@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-hibernate-reactive:2.13.9.Final-redhat-00003#1", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "A reactive API for Hibernate ORM, supporting non-blocking database drivers and a reactive style of interaction with the database.", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "hibernate-reactive-core", + "purl": "pkg:maven/org.hibernate.reactive/hibernate-reactive-core@1.1.8.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.hibernate.reactive", + "bom-ref": "o.h.r:hibernate-reactive-core:1.1.8.Final-redhat-00001#1", + "version": "1.1.8.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "f993a68765909a2ba00394b49eb9ef81b93e8817", + "url": "https://code.engineering.redhat.com/gerrit/hibernate/hibernate-reactive.git#1.1.8.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The core module of Hibernate Reactive", + "externalReferences": [ + { + "url": "https://github.com/hibernate/hibernate-reactive", + "type": "website" + }, + { + "url": "https://github.com/hibernate/hibernate-reactive/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/hibernate/hibernate-reactive.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU3MPDNG3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.14-9-mvn3.8.4-gradle7.4.2:1.0.3", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-reactive-datasource-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-datasource-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-reactive-datasource-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-hibernate-search-orm-elasticsearch", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-search-orm-elasticsearch@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-hibernate-search-orm-elasticsearch@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Automatically index your Hibernate entities in Elasticsearch", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-elasticsearch-rest-client-common", + "purl": "pkg:maven/io.quarkus/quarkus-elasticsearch-rest-client-common@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-elasticsearch-rest-client-common@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Elasticsearch REST client common", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-apache-httpclient", + "purl": "pkg:maven/io.quarkus/quarkus-apache-httpclient@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-apache-httpclient@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Connect to HTTP resources using the Apache HttpClient", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "httpclient", + "purl": "pkg:maven/org.apache.httpcomponents/httpclient@4.5.13.redhat-00006?type=jar", + "type": "library", + "group": "org.apache.httpcomponents", + "bom-ref": "pkg:maven/org.apache.httpcomponents/httpclient@4.5.13.redhat-00006?type=jar", + "version": "4.5.13.redhat-00006", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "9dd2b5380d187926908ef7f895cfda6b75a01356", + "url": "https://code.engineering.redhat.com/gerrit/apache/httpclient.git#4.5.13.redhat-00006" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Apache HttpComponents Client", + "externalReferences": [ + { + "url": "http://hc.apache.org/httpcomponents-client", + "type": "website" + }, + { + "url": "http://issues.apache.org/jira/browse/HTTPCLIENT", + "type": "issue-tracker" + }, + { + "url": "http://mail-archives.apache.org/mod_mbox/hc-httpclient-users/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/apache/httpclient.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A2ZTSKSSSEQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.3.9:1.0.5", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "elasticsearch-rest-client", + "purl": "pkg:maven/org.elasticsearch.client/elasticsearch-rest-client@8.4.3.redhat-00002?type=jar", + "type": "library", + "group": "org.elasticsearch.client", + "bom-ref": "pkg:maven/org.elasticsearch.client/elasticsearch-rest-client@8.4.3.redhat-00002?type=jar", + "version": "8.4.3.redhat-00002", + "pedigree": { + "commits": [ + { + "uid": "0f70da5b794d79f46297f67ff7b4b8da923380f4", + "url": "https://code.engineering.redhat.com/gerrit/elastic/elasticsearch.git#8.4.3.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Elasticsearch subproject :client:rest", + "externalReferences": [ + { + "url": "https://code.engineering.redhat.com/gerrit/elastic/elasticsearch.git", + "type": "website" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/elastic/elasticsearch.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU72PG77G4QAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "httpasyncclient", + "purl": "pkg:maven/org.apache.httpcomponents/httpasyncclient@4.1.5.redhat-00004?type=jar", + "type": "library", + "group": "org.apache.httpcomponents", + "bom-ref": "pkg:maven/org.apache.httpcomponents/httpasyncclient@4.1.5.redhat-00004?type=jar", + "version": "4.1.5.redhat-00004", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b40ce74594109fe1ceacbae6a6f6a90eccbf02e8", + "url": "https://code.engineering.redhat.com/gerrit/apache/httpasyncclient.git#4.1.5.redhat-00004" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Apache HttpComponents AsyncClient", + "externalReferences": [ + { + "url": "http://hc.apache.org/httpcomponents-asyncclient", + "type": "website" + }, + { + "url": "http://issues.apache.org/jira/browse/HTTPASYNC", + "type": "issue-tracker" + }, + { + "url": "http://mail-archives.apache.org/mod_mbox/hc-httpclient-users/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/apache/httpasyncclient.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A2ZTWKLZKEQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.3.9-gcc-cpp-make:1.0.6", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "httpcore-nio", + "purl": "pkg:maven/org.apache.httpcomponents/httpcore-nio@4.4.15.redhat-00008?type=jar", + "type": "library", + "group": "org.apache.httpcomponents", + "bom-ref": "pkg:maven/org.apache.httpcomponents/httpcore-nio@4.4.15.redhat-00008?type=jar", + "version": "4.4.15.redhat-00008", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "37d01bc0da6a4539fc501865cc6e34bcd9121175", + "url": "https://code.engineering.redhat.com/gerrit/apache/httpcore.git#4.4.15.redhat-00008" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Apache HttpComponents Core (non-blocking I/O)", + "externalReferences": [ + { + "url": "http://hc.apache.org/httpcomponents-core-ga", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "http://issues.apache.org/jira/browse/HTTPCORE", + "type": "issue-tracker" + }, + { + "url": "http://mail-archives.apache.org/mod_mbox/hc-httpclient-users/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/apache/httpcore.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A3OFCG7J2MYDA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.3.9:1.0.5", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "elasticsearch-rest-client-sniffer", + "purl": "pkg:maven/org.elasticsearch.client/elasticsearch-rest-client-sniffer@8.4.3.redhat-00002?type=jar", + "type": "library", + "group": "org.elasticsearch.client", + "bom-ref": "pkg:maven/org.elasticsearch.client/elasticsearch-rest-client-sniffer@8.4.3.redhat-00002?type=jar", + "version": "8.4.3.redhat-00002", + "pedigree": { + "commits": [ + { + "uid": "0f70da5b794d79f46297f67ff7b4b8da923380f4", + "url": "https://code.engineering.redhat.com/gerrit/elastic/elasticsearch.git#8.4.3.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Elasticsearch subproject :client:sniffer", + "externalReferences": [ + { + "url": "https://code.engineering.redhat.com/gerrit/elastic/elasticsearch.git", + "type": "website" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/elastic/elasticsearch.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU72PG77G4QAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "hibernate-search-backend-elasticsearch", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-backend-elasticsearch@6.1.7.Final-redhat-00002?type=jar", + "type": "library", + "group": "org.hibernate.search", + "bom-ref": "pkg:maven/org.hibernate.search/hibernate-search-backend-elasticsearch@6.1.7.Final-redhat-00002?type=jar", + "version": "6.1.7.Final-redhat-00002", + "licenses": [ + { + "license": { + "id": "LGPL-2.1+", + "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "a627d652512d1db3e2bc2812bc7f9ee50e81f6bc", + "url": "https://code.engineering.redhat.com/gerrit/hibernate/hibernate-search.git#6.1.7.Final-redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Hibernate Search Backend relying on remote Elasticsearch clusters", + "externalReferences": [ + { + "url": "http://hibernate.org/search/hibernate-search-parent-public/hibernate-search-backend-elasticsearch/", + "type": "website" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AWOEXFNS23QAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://hibernate.atlassian.net/browse/HSEARCH", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/hibernate-dev/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/hibernate/hibernate-search.git", + "type": "vcs" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.14-9-mvn3.8.4-gradle7.4.2:1.0.2", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "hibernate-search-engine", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-engine@6.1.7.Final-redhat-00002?type=jar", + "type": "library", + "group": "org.hibernate.search", + "bom-ref": "pkg:maven/org.hibernate.search/hibernate-search-engine@6.1.7.Final-redhat-00002?type=jar", + "version": "6.1.7.Final-redhat-00002", + "licenses": [ + { + "license": { + "id": "LGPL-2.1+", + "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "a627d652512d1db3e2bc2812bc7f9ee50e81f6bc", + "url": "https://code.engineering.redhat.com/gerrit/hibernate/hibernate-search.git#6.1.7.Final-redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Hibernate Search engine, always required", + "externalReferences": [ + { + "url": "http://hibernate.org/search/hibernate-search-parent-public/hibernate-search-engine/", + "type": "website" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AWOEXFNS23QAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://hibernate.atlassian.net/browse/HSEARCH", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/hibernate-dev/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/hibernate/hibernate-search.git", + "type": "vcs" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.14-9-mvn3.8.4-gradle7.4.2:1.0.2", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "hibernate-search-util-common", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-util-common@6.1.7.Final-redhat-00002?type=jar", + "type": "library", + "group": "org.hibernate.search", + "bom-ref": "pkg:maven/org.hibernate.search/hibernate-search-util-common@6.1.7.Final-redhat-00002?type=jar", + "version": "6.1.7.Final-redhat-00002", + "licenses": [ + { + "license": { + "id": "LGPL-2.1+", + "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "a627d652512d1db3e2bc2812bc7f9ee50e81f6bc", + "url": "https://code.engineering.redhat.com/gerrit/hibernate/hibernate-search.git#6.1.7.Final-redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Hibernate Search common utilities", + "externalReferences": [ + { + "url": "http://hibernate.org/search/hibernate-search-parent-public/hibernate-search-util-common/", + "type": "website" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AWOEXFNS23QAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://hibernate.atlassian.net/browse/HSEARCH", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/hibernate-dev/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/hibernate/hibernate-search.git", + "type": "vcs" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.14-9-mvn3.8.4-gradle7.4.2:1.0.2", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "hibernate-search-mapper-orm", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-mapper-orm@6.1.7.Final-redhat-00002?type=jar", + "type": "library", + "group": "org.hibernate.search", + "bom-ref": "pkg:maven/org.hibernate.search/hibernate-search-mapper-orm@6.1.7.Final-redhat-00002?type=jar", + "version": "6.1.7.Final-redhat-00002", + "licenses": [ + { + "license": { + "id": "LGPL-2.1+", + "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "a627d652512d1db3e2bc2812bc7f9ee50e81f6bc", + "url": "https://code.engineering.redhat.com/gerrit/hibernate/hibernate-search.git#6.1.7.Final-redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Hibernate Search integration to Hibernate ORM", + "externalReferences": [ + { + "url": "http://hibernate.org/search/hibernate-search-parent-public/hibernate-search-mapper-orm/", + "type": "website" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AWOEXFNS23QAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://hibernate.atlassian.net/browse/HSEARCH", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/hibernate-dev/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/hibernate/hibernate-search.git", + "type": "vcs" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.14-9-mvn3.8.4-gradle7.4.2:1.0.2", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "hibernate-search-mapper-pojo-base", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-mapper-pojo-base@6.1.7.Final-redhat-00002?type=jar", + "type": "library", + "group": "org.hibernate.search", + "bom-ref": "pkg:maven/org.hibernate.search/hibernate-search-mapper-pojo-base@6.1.7.Final-redhat-00002?type=jar", + "version": "6.1.7.Final-redhat-00002", + "licenses": [ + { + "license": { + "id": "LGPL-2.1+", + "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "a627d652512d1db3e2bc2812bc7f9ee50e81f6bc", + "url": "https://code.engineering.redhat.com/gerrit/hibernate/hibernate-search.git#6.1.7.Final-redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Abstract base and common implementations for Hibernate Search Mappers for POJOs", + "externalReferences": [ + { + "url": "http://hibernate.org/search/hibernate-search-parent-public/hibernate-search-mapper-pojo-base/", + "type": "website" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AWOEXFNS23QAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://hibernate.atlassian.net/browse/HSEARCH", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/hibernate-dev/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/hibernate/hibernate-search.git", + "type": "vcs" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.14-9-mvn3.8.4-gradle7.4.2:1.0.2", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-hibernate-search-orm-elasticsearch-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-search-orm-elasticsearch-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-hibernate-search-orm-elasticsearch-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-elasticsearch-rest-client-common-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-elasticsearch-rest-client-common-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-elasticsearch-rest-client-common-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-apache-httpclient-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-apache-httpclient-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-apache-httpclient-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-apache-httpclient", + "purl": "pkg:maven/io.quarkus/quarkus-apache-httpclient@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-apache-httpclient:2.13.9.Final-redhat-00003#1", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Connect to HTTP resources using the Apache HttpClient", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-elasticsearch-rest-client-common", + "purl": "pkg:maven/io.quarkus/quarkus-elasticsearch-rest-client-common@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-elasticsearch-rest-client-common:2.13.9.Final-redhat-00003#1", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Elasticsearch REST client common", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "elasticsearch-rest-client", + "purl": "pkg:maven/org.elasticsearch.client/elasticsearch-rest-client@8.4.3.redhat-00002?type=jar", + "type": "library", + "group": "org.elasticsearch.client", + "bom-ref": "o.e.c:elasticsearch-rest-client:8.4.3.redhat-00002#1", + "version": "8.4.3.redhat-00002", + "pedigree": { + "commits": [ + { + "uid": "0f70da5b794d79f46297f67ff7b4b8da923380f4", + "url": "https://code.engineering.redhat.com/gerrit/elastic/elasticsearch.git#8.4.3.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Elasticsearch subproject :client:rest", + "externalReferences": [ + { + "url": "https://code.engineering.redhat.com/gerrit/elastic/elasticsearch.git", + "type": "website" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/elastic/elasticsearch.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU72PG77G4QAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "elasticsearch-rest-client-sniffer", + "purl": "pkg:maven/org.elasticsearch.client/elasticsearch-rest-client-sniffer@8.4.3.redhat-00002?type=jar", + "type": "library", + "group": "org.elasticsearch.client", + "bom-ref": "o.e.c:elasticsearch-rest-client-sniffer:8.4.3.redhat-00002#1", + "version": "8.4.3.redhat-00002", + "pedigree": { + "commits": [ + { + "uid": "0f70da5b794d79f46297f67ff7b4b8da923380f4", + "url": "https://code.engineering.redhat.com/gerrit/elastic/elasticsearch.git#8.4.3.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Elasticsearch subproject :client:sniffer", + "externalReferences": [ + { + "url": "https://code.engineering.redhat.com/gerrit/elastic/elasticsearch.git", + "type": "website" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/elastic/elasticsearch.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU72PG77G4QAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle7.5.1:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "elasticsearch", + "purl": "pkg:maven/org.testcontainers/elasticsearch@1.17.3?type=jar", + "type": "library", + "group": "org.testcontainers", + "bom-ref": "pkg:maven/org.testcontainers/elasticsearch@1.17.3?type=jar", + "version": "1.17.3", + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "publisher": "central", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Isolated container management for Java code testing", + "externalReferences": [ + { + "url": "https://testcontainers.org", + "type": "website" + }, + { + "url": "https://github.com/testcontainers/testcontainers-java/issues", + "type": "issue-tracker" + }, + { + "url": "https://github.com/testcontainers/testcontainers-java", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-hibernate-search-orm-elasticsearch", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-search-orm-elasticsearch@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-hibernate-search-orm-elasticsearch:2.13.9.Final-redhat-00003#1", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Automatically index your Hibernate entities in Elasticsearch", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "hibernate-search-backend-elasticsearch", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-backend-elasticsearch@6.1.7.Final-redhat-00002?type=jar", + "type": "library", + "group": "org.hibernate.search", + "bom-ref": "o.h.s:hibernate-search-backend-elasticsearch:6.1.7.Final-redhat-00002#1", + "version": "6.1.7.Final-redhat-00002", + "licenses": [ + { + "license": { + "id": "LGPL-2.1+", + "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "a627d652512d1db3e2bc2812bc7f9ee50e81f6bc", + "url": "https://code.engineering.redhat.com/gerrit/hibernate/hibernate-search.git#6.1.7.Final-redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Hibernate Search Backend relying on remote Elasticsearch clusters", + "externalReferences": [ + { + "url": "http://hibernate.org/search/hibernate-search-parent-public/hibernate-search-backend-elasticsearch/", + "type": "website" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AWOEXFNS23QAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://hibernate.atlassian.net/browse/HSEARCH", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/hibernate-dev/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/hibernate/hibernate-search.git", + "type": "vcs" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.14-9-mvn3.8.4-gradle7.4.2:1.0.2", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "hibernate-search-mapper-orm", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-mapper-orm@6.1.7.Final-redhat-00002?type=jar", + "type": "library", + "group": "org.hibernate.search", + "bom-ref": "o.h.s:hibernate-search-mapper-orm:6.1.7.Final-redhat-00002#1", + "version": "6.1.7.Final-redhat-00002", + "licenses": [ + { + "license": { + "id": "LGPL-2.1+", + "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "a627d652512d1db3e2bc2812bc7f9ee50e81f6bc", + "url": "https://code.engineering.redhat.com/gerrit/hibernate/hibernate-search.git#6.1.7.Final-redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Hibernate Search integration to Hibernate ORM", + "externalReferences": [ + { + "url": "http://hibernate.org/search/hibernate-search-parent-public/hibernate-search-mapper-orm/", + "type": "website" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AWOEXFNS23QAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://hibernate.atlassian.net/browse/HSEARCH", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/hibernate-dev/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/hibernate/hibernate-search.git", + "type": "vcs" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.14-9-mvn3.8.4-gradle7.4.2:1.0.2", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-hibernate-validator", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-validator@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-hibernate-validator@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Validate object properties (field, getter) and method parameters for your beans (REST, CDI, JPA)", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-config-validator", + "purl": "pkg:maven/io.smallrye.config/smallrye-config-validator@2.12.3.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye.config", + "bom-ref": "pkg:maven/io.smallrye.config/smallrye-config-validator@2.12.3.redhat-00001?type=jar", + "version": "2.12.3.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "4ba71fb2eb44e7bdac75a694d12f3c72a740ce27", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-config.git#2.12.3.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "SmallRye Parent POM", + "externalReferences": [ + { + "url": "http://smallrye.io/smallrye-config-validator", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-config/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-config.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AWRFGUIPK3QAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.5", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "jakarta.el", + "purl": "pkg:maven/org.glassfish/jakarta.el@3.0.4.redhat-00002?type=jar", + "type": "library", + "group": "org.glassfish", + "bom-ref": "pkg:maven/org.glassfish/jakarta.el@3.0.4.redhat-00002?type=jar", + "version": "3.0.4.redhat-00002", + "licenses": [ + { + "license": { + "id": "EPL-2.0" + } + }, + { + "license": { + "id": "GPL-2.0-with-classpath-exception" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "4b8f4b232c4b469ed1736da7a008ae03dee869d1", + "url": "https://code.engineering.redhat.com/gerrit/eclipse-ee4j/el-ri.git#3.0.4.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Jakarta Expression Language provides a specification document, API, reference implementation and TCK that describes an expression language for Java applications.", + "externalReferences": [ + { + "url": "https://projects.eclipse.org/projects/ee4j.el", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/eclipse-ee4j/el-ri/issues", + "type": "issue-tracker" + }, + { + "url": "https://dev.eclipse.org/mhonarc/lists/el-dev", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/eclipse-ee4j/el-ri.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU4RRUBIW4QAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "hibernate-validator", + "purl": "pkg:maven/org.hibernate.validator/hibernate-validator@6.2.5.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.hibernate.validator", + "bom-ref": "pkg:maven/org.hibernate.validator/hibernate-validator@6.2.5.Final-redhat-00001?type=jar", + "version": "6.2.5.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "231a515d81d082e58d16b579c589dfabe0729226", + "url": "https://code.engineering.redhat.com/gerrit/hibernate/hibernate-validator.git#6.2.5.Final-redhat-00001-231a515d" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Hibernate's Jakarta Bean Validation reference implementation.", + "externalReferences": [ + { + "url": "http://hibernate.org/validator/hibernate-validator", + "type": "website" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUOQJOTR3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://hibernate.atlassian.net/projects/HV/summary", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/hibernate/hibernate-validator.git", + "type": "vcs" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.6.3-gradle7.3.2:1.0.3", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-hibernate-validator-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-validator-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-hibernate-validator-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-hibernate-validator-spi", + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-validator-spi@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-hibernate-validator-spi@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Artifact that provides BuildItems specific to Hibernate Validator", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-jaxrs-spi-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-jaxrs-spi-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-jaxrs-spi-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-resteasy-server-common-spi", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-server-common-spi@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-resteasy-server-common-spi@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Extensions that provides RESTEasy Server related BuildItems", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-infinispan-client", + "purl": "pkg:maven/io.quarkus/quarkus-infinispan-client@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-infinispan-client@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Connect to the Infinispan data grid for distributed caching", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "opentelemetry-api", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-api@1.17.0.redhat-00001?type=jar", + "type": "library", + "group": "io.opentelemetry", + "bom-ref": "pkg:maven/io.opentelemetry/opentelemetry-api@1.17.0.redhat-00001?type=jar", + "version": "1.17.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "66c0571331cb2057d00150e224e74b26327d5290", + "url": "https://code.engineering.redhat.com/gerrit/open-telemetry/opentelemetry-java.git#1.17.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "OpenTelemetry API", + "externalReferences": [ + { + "url": "https://github.com/open-telemetry/opentelemetry-java", + "type": "website" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/open-telemetry/opentelemetry-java.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUFMH7H7LVQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.14-9-mvn3.8.4-gradle7.3.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "opentelemetry-context", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-context@1.17.0.redhat-00001?type=jar", + "type": "library", + "group": "io.opentelemetry", + "bom-ref": "pkg:maven/io.opentelemetry/opentelemetry-context@1.17.0.redhat-00001?type=jar", + "version": "1.17.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "66c0571331cb2057d00150e224e74b26327d5290", + "url": "https://code.engineering.redhat.com/gerrit/open-telemetry/opentelemetry-java.git#1.17.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "OpenTelemetry Context (Incubator)", + "externalReferences": [ + { + "url": "https://github.com/open-telemetry/opentelemetry-java", + "type": "website" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/open-telemetry/opentelemetry-java.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUFMH7H7LVQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.14-9-mvn3.8.4-gradle7.3.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-elytron-security-common", + "purl": "pkg:maven/io.quarkus/quarkus-elytron-security-common@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-elytron-security-common@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Common components to secure your applications via Elytron", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "wildfly-elytron-credential", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-credential@1.20.1.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.wildfly.security", + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-credential@1.20.1.Final-redhat-00001?type=jar", + "version": "1.20.1.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b57e5b90a216ec641597a6e337eeb210e49a6ba1", + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git#1.20.1.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "WildFly Security Credential API", + "externalReferences": [ + { + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-credential", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ELY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AT4MEUQQ3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.3.9:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "wildfly-elytron-asn1", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-asn1@1.20.1.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.wildfly.security", + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-asn1@1.20.1.Final-redhat-00001?type=jar", + "version": "1.20.1.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b57e5b90a216ec641597a6e337eeb210e49a6ba1", + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git#1.20.1.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "WildFly Security ASN.1 Implementation", + "externalReferences": [ + { + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-asn1", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ELY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AT4MEUQQ3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.3.9:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "wildfly-elytron-keystore", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-keystore@1.20.1.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.wildfly.security", + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-keystore@1.20.1.Final-redhat-00001?type=jar", + "version": "1.20.1.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b57e5b90a216ec641597a6e337eeb210e49a6ba1", + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git#1.20.1.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "WildFly Security Credential API", + "externalReferences": [ + { + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-keystore", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ELY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AT4MEUQQ3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.3.9:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "wildfly-elytron-provider-util", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-provider-util@1.20.1.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.wildfly.security", + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-provider-util@1.20.1.Final-redhat-00001?type=jar", + "version": "1.20.1.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b57e5b90a216ec641597a6e337eeb210e49a6ba1", + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git#1.20.1.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "WildFly Security Provider Util", + "externalReferences": [ + { + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-provider-util", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ELY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AT4MEUQQ3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.3.9:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "wildfly-elytron-util", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-util@1.20.1.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.wildfly.security", + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-util@1.20.1.Final-redhat-00001?type=jar", + "version": "1.20.1.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b57e5b90a216ec641597a6e337eeb210e49a6ba1", + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git#1.20.1.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "WildFly Security Util", + "externalReferences": [ + { + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-util", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ELY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AT4MEUQQ3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.3.9:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "wildfly-elytron-base", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-base@1.20.1.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.wildfly.security", + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-base@1.20.1.Final-redhat-00001?type=jar", + "version": "1.20.1.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b57e5b90a216ec641597a6e337eeb210e49a6ba1", + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git#1.20.1.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "WildFly Security Base", + "externalReferences": [ + { + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-base", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ELY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AT4MEUQQ3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.3.9:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "wildfly-elytron-x500-cert", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500-cert@1.20.1.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.wildfly.security", + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-x500-cert@1.20.1.Final-redhat-00001?type=jar", + "version": "1.20.1.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b57e5b90a216ec641597a6e337eeb210e49a6ba1", + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git#1.20.1.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "WildFly Security X.500 Certificates", + "externalReferences": [ + { + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-x500-cert", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ELY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AT4MEUQQ3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.3.9:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "sshd-common", + "purl": "pkg:maven/org.apache.sshd/sshd-common@2.10.0.redhat-00002?type=jar", + "type": "library", + "group": "org.apache.sshd", + "bom-ref": "pkg:maven/org.apache.sshd/sshd-common@2.10.0.redhat-00002?type=jar", + "version": "2.10.0.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "570dcc1c1336a6bc3c86405d6c39ca2ffc63449a", + "url": "https://code.engineering.redhat.com/gerrit/apache/mina-sshd.git#2.10.0.redhat-00002-570dcc1c" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.", + "externalReferences": [ + { + "url": "https://www.apache.org/sshd/sshd-common/", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.apache.org/jira/browse/SSHD", + "type": "issue-tracker" + }, + { + "url": "https://mail-archives.apache.org/mod_mbox/mina-users/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/apache/mina-sshd.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A23THGQI2EQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.6", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "wildfly-elytron-x500", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500@1.20.1.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.wildfly.security", + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-x500@1.20.1.Final-redhat-00001?type=jar", + "version": "1.20.1.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b57e5b90a216ec641597a6e337eeb210e49a6ba1", + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git#1.20.1.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "WildFly Security X.500", + "externalReferences": [ + { + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-x500", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ELY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AT4MEUQQ3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.3.9:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "wildfly-elytron-x500-cert-util", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500-cert-util@1.20.1.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.wildfly.security", + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-x500-cert-util@1.20.1.Final-redhat-00001?type=jar", + "version": "1.20.1.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b57e5b90a216ec641597a6e337eeb210e49a6ba1", + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git#1.20.1.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "WildFly Security X.500 Certificate Utility Classes", + "externalReferences": [ + { + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-x500-cert-util", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ELY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AT4MEUQQ3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.3.9:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "wildfly-elytron-password-impl", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-password-impl@1.20.1.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.wildfly.security", + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-password-impl@1.20.1.Final-redhat-00001?type=jar", + "version": "1.20.1.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b57e5b90a216ec641597a6e337eeb210e49a6ba1", + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git#1.20.1.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "WildFly Security Password Implementation", + "externalReferences": [ + { + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-password-impl", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ELY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AT4MEUQQ3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.3.9:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-jsonp", + "purl": "pkg:maven/io.quarkus/quarkus-jsonp@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-jsonp@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "JSON Processing support", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "microprofile-metrics-api", + "purl": "pkg:maven/org.eclipse.microprofile.metrics/microprofile-metrics-api@3.0.1.redhat-00001?type=jar", + "type": "library", + "group": "org.eclipse.microprofile.metrics", + "bom-ref": "pkg:maven/org.eclipse.microprofile.metrics/microprofile-metrics-api@3.0.1.redhat-00001?type=jar", + "version": "3.0.1.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "aacec51099c977048e2f0bf5b55e856ed820d365", + "url": "https://code.engineering.redhat.com/gerrit/eclipse/microprofile-metrics.git#3.0.1.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "MicroProfile Metrics :: API", + "externalReferences": [ + { + "url": "http://microprofile.io/microprofile-metrics-api", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/eclipse/microprofile-metrics/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/eclipse/microprofile-metrics.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AQJSN4J5WHAAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.3", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "infinispan-api", + "purl": "pkg:maven/org.infinispan/infinispan-api@14.0.9.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.infinispan", + "bom-ref": "pkg:maven/org.infinispan/infinispan-api@14.0.9.Final-redhat-00001?type=jar", + "version": "14.0.9.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "7ab031d81800e834914dd3ef2769a360e0508374", + "url": "https://code.engineering.redhat.com/gerrit/infinispan/infinispan.git#14.0.9.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Infinispan API", + "externalReferences": [ + { + "url": "http://www.infinispan.org/infinispan-api", + "type": "website" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AYQKMZPD3RQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ISPN", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/infinispan-issues/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/infinispan/infinispan.git", + "type": "vcs" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.6.3-gradle7.3.2:1.0.3", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "infinispan-client-hotrod", + "purl": "pkg:maven/org.infinispan/infinispan-client-hotrod@14.0.9.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.infinispan", + "bom-ref": "pkg:maven/org.infinispan/infinispan-client-hotrod@14.0.9.Final-redhat-00001?type=jar", + "version": "14.0.9.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "7ab031d81800e834914dd3ef2769a360e0508374", + "url": "https://code.engineering.redhat.com/gerrit/infinispan/infinispan.git#14.0.9.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Infinispan Hot Rod Client", + "externalReferences": [ + { + "url": "http://www.infinispan.org/infinispan-client-hotrod", + "type": "website" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AYQKMZPD3RQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ISPN", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/infinispan-issues/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/infinispan/infinispan.git", + "type": "vcs" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.6.3-gradle7.3.2:1.0.3", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "netty-transport-native-epoll", + "purl": "pkg:maven/io.netty/netty-transport-native-epoll@4.1.100.Final-redhat-00001?classifier=linux-x86_64&type=jar", + "type": "library", + "group": "io.netty", + "bom-ref": "pkg:maven/io.netty/netty-transport-native-epoll@4.1.100.Final-redhat-00001?classifier=linux-x86_64&type=jar", + "version": "4.1.100.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "0ff281ddc94bdea956407aa94ddda3eefe1e9201", + "url": "https://code.engineering.redhat.com/gerrit/netty/netty.git#4.1.100.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Netty is an asynchronous event-driven network application framework for rapid development of maintainable high performance protocol servers and clients.", + "externalReferences": [ + { + "url": "https://netty.io/netty-transport-native-epoll/", + "type": "website" + }, + { + "url": "https://issues.jboss.org/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/netty/netty.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A3X7AQ2N2MYAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-oraclejdk8u192-mvn3.6.3-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "netty-transport-classes-epoll", + "purl": "pkg:maven/io.netty/netty-transport-classes-epoll@4.1.100.Final-redhat-00001?type=jar", + "type": "library", + "group": "io.netty", + "bom-ref": "pkg:maven/io.netty/netty-transport-classes-epoll@4.1.100.Final-redhat-00001?type=jar", + "version": "4.1.100.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "0ff281ddc94bdea956407aa94ddda3eefe1e9201", + "url": "https://code.engineering.redhat.com/gerrit/netty/netty.git#4.1.100.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Netty is an asynchronous event-driven network application framework for rapid development of maintainable high performance protocol servers and clients.", + "externalReferences": [ + { + "url": "https://netty.io/netty-transport-classes-epoll/", + "type": "website" + }, + { + "url": "https://issues.jboss.org/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/netty/netty.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A3X7AQ2N2MYAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-oraclejdk8u192-mvn3.6.3-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "rxjava", + "purl": "pkg:maven/io.reactivex.rxjava3/rxjava@3.1.4.Final-redhat-00001?type=jar", + "type": "library", + "group": "io.reactivex.rxjava3", + "bom-ref": "pkg:maven/io.reactivex.rxjava3/rxjava@3.1.4.Final-redhat-00001?type=jar", + "version": "3.1.4.Final-redhat-00001", + "pedigree": { + "commits": [ + { + "uid": "ec8f89fd00db6131fc5e085ac69eb1784cfec97f", + "url": "https://code.engineering.redhat.com/gerrit/ReactiveX/RxJava.git#3.1.4.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "externalReferences": [ + { + "url": "https://code.engineering.redhat.com/gerrit/ReactiveX/RxJava.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/ATJTSGDJTVQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.3.9-gradle6.8.3:1.0.5", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "infinispan-commons", + "purl": "pkg:maven/org.infinispan/infinispan-commons@14.0.9.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.infinispan", + "bom-ref": "pkg:maven/org.infinispan/infinispan-commons@14.0.9.Final-redhat-00001?type=jar", + "version": "14.0.9.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "7ab031d81800e834914dd3ef2769a360e0508374", + "url": "https://code.engineering.redhat.com/gerrit/infinispan/infinispan.git#14.0.9.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Infinispan Commons", + "externalReferences": [ + { + "url": "http://www.infinispan.org/infinispan-commons-parent/infinispan-commons", + "type": "website" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AYQKMZPD3RQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ISPN", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/infinispan-issues/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/infinispan/infinispan.git", + "type": "vcs" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.6.3-gradle7.3.2:1.0.3", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "protostream", + "purl": "pkg:maven/org.infinispan.protostream/protostream@4.6.2.Final-redhat-00003?type=jar", + "type": "library", + "group": "org.infinispan.protostream", + "bom-ref": "pkg:maven/org.infinispan.protostream/protostream@4.6.2.Final-redhat-00003?type=jar", + "version": "4.6.2.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "678da74cda2f096025b93f538cd77a54ebd497b7", + "url": "https://code.engineering.redhat.com/gerrit/protostream.git#4.6.2.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "ProtoStream is a serialization library based on Protocol buffers format for serializing structured data.", + "externalReferences": [ + { + "url": "https://github.com/infinispan/protostream", + "type": "website" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AZMDPQ2BCHQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.redhat.com/projects/IPROTO/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/infinispan-issues/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/protostream.git", + "type": "vcs" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.5", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "protoparser", + "purl": "pkg:maven/com.squareup/protoparser@4.0.3.redhat-00001?type=jar", + "type": "library", + "group": "com.squareup", + "bom-ref": "pkg:maven/com.squareup/protoparser@4.0.3.redhat-00001?type=jar", + "version": "4.0.3.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "06ae0aad6f62891eb9663944c6bd379ca8e7944f", + "url": "http://code.engineering.redhat.com/gerrit/square/protoparser.git#4.0.3.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Basic parser for protocol buffer schema declarations.", + "externalReferences": [ + { + "url": "http://github.com/square/protoparser/", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "http://github.com/square/protoparser/issues", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "http://code.engineering.redhat.com/gerrit/square/protoparser.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/54165", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "javassist", + "purl": "pkg:maven/org.javassist/javassist@3.29.1.GA-redhat-00001?type=jar", + "type": "library", + "group": "org.javassist", + "bom-ref": "pkg:maven/org.javassist/javassist@3.29.1.GA-redhat-00001?type=jar", + "version": "3.29.1.GA-redhat-00001", + "licenses": [ + { + "license": { + "id": "MPL-1.1" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Javassist (JAVA programming ASSISTant) makes Java bytecode manipulation simple. It is a class library for editing bytecodes in Java.", + "externalReferences": [ + { + "url": "http://www.javassist.org/", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://jira.jboss.org/jira/browse/JASSIST/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/jboss-javassist/javassist.git", + "type": "vcs" + } + ] + }, + { + "name": "protostream-types", + "purl": "pkg:maven/org.infinispan.protostream/protostream-types@4.6.2.Final-redhat-00003?type=jar", + "type": "library", + "group": "org.infinispan.protostream", + "bom-ref": "pkg:maven/org.infinispan.protostream/protostream-types@4.6.2.Final-redhat-00003?type=jar", + "version": "4.6.2.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "678da74cda2f096025b93f538cd77a54ebd497b7", + "url": "https://code.engineering.redhat.com/gerrit/protostream.git#4.6.2.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Builtin protobuf types and default marshalling for some common Java types.", + "externalReferences": [ + { + "url": "https://infinispan.org/protostream-types", + "type": "website" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AZMDPQ2BCHQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.redhat.com/projects/IPROTO/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/infinispan-issues/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/protostream.git", + "type": "vcs" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.5", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "wildfly-elytron-sasl-digest", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-digest@1.20.1.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.wildfly.security", + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-digest@1.20.1.Final-redhat-00001?type=jar", + "version": "1.20.1.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b57e5b90a216ec641597a6e337eeb210e49a6ba1", + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git#1.20.1.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "WildFly Security Digest SASL Implementation", + "externalReferences": [ + { + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-sasl-digest", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ELY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AT4MEUQQ3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.3.9:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "wildfly-elytron-auth-server", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server@1.20.1.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.wildfly.security", + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server@1.20.1.Final-redhat-00001?type=jar", + "version": "1.20.1.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b57e5b90a216ec641597a6e337eeb210e49a6ba1", + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git#1.20.1.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "WildFly Security Auth Server", + "externalReferences": [ + { + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-auth-server", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ELY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AT4MEUQQ3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.3.9:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "wildfly-elytron-auth", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-auth@1.20.1.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.wildfly.security", + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-auth@1.20.1.Final-redhat-00001?type=jar", + "version": "1.20.1.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b57e5b90a216ec641597a6e337eeb210e49a6ba1", + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git#1.20.1.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "WildFly Security Auth", + "externalReferences": [ + { + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-auth", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ELY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AT4MEUQQ3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.3.9:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "wildfly-elytron-permission", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-permission@1.20.1.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.wildfly.security", + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-permission@1.20.1.Final-redhat-00001?type=jar", + "version": "1.20.1.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b57e5b90a216ec641597a6e337eeb210e49a6ba1", + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git#1.20.1.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "WildFly Security Permission", + "externalReferences": [ + { + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-permission", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ELY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AT4MEUQQ3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.3.9:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "wildfly-elytron-mechanism", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism@1.20.1.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.wildfly.security", + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism@1.20.1.Final-redhat-00001?type=jar", + "version": "1.20.1.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b57e5b90a216ec641597a6e337eeb210e49a6ba1", + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git#1.20.1.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "WildFly Security Mechanism", + "externalReferences": [ + { + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-mechanism", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ELY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AT4MEUQQ3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.3.9:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "wildfly-elytron-http", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-http@1.20.1.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.wildfly.security", + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-http@1.20.1.Final-redhat-00001?type=jar", + "version": "1.20.1.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b57e5b90a216ec641597a6e337eeb210e49a6ba1", + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git#1.20.1.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "WildFly Security HTTP Framework", + "externalReferences": [ + { + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-http", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ELY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AT4MEUQQ3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.3.9:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "wildfly-elytron-mechanism-digest", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-digest@1.20.1.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.wildfly.security", + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-digest@1.20.1.Final-redhat-00001?type=jar", + "version": "1.20.1.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b57e5b90a216ec641597a6e337eeb210e49a6ba1", + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git#1.20.1.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "WildFly Security Mechanism Digest", + "externalReferences": [ + { + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-mechanism-digest", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ELY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AT4MEUQQ3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.3.9:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "wildfly-elytron-sasl", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl@1.20.1.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.wildfly.security", + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl@1.20.1.Final-redhat-00001?type=jar", + "version": "1.20.1.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b57e5b90a216ec641597a6e337eeb210e49a6ba1", + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git#1.20.1.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "WildFly Security SASL", + "externalReferences": [ + { + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-sasl", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ELY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AT4MEUQQ3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.3.9:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "wildfly-elytron-ssl", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-ssl@1.20.1.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.wildfly.security", + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-ssl@1.20.1.Final-redhat-00001?type=jar", + "version": "1.20.1.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b57e5b90a216ec641597a6e337eeb210e49a6ba1", + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git#1.20.1.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "WildFly Security SSL", + "externalReferences": [ + { + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-ssl", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ELY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AT4MEUQQ3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.3.9:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "wildfly-elytron-sasl-external", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-external@1.20.1.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.wildfly.security", + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-external@1.20.1.Final-redhat-00001?type=jar", + "version": "1.20.1.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b57e5b90a216ec641597a6e337eeb210e49a6ba1", + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git#1.20.1.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "WildFly Security External SASL Implementation", + "externalReferences": [ + { + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-sasl-external", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ELY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AT4MEUQQ3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.3.9:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "wildfly-elytron-sasl-gs2", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-gs2@1.20.1.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.wildfly.security", + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-gs2@1.20.1.Final-redhat-00001?type=jar", + "version": "1.20.1.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b57e5b90a216ec641597a6e337eeb210e49a6ba1", + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git#1.20.1.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "WildFly Security GS2 SASL Implementation", + "externalReferences": [ + { + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-sasl-gs2", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ELY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AT4MEUQQ3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.3.9:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "wildfly-elytron-mechanism-gssapi", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-gssapi@1.20.1.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.wildfly.security", + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-gssapi@1.20.1.Final-redhat-00001?type=jar", + "version": "1.20.1.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b57e5b90a216ec641597a6e337eeb210e49a6ba1", + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git#1.20.1.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "WildFly Security Mechanism GSSAPI", + "externalReferences": [ + { + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-mechanism-gssapi", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ELY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AT4MEUQQ3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.3.9:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "wildfly-elytron-security-manager-action", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-security-manager-action@1.20.1.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.wildfly.security", + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-security-manager-action@1.20.1.Final-redhat-00001?type=jar", + "version": "1.20.1.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b57e5b90a216ec641597a6e337eeb210e49a6ba1", + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git#1.20.1.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "WildFly Security Security Manager Action", + "externalReferences": [ + { + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-security-manager-action", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ELY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AT4MEUQQ3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.3.9:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "wildfly-elytron-sasl-gssapi", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-gssapi@1.20.1.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.wildfly.security", + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-gssapi@1.20.1.Final-redhat-00001?type=jar", + "version": "1.20.1.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b57e5b90a216ec641597a6e337eeb210e49a6ba1", + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git#1.20.1.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "WildFly Security GSSAPI SASL Implementation", + "externalReferences": [ + { + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-sasl-gssapi", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ELY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AT4MEUQQ3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.3.9:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "wildfly-elytron-sasl-oauth2", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-oauth2@1.20.1.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.wildfly.security", + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-oauth2@1.20.1.Final-redhat-00001?type=jar", + "version": "1.20.1.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b57e5b90a216ec641597a6e337eeb210e49a6ba1", + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git#1.20.1.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "WildFly Security OAuth2 SASL Implementation", + "externalReferences": [ + { + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-sasl-oauth2", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ELY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AT4MEUQQ3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.3.9:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "wildfly-elytron-mechanism-oauth2", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-oauth2@1.20.1.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.wildfly.security", + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-oauth2@1.20.1.Final-redhat-00001?type=jar", + "version": "1.20.1.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b57e5b90a216ec641597a6e337eeb210e49a6ba1", + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git#1.20.1.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "WildFly Security Mechanism OAuth2", + "externalReferences": [ + { + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-mechanism-oauth2", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ELY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AT4MEUQQ3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.3.9:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "wildfly-elytron-sasl-plain", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-plain@1.20.1.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.wildfly.security", + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-plain@1.20.1.Final-redhat-00001?type=jar", + "version": "1.20.1.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b57e5b90a216ec641597a6e337eeb210e49a6ba1", + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git#1.20.1.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "WildFly Security Plain SASL Implementation", + "externalReferences": [ + { + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-sasl-plain", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ELY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AT4MEUQQ3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.3.9:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "wildfly-elytron-sasl-scram", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-scram@1.20.1.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.wildfly.security", + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-scram@1.20.1.Final-redhat-00001?type=jar", + "version": "1.20.1.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b57e5b90a216ec641597a6e337eeb210e49a6ba1", + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git#1.20.1.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "WildFly Security SCRAM SASL Implementation", + "externalReferences": [ + { + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-sasl-scram", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ELY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AT4MEUQQ3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.3.9:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "wildfly-elytron-mechanism-scram", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-scram@1.20.1.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.wildfly.security", + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-scram@1.20.1.Final-redhat-00001?type=jar", + "version": "1.20.1.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b57e5b90a216ec641597a6e337eeb210e49a6ba1", + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git#1.20.1.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "WildFly Security Mechanism SCRAM", + "externalReferences": [ + { + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-mechanism-scram", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ELY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AT4MEUQQ3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.3.9:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "infinispan-query-dsl", + "purl": "pkg:maven/org.infinispan/infinispan-query-dsl@14.0.9.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.infinispan", + "bom-ref": "pkg:maven/org.infinispan/infinispan-query-dsl@14.0.9.Final-redhat-00001?type=jar", + "version": "14.0.9.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "7ab031d81800e834914dd3ef2769a360e0508374", + "url": "https://code.engineering.redhat.com/gerrit/infinispan/infinispan.git#14.0.9.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Infinispan Query DSL API module", + "externalReferences": [ + { + "url": "http://www.infinispan.org/infinispan-query-dsl", + "type": "website" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AYQKMZPD3RQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ISPN", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/infinispan-issues/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/infinispan/infinispan.git", + "type": "vcs" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.6.3-gradle7.3.2:1.0.3", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "infinispan-remote-query-client", + "purl": "pkg:maven/org.infinispan/infinispan-remote-query-client@14.0.9.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.infinispan", + "bom-ref": "pkg:maven/org.infinispan/infinispan-remote-query-client@14.0.9.Final-redhat-00001?type=jar", + "version": "14.0.9.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "7ab031d81800e834914dd3ef2769a360e0508374", + "url": "https://code.engineering.redhat.com/gerrit/infinispan/infinispan.git#14.0.9.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Infinispan Remote Query common classes between client and server", + "externalReferences": [ + { + "url": "http://www.infinispan.org/infinispan-remote-query-client", + "type": "website" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AYQKMZPD3RQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ISPN", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/infinispan-issues/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/infinispan/infinispan.git", + "type": "vcs" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.6.3-gradle7.3.2:1.0.3", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "protostream-processor", + "purl": "pkg:maven/org.infinispan.protostream/protostream-processor@4.6.2.Final-redhat-00003?type=jar", + "type": "library", + "group": "org.infinispan.protostream", + "bom-ref": "pkg:maven/org.infinispan.protostream/protostream-processor@4.6.2.Final-redhat-00003?type=jar", + "version": "4.6.2.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "678da74cda2f096025b93f538cd77a54ebd497b7", + "url": "https://code.engineering.redhat.com/gerrit/protostream.git#4.6.2.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Annotation processor for ProtoStream annotations. Generates your message and enum marshallers so you don't have to!", + "externalReferences": [ + { + "url": "https://github.com/infinispan/protostream", + "type": "website" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AZMDPQ2BCHQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.redhat.com/projects/IPROTO/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/infinispan-issues/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/protostream.git", + "type": "vcs" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.5", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-infinispan-client-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-infinispan-client-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-infinispan-client-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-devservices-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-devservices-deployment:2.13.9.Final-redhat-00003#1", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "DevServices allows Quarkus to automatically configure and start databases and other containers in dev and test mode.", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-devservices-common", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-common@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-devservices-common:2.13.9.Final-redhat-00003#1", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "DevServices allows Quarkus to automatically configure and start databases and other containers in dev and test mode.", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "testcontainers", + "purl": "pkg:maven/org.testcontainers/testcontainers@1.17.3?type=jar", + "type": "library", + "group": "org.testcontainers", + "bom-ref": "o.t:testcontainers:1.17.3#1", + "version": "1.17.3", + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "publisher": "central", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Isolated container management for Java code testing", + "externalReferences": [ + { + "url": "https://testcontainers.org", + "type": "website" + }, + { + "url": "https://github.com/testcontainers/testcontainers-java/issues", + "type": "issue-tracker" + }, + { + "url": "https://github.com/testcontainers/testcontainers-java", + "type": "vcs" + } + ] + }, + { + "name": "junit", + "purl": "pkg:maven/junit/junit@4.13.2?type=jar", + "type": "library", + "group": "junit", + "bom-ref": "pkg:maven/junit/junit@4.13.2?type=jar", + "version": "4.13.2", + "licenses": [ + { + "license": { + "id": "EPL-1.0", + "url": "http://www.eclipse.org/legal/epl-v10.html" + } + } + ], + "publisher": "JUnit", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "JUnit is a unit testing framework for Java, created by Erich Gamma and Kent Beck.", + "externalReferences": [ + { + "url": "http://junit.org", + "type": "website" + }, + { + "url": "https://github.com/junit-team/junit4/actions", + "type": "build-system" + }, + { + "url": "https://github.com/junit-team/junit4/wiki/Download-and-Install", + "type": "distribution" + }, + { + "url": "https://github.com/junit-team/junit4/issues", + "type": "issue-tracker" + }, + { + "url": "https://github.com/junit-team/junit4", + "type": "vcs" + } + ] + }, + { + "name": "hamcrest-core", + "purl": "pkg:maven/org.hamcrest/hamcrest-core@1.3?type=jar", + "type": "library", + "group": "org.hamcrest", + "bom-ref": "pkg:maven/org.hamcrest/hamcrest-core@1.3?type=jar", + "version": "1.3", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + } + ], + "publisher": "central", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "This is the core API of hamcrest matcher framework to be used by third-party framework providers. This includes the a foundation set of matcher implementations for common operations.", + "externalReferences": [ + { + "url": "https://github.com/hamcrest/JavaHamcrest/hamcrest-core", + "type": "website" + }, + { + "url": "https://github.com/hamcrest/JavaHamcrest", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-elytron-security-common-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-elytron-security-common-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-elytron-security-common-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-elytron-security-common", + "purl": "pkg:maven/io.quarkus/quarkus-elytron-security-common@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-elytron-security-common:2.13.9.Final-redhat-00003#1", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Common components to secure your applications via Elytron", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "wildfly-elytron-credential", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-credential@1.20.1.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.wildfly.security", + "bom-ref": "o.w.s:wildfly-elytron-credential:1.20.1.Final-redhat-00001#1", + "version": "1.20.1.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b57e5b90a216ec641597a6e337eeb210e49a6ba1", + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git#1.20.1.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "WildFly Security Credential API", + "externalReferences": [ + { + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-credential", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ELY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AT4MEUQQ3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.3.9:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "wildfly-elytron-keystore", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-keystore@1.20.1.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.wildfly.security", + "bom-ref": "o.w.s:wildfly-elytron-keystore:1.20.1.Final-redhat-00001#1", + "version": "1.20.1.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b57e5b90a216ec641597a6e337eeb210e49a6ba1", + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git#1.20.1.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "WildFly Security Credential API", + "externalReferences": [ + { + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-keystore", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ELY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AT4MEUQQ3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.3.9:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "wildfly-elytron-x500-cert", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500-cert@1.20.1.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.wildfly.security", + "bom-ref": "o.w.s:wildfly-elytron-x500-cert:1.20.1.Final-redhat-00001#1", + "version": "1.20.1.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b57e5b90a216ec641597a6e337eeb210e49a6ba1", + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git#1.20.1.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "WildFly Security X.500 Certificates", + "externalReferences": [ + { + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-x500-cert", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ELY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AT4MEUQQ3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.3.9:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "sshd-common", + "purl": "pkg:maven/org.apache.sshd/sshd-common@2.10.0.redhat-00002?type=jar", + "type": "library", + "group": "org.apache.sshd", + "bom-ref": "o.a.s:sshd-common:2.10.0.redhat-00002#1", + "version": "2.10.0.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "570dcc1c1336a6bc3c86405d6c39ca2ffc63449a", + "url": "https://code.engineering.redhat.com/gerrit/apache/mina-sshd.git#2.10.0.redhat-00002-570dcc1c" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.", + "externalReferences": [ + { + "url": "https://www.apache.org/sshd/sshd-common/", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.apache.org/jira/browse/SSHD", + "type": "issue-tracker" + }, + { + "url": "https://mail-archives.apache.org/mod_mbox/mina-users/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/apache/mina-sshd.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A23THGQI2EQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.6", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "jcl-over-slf4j", + "purl": "pkg:maven/org.slf4j/jcl-over-slf4j@1.7.32?type=jar", + "type": "library", + "group": "org.slf4j", + "bom-ref": "pkg:maven/org.slf4j/jcl-over-slf4j@1.7.32?type=jar", + "version": "1.7.32", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "QOS.ch", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "JCL 1.2 implemented over SLF4J", + "externalReferences": [ + { + "url": "http://www.slf4j.org", + "type": "website" + }, + { + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://github.com/qos-ch/slf4j", + "type": "vcs" + } + ] + }, + { + "name": "wildfly-elytron-password-impl", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-password-impl@1.20.1.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.wildfly.security", + "bom-ref": "o.w.s:wildfly-elytron-password-impl:1.20.1.Final-redhat-00001#1", + "version": "1.20.1.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b57e5b90a216ec641597a6e337eeb210e49a6ba1", + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git#1.20.1.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "WildFly Security Password Implementation", + "externalReferences": [ + { + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-password-impl", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ELY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AT4MEUQQ3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.3.9:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-infinispan-client", + "purl": "pkg:maven/io.quarkus/quarkus-infinispan-client@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-infinispan-client:2.13.9.Final-redhat-00003#1", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Connect to the Infinispan data grid for distributed caching", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "infinispan-client-hotrod", + "purl": "pkg:maven/org.infinispan/infinispan-client-hotrod@14.0.9.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.infinispan", + "bom-ref": "o.i:infinispan-client-hotrod:14.0.9.Final-redhat-00001#1", + "version": "14.0.9.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "7ab031d81800e834914dd3ef2769a360e0508374", + "url": "https://code.engineering.redhat.com/gerrit/infinispan/infinispan.git#14.0.9.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Infinispan Hot Rod Client", + "externalReferences": [ + { + "url": "http://www.infinispan.org/infinispan-client-hotrod", + "type": "website" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AYQKMZPD3RQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ISPN", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/infinispan-issues/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/infinispan/infinispan.git", + "type": "vcs" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.6.3-gradle7.3.2:1.0.3", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "wildfly-elytron-sasl-digest", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-digest@1.20.1.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.wildfly.security", + "bom-ref": "o.w.s:wildfly-elytron-sasl-digest:1.20.1.Final-redhat-00001#1", + "version": "1.20.1.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b57e5b90a216ec641597a6e337eeb210e49a6ba1", + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git#1.20.1.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "WildFly Security Digest SASL Implementation", + "externalReferences": [ + { + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-sasl-digest", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ELY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AT4MEUQQ3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.3.9:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "wildfly-elytron-auth-server", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server@1.20.1.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.wildfly.security", + "bom-ref": "o.w.s:wildfly-elytron-auth-server:1.20.1.Final-redhat-00001#1", + "version": "1.20.1.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b57e5b90a216ec641597a6e337eeb210e49a6ba1", + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git#1.20.1.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "WildFly Security Auth Server", + "externalReferences": [ + { + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-auth-server", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ELY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AT4MEUQQ3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.3.9:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "wildfly-elytron-mechanism", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism@1.20.1.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.wildfly.security", + "bom-ref": "o.w.s:wildfly-elytron-mechanism:1.20.1.Final-redhat-00001#1", + "version": "1.20.1.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b57e5b90a216ec641597a6e337eeb210e49a6ba1", + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git#1.20.1.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "WildFly Security Mechanism", + "externalReferences": [ + { + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-mechanism", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ELY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AT4MEUQQ3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.3.9:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "wildfly-elytron-http", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-http@1.20.1.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.wildfly.security", + "bom-ref": "o.w.s:wildfly-elytron-http:1.20.1.Final-redhat-00001#1", + "version": "1.20.1.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b57e5b90a216ec641597a6e337eeb210e49a6ba1", + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git#1.20.1.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "WildFly Security HTTP Framework", + "externalReferences": [ + { + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-http", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ELY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AT4MEUQQ3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.3.9:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "wildfly-elytron-mechanism-digest", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-digest@1.20.1.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.wildfly.security", + "bom-ref": "o.w.s:wildfly-elytron-mechanism-digest:1.20.1.Final-redhat-00001#1", + "version": "1.20.1.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b57e5b90a216ec641597a6e337eeb210e49a6ba1", + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git#1.20.1.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "WildFly Security Mechanism Digest", + "externalReferences": [ + { + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-mechanism-digest", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ELY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AT4MEUQQ3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.3.9:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "wildfly-elytron-sasl", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl@1.20.1.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.wildfly.security", + "bom-ref": "o.w.s:wildfly-elytron-sasl:1.20.1.Final-redhat-00001#1", + "version": "1.20.1.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b57e5b90a216ec641597a6e337eeb210e49a6ba1", + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git#1.20.1.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "WildFly Security SASL", + "externalReferences": [ + { + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-sasl", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ELY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AT4MEUQQ3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.3.9:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "wildfly-elytron-ssl", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-ssl@1.20.1.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.wildfly.security", + "bom-ref": "o.w.s:wildfly-elytron-ssl:1.20.1.Final-redhat-00001#1", + "version": "1.20.1.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b57e5b90a216ec641597a6e337eeb210e49a6ba1", + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git#1.20.1.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "WildFly Security SSL", + "externalReferences": [ + { + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-ssl", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ELY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AT4MEUQQ3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.3.9:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "wildfly-elytron-sasl-external", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-external@1.20.1.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.wildfly.security", + "bom-ref": "o.w.s:wildfly-elytron-sasl-external:1.20.1.Final-redhat-00001#1", + "version": "1.20.1.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b57e5b90a216ec641597a6e337eeb210e49a6ba1", + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git#1.20.1.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "WildFly Security External SASL Implementation", + "externalReferences": [ + { + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-sasl-external", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ELY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AT4MEUQQ3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.3.9:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "wildfly-elytron-sasl-gs2", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-gs2@1.20.1.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.wildfly.security", + "bom-ref": "o.w.s:wildfly-elytron-sasl-gs2:1.20.1.Final-redhat-00001#1", + "version": "1.20.1.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b57e5b90a216ec641597a6e337eeb210e49a6ba1", + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git#1.20.1.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "WildFly Security GS2 SASL Implementation", + "externalReferences": [ + { + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-sasl-gs2", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ELY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AT4MEUQQ3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.3.9:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "wildfly-elytron-mechanism-gssapi", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-gssapi@1.20.1.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.wildfly.security", + "bom-ref": "o.w.s:wildfly-elytron-mechanism-gssapi:1.20.1.Final-redhat-00001#1", + "version": "1.20.1.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b57e5b90a216ec641597a6e337eeb210e49a6ba1", + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git#1.20.1.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "WildFly Security Mechanism GSSAPI", + "externalReferences": [ + { + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-mechanism-gssapi", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ELY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AT4MEUQQ3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.3.9:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "wildfly-elytron-sasl-gssapi", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-gssapi@1.20.1.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.wildfly.security", + "bom-ref": "o.w.s:wildfly-elytron-sasl-gssapi:1.20.1.Final-redhat-00001#1", + "version": "1.20.1.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b57e5b90a216ec641597a6e337eeb210e49a6ba1", + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git#1.20.1.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "WildFly Security GSSAPI SASL Implementation", + "externalReferences": [ + { + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-sasl-gssapi", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ELY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AT4MEUQQ3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.3.9:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "wildfly-elytron-sasl-oauth2", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-oauth2@1.20.1.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.wildfly.security", + "bom-ref": "o.w.s:wildfly-elytron-sasl-oauth2:1.20.1.Final-redhat-00001#1", + "version": "1.20.1.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b57e5b90a216ec641597a6e337eeb210e49a6ba1", + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git#1.20.1.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "WildFly Security OAuth2 SASL Implementation", + "externalReferences": [ + { + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-sasl-oauth2", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ELY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AT4MEUQQ3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.3.9:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "wildfly-elytron-mechanism-oauth2", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-oauth2@1.20.1.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.wildfly.security", + "bom-ref": "o.w.s:wildfly-elytron-mechanism-oauth2:1.20.1.Final-redhat-00001#1", + "version": "1.20.1.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b57e5b90a216ec641597a6e337eeb210e49a6ba1", + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git#1.20.1.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "WildFly Security Mechanism OAuth2", + "externalReferences": [ + { + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-mechanism-oauth2", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ELY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AT4MEUQQ3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.3.9:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "wildfly-elytron-sasl-plain", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-plain@1.20.1.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.wildfly.security", + "bom-ref": "o.w.s:wildfly-elytron-sasl-plain:1.20.1.Final-redhat-00001#1", + "version": "1.20.1.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b57e5b90a216ec641597a6e337eeb210e49a6ba1", + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git#1.20.1.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "WildFly Security Plain SASL Implementation", + "externalReferences": [ + { + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-sasl-plain", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ELY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AT4MEUQQ3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.3.9:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "wildfly-elytron-sasl-scram", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-scram@1.20.1.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.wildfly.security", + "bom-ref": "o.w.s:wildfly-elytron-sasl-scram:1.20.1.Final-redhat-00001#1", + "version": "1.20.1.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b57e5b90a216ec641597a6e337eeb210e49a6ba1", + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git#1.20.1.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "WildFly Security SCRAM SASL Implementation", + "externalReferences": [ + { + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-sasl-scram", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ELY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AT4MEUQQ3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.3.9:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "wildfly-elytron-mechanism-scram", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-scram@1.20.1.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.wildfly.security", + "bom-ref": "o.w.s:wildfly-elytron-mechanism-scram:1.20.1.Final-redhat-00001#1", + "version": "1.20.1.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b57e5b90a216ec641597a6e337eeb210e49a6ba1", + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git#1.20.1.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "WildFly Security Mechanism SCRAM", + "externalReferences": [ + { + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-mechanism-scram", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ELY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/wildfly-security/wildfly-elytron.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AT4MEUQQ3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.3.9:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-jsonp-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-jsonp-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-jsonp-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "infinispan-server-testdriver-core", + "purl": "pkg:maven/org.infinispan/infinispan-server-testdriver-core@14.0.9.Final?type=jar", + "type": "library", + "group": "org.infinispan", + "bom-ref": "pkg:maven/org.infinispan/infinispan-server-testdriver-core@14.0.9.Final?type=jar", + "version": "14.0.9.Final", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "publisher": "JBoss, a division of Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Infinispan Server Test Driver Core", + "externalReferences": [ + { + "url": "http://www.infinispan.org/infinispan-server-parent/infinispan-testdriver-parent-pom/infinispan-server-testdriver-core", + "type": "website" + }, + { + "url": "https://ci.infinispan.org", + "type": "build-system" + }, + { + "url": "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ISPN", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/infinispan-issues/", + "type": "mailing-list" + }, + { + "url": "https://github.com/infinispan/infinispan", + "type": "vcs" + } + ] + }, + { + "name": "spymemcached", + "purl": "pkg:maven/net.spy/spymemcached@2.12.1?type=jar", + "type": "library", + "group": "net.spy", + "bom-ref": "pkg:maven/net.spy/spymemcached@2.12.1?type=jar", + "version": "2.12.1", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "central", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "A client library for memcached.", + "externalReferences": [ + { + "url": "http://www.couchbase.org/code/couchbase/java", + "type": "website" + }, + { + "url": "https://github.com/couchbase/spymemcached", + "type": "vcs" + } + ] + }, + { + "name": "infinispan-commons-test", + "purl": "pkg:maven/org.infinispan/infinispan-commons-test@14.0.9.Final?type=jar", + "type": "library", + "group": "org.infinispan", + "bom-ref": "pkg:maven/org.infinispan/infinispan-commons-test@14.0.9.Final?type=jar", + "version": "14.0.9.Final", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "publisher": "JBoss, a division of Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Infinispan Commons Test Dependencies", + "externalReferences": [ + { + "url": "http://www.infinispan.org/infinispan-commons-test", + "type": "website" + }, + { + "url": "https://ci.infinispan.org", + "type": "build-system" + }, + { + "url": "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ISPN", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/infinispan-issues/", + "type": "mailing-list" + }, + { + "url": "https://github.com/infinispan/infinispan", + "type": "vcs" + } + ] + }, + { + "name": "micrometer-core", + "purl": "pkg:maven/io.micrometer/micrometer-core@1.9.4.redhat-00001?type=jar", + "type": "library", + "group": "io.micrometer", + "bom-ref": "pkg:maven/io.micrometer/micrometer-core@1.9.4.redhat-00001?type=jar", + "version": "1.9.4.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "d449313630f99fb30a0d771078a3da645321391f", + "url": "https://code.engineering.redhat.com/gerrit/micrometer-metrics/micrometer.git#1.9.4.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Core module of Micrometer containing instrumentation API and implementation", + "externalReferences": [ + { + "url": "https://code.engineering.redhat.com/gerrit/micrometer-metrics/micrometer", + "type": "website" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/micrometer-metrics/micrometer.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUFMB5AJTVQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.14-9-mvn3.8.4-gradle7.3.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "HdrHistogram", + "purl": "pkg:maven/org.hdrhistogram/HdrHistogram@2.1.12.redhat-00004?type=jar", + "type": "library", + "group": "org.hdrhistogram", + "bom-ref": "pkg:maven/org.hdrhistogram/HdrHistogram@2.1.12.redhat-00004?type=jar", + "version": "2.1.12.redhat-00004", + "licenses": [ + { + "license": { + "id": "CC0-1.0" + } + }, + { + "license": { + "id": "BSD-2-Clause", + "url": "https://opensource.org/licenses/BSD-2-Clause" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c0eb1cd39690dee47fbb2f6c004986f7b11aa2fd", + "url": "https://code.engineering.redhat.com/gerrit/HdrHistogram/HdrHistogram.git#2.1.12.redhat-00004" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "HdrHistogram supports the recording and analyzing sampled data value counts across a configurable integer value range with configurable value precision within the range. Value precision is expressed as the number of significant digits in the value recording, and provides control over value quantization behavior across the value range and the subsequent value resolution at any given level.", + "externalReferences": [ + { + "url": "http://hdrhistogram.github.io/HdrHistogram/", + "type": "website" + }, + { + "url": "https://github.com/HdrHistogram/HdrHistogram/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/HdrHistogram/HdrHistogram.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A2PW6YTTIHQAY", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.3.9:1.0.5", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "LatencyUtils", + "purl": "pkg:maven/org.latencyutils/LatencyUtils@2.0.3?type=jar", + "type": "library", + "group": "org.latencyutils", + "bom-ref": "pkg:maven/org.latencyutils/LatencyUtils@2.0.3?type=jar", + "version": "2.0.3", + "licenses": [ + { + "license": { + "id": "CC0-1.0" + } + } + ], + "publisher": "central", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "LatencyUtils is a package that provides latency recording and reporting utilities.", + "externalReferences": [ + { + "url": "http://latencyutils.github.io/LatencyUtils/", + "type": "website" + }, + { + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://github.com/LatencyUtils/LatencyUtils/issues", + "type": "issue-tracker" + }, + { + "url": "https://github.com/LatencyUtils/LatencyUtils", + "type": "vcs" + } + ] + }, + { + "name": "micrometer-registry-prometheus", + "purl": "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.9.4.redhat-00001?type=jar", + "type": "library", + "group": "io.micrometer", + "bom-ref": "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.9.4.redhat-00001?type=jar", + "version": "1.9.4.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "d449313630f99fb30a0d771078a3da645321391f", + "url": "https://code.engineering.redhat.com/gerrit/micrometer-metrics/micrometer.git#1.9.4.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Application monitoring instrumentation facade", + "externalReferences": [ + { + "url": "https://code.engineering.redhat.com/gerrit/micrometer-metrics/micrometer", + "type": "website" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/micrometer-metrics/micrometer.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUFMB5AJTVQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.14-9-mvn3.8.4-gradle7.3.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "simpleclient_common", + "purl": "pkg:maven/io.prometheus/simpleclient_common@0.15.0.redhat-00001?type=jar", + "type": "library", + "group": "io.prometheus", + "bom-ref": "pkg:maven/io.prometheus/simpleclient_common@0.15.0.redhat-00001?type=jar", + "version": "0.15.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "3b753e25bf86c967e539fd6f3140cb8aed9dafc4", + "url": "https://code.engineering.redhat.com/gerrit/prometheus/client_java.git#0.15.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Common code used by various modules of the Simpleclient.", + "externalReferences": [ + { + "url": "http://github.com/prometheus/client_java/simpleclient_common", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/prometheus/client_java.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUAZZ5PE3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "simpleclient", + "purl": "pkg:maven/io.prometheus/simpleclient@0.15.0.redhat-00001?type=jar", + "type": "library", + "group": "io.prometheus", + "bom-ref": "pkg:maven/io.prometheus/simpleclient@0.15.0.redhat-00001?type=jar", + "version": "0.15.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "3b753e25bf86c967e539fd6f3140cb8aed9dafc4", + "url": "https://code.engineering.redhat.com/gerrit/prometheus/client_java.git#0.15.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Core instrumentation library for the simpleclient.", + "externalReferences": [ + { + "url": "http://github.com/prometheus/client_java/simpleclient", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/prometheus/client_java.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUAZZ5PE3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "simpleclient_tracer_otel", + "purl": "pkg:maven/io.prometheus/simpleclient_tracer_otel@0.15.0.redhat-00001?type=jar", + "type": "library", + "group": "io.prometheus", + "bom-ref": "pkg:maven/io.prometheus/simpleclient_tracer_otel@0.15.0.redhat-00001?type=jar", + "version": "0.15.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "3b753e25bf86c967e539fd6f3140cb8aed9dafc4", + "url": "https://code.engineering.redhat.com/gerrit/prometheus/client_java.git#0.15.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The Prometheus Java Suite: Client Metrics, Exposition, and Examples", + "externalReferences": [ + { + "url": "http://github.com/prometheus/client_java/simpleclient_tracer/simpleclient_tracer_otel", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/prometheus/client_java.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUAZZ5PE3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "simpleclient_tracer_common", + "purl": "pkg:maven/io.prometheus/simpleclient_tracer_common@0.15.0.redhat-00001?type=jar", + "type": "library", + "group": "io.prometheus", + "bom-ref": "pkg:maven/io.prometheus/simpleclient_tracer_common@0.15.0.redhat-00001?type=jar", + "version": "0.15.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "3b753e25bf86c967e539fd6f3140cb8aed9dafc4", + "url": "https://code.engineering.redhat.com/gerrit/prometheus/client_java.git#0.15.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The Prometheus Java Suite: Client Metrics, Exposition, and Examples", + "externalReferences": [ + { + "url": "http://github.com/prometheus/client_java/simpleclient_tracer/simpleclient_tracer_common", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/prometheus/client_java.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUAZZ5PE3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "simpleclient_tracer_otel_agent", + "purl": "pkg:maven/io.prometheus/simpleclient_tracer_otel_agent@0.15.0.redhat-00001?type=jar", + "type": "library", + "group": "io.prometheus", + "bom-ref": "pkg:maven/io.prometheus/simpleclient_tracer_otel_agent@0.15.0.redhat-00001?type=jar", + "version": "0.15.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "3b753e25bf86c967e539fd6f3140cb8aed9dafc4", + "url": "https://code.engineering.redhat.com/gerrit/prometheus/client_java.git#0.15.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The Prometheus Java Suite: Client Metrics, Exposition, and Examples", + "externalReferences": [ + { + "url": "http://github.com/prometheus/client_java/simpleclient_tracer/simpleclient_tracer_otel_agent", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/prometheus/client_java.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUAZZ5PE3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "infinispan-server-runtime", + "purl": "pkg:maven/org.infinispan/infinispan-server-runtime@14.0.9.Final?type=jar", + "type": "library", + "group": "org.infinispan", + "bom-ref": "pkg:maven/org.infinispan/infinispan-server-runtime@14.0.9.Final?type=jar", + "version": "14.0.9.Final", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "publisher": "JBoss, a division of Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Infinispan Server", + "externalReferences": [ + { + "url": "http://www.infinispan.org/infinispan-server-parent/infinispan-server-runtime", + "type": "website" + }, + { + "url": "https://ci.infinispan.org", + "type": "build-system" + }, + { + "url": "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ISPN", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/infinispan-issues/", + "type": "mailing-list" + }, + { + "url": "https://github.com/infinispan/infinispan", + "type": "vcs" + } + ] + }, + { + "name": "netty-incubator-transport-native-io_uring", + "purl": "pkg:maven/io.netty.incubator/netty-incubator-transport-native-io_uring@0.0.14.Final?type=jar", + "type": "library", + "group": "io.netty.incubator", + "bom-ref": "pkg:maven/io.netty.incubator/netty-incubator-transport-native-io_uring@0.0.14.Final?type=jar", + "version": "0.0.14.Final", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "The Netty Project", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Netty is an asynchronous event-driven network application framework for rapid development of maintainable high performance protocol servers and clients.", + "externalReferences": [ + { + "url": "https://netty.io/netty-incubator-transport-native-io_uring/", + "type": "website" + }, + { + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://github.com/netty/netty-incubator-transport-io_uring", + "type": "vcs" + } + ] + }, + { + "name": "netty-incubator-transport-classes-io_uring", + "purl": "pkg:maven/io.netty.incubator/netty-incubator-transport-classes-io_uring@0.0.14.Final?type=jar", + "type": "library", + "group": "io.netty.incubator", + "bom-ref": "pkg:maven/io.netty.incubator/netty-incubator-transport-classes-io_uring@0.0.14.Final?type=jar", + "version": "0.0.14.Final", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "The Netty Project", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Netty is an asynchronous event-driven network application framework for rapid development of maintainable high performance protocol servers and clients.", + "externalReferences": [ + { + "url": "https://netty.io/netty-incubator-transport-classes-io_uring/", + "type": "website" + }, + { + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://github.com/netty/netty-incubator-transport-io_uring", + "type": "vcs" + } + ] + }, + { + "name": "netty-incubator-transport-native-io_uring", + "purl": "pkg:maven/io.netty.incubator/netty-incubator-transport-native-io_uring@0.0.14.Final?classifier=linux-aarch_64&type=jar", + "type": "library", + "group": "io.netty.incubator", + "bom-ref": "pkg:maven/io.netty.incubator/netty-incubator-transport-native-io_uring@0.0.14.Final?classifier=linux-aarch_64&type=jar", + "version": "0.0.14.Final", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "The Netty Project", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Netty is an asynchronous event-driven network application framework for rapid development of maintainable high performance protocol servers and clients.", + "externalReferences": [ + { + "url": "https://netty.io/netty-incubator-transport-native-io_uring/", + "type": "website" + }, + { + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://github.com/netty/netty-incubator-transport-io_uring", + "type": "vcs" + } + ] + }, + { + "name": "netty-incubator-transport-native-io_uring", + "purl": "pkg:maven/io.netty.incubator/netty-incubator-transport-native-io_uring@0.0.14.Final?classifier=linux-x86_64&type=jar", + "type": "library", + "group": "io.netty.incubator", + "bom-ref": "pkg:maven/io.netty.incubator/netty-incubator-transport-native-io_uring@0.0.14.Final?classifier=linux-x86_64&type=jar", + "version": "0.0.14.Final", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "The Netty Project", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Netty is an asynchronous event-driven network application framework for rapid development of maintainable high performance protocol servers and clients.", + "externalReferences": [ + { + "url": "https://netty.io/netty-incubator-transport-native-io_uring/", + "type": "website" + }, + { + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://github.com/netty/netty-incubator-transport-io_uring", + "type": "vcs" + } + ] + }, + { + "name": "log4j-api", + "purl": "pkg:maven/org.apache.logging.log4j/log4j-api@2.19.0.redhat-00001?type=jar", + "type": "library", + "group": "org.apache.logging.log4j", + "bom-ref": "pkg:maven/org.apache.logging.log4j/log4j-api@2.19.0.redhat-00001?type=jar", + "version": "2.19.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "30f1a783476549dfbf166ed650000584238dfc21", + "url": "https://code.engineering.redhat.com/gerrit/apache/logging-log4j2.git#2.19.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The Apache Log4j API", + "externalReferences": [ + { + "url": "https://logging.apache.org/log4j/2.x/log4j-api/", + "type": "website" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AWI7P3EJ23YAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.apache.org/jira/browse/LOG4J2", + "type": "issue-tracker" + }, + { + "url": "https://lists.apache.org/list.html?log4j-user@logging.apache.org", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/apache/logging-log4j2.git", + "type": "vcs" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-j11-mvn3.6.2:1.0.5", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "log4j-core", + "purl": "pkg:maven/org.apache.logging.log4j/log4j-core@2.20.0?type=jar", + "type": "library", + "group": "org.apache.logging.log4j", + "bom-ref": "pkg:maven/org.apache.logging.log4j/log4j-core@2.20.0?type=jar", + "version": "2.20.0", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "The Apache Software Foundation", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The Apache Log4j Implementation", + "externalReferences": [ + { + "url": "https://logging.apache.org/log4j/2.x/log4j-core/", + "type": "website" + }, + { + "url": "https://github.com/apache/logging-log4j2/actions", + "type": "build-system" + }, + { + "url": "https://logging.apache.org/log4j/2.x/download.html", + "type": "distribution" + }, + { + "url": "https://github.com/apache/logging-log4j2/issues", + "type": "issue-tracker" + }, + { + "url": "https://lists.apache.org/list.html?log4j-user@logging.apache.org", + "type": "mailing-list" + }, + { + "url": "https://github.com/apache/logging-log4j2", + "type": "vcs" + } + ] + }, + { + "name": "log4j-jul", + "purl": "pkg:maven/org.apache.logging.log4j/log4j-jul@2.20.0?type=jar", + "type": "library", + "group": "org.apache.logging.log4j", + "bom-ref": "pkg:maven/org.apache.logging.log4j/log4j-jul@2.20.0?type=jar", + "version": "2.20.0", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "The Apache Software Foundation", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The Apache Log4j implementation of java.util.logging", + "externalReferences": [ + { + "url": "https://logging.apache.org/log4j/2.x/log4j-jul/", + "type": "website" + }, + { + "url": "https://github.com/apache/logging-log4j2/actions", + "type": "build-system" + }, + { + "url": "https://logging.apache.org/log4j/2.x/download.html", + "type": "distribution" + }, + { + "url": "https://github.com/apache/logging-log4j2/issues", + "type": "issue-tracker" + }, + { + "url": "https://lists.apache.org/list.html?log4j-user@logging.apache.org", + "type": "mailing-list" + }, + { + "url": "https://github.com/apache/logging-log4j2", + "type": "vcs" + } + ] + }, + { + "name": "log4j-slf4j-impl", + "purl": "pkg:maven/org.apache.logging.log4j/log4j-slf4j-impl@2.20.0?type=jar", + "type": "library", + "group": "org.apache.logging.log4j", + "bom-ref": "pkg:maven/org.apache.logging.log4j/log4j-slf4j-impl@2.20.0?type=jar", + "version": "2.20.0", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "The Apache Software Foundation", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The Apache Log4j SLF4J API binding to Log4j 2 Core", + "externalReferences": [ + { + "url": "https://logging.apache.org/log4j/2.x/log4j-slf4j-impl/", + "type": "website" + }, + { + "url": "https://github.com/apache/logging-log4j2/actions", + "type": "build-system" + }, + { + "url": "https://logging.apache.org/log4j/2.x/download.html", + "type": "distribution" + }, + { + "url": "https://github.com/apache/logging-log4j2/issues", + "type": "issue-tracker" + }, + { + "url": "https://lists.apache.org/list.html?log4j-user@logging.apache.org", + "type": "mailing-list" + }, + { + "url": "https://github.com/apache/logging-log4j2", + "type": "vcs" + } + ] + }, + { + "name": "javax.json", + "purl": "pkg:maven/org.glassfish/javax.json@1.1.4?type=jar", + "type": "library", + "group": "org.glassfish", + "bom-ref": "pkg:maven/org.glassfish/javax.json@1.1.4?type=jar", + "version": "1.1.4", + "licenses": [ + { + "expression": "(CDDL-1.1 OR GPL-2.0-only)" + } + ], + "publisher": "Oracle", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Default provider for JSR 374:Java API for Processing JSON", + "externalReferences": [ + { + "url": "https://javaee.github.io/jsonp", + "type": "website" + }, + { + "url": "https://maven.java.net/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://github.com/javaee/jsonp", + "type": "vcs" + } + ] + }, + { + "name": "infinispan-anchored-keys", + "purl": "pkg:maven/org.infinispan/infinispan-anchored-keys@14.0.9.Final?type=jar", + "type": "library", + "group": "org.infinispan", + "bom-ref": "pkg:maven/org.infinispan/infinispan-anchored-keys@14.0.9.Final?type=jar", + "version": "14.0.9.Final", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "publisher": "JBoss, a division of Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Infinispan Anchored Keys module", + "externalReferences": [ + { + "url": "http://www.infinispan.org/infinispan-anchored-keys", + "type": "website" + }, + { + "url": "https://ci.infinispan.org", + "type": "build-system" + }, + { + "url": "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ISPN", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/infinispan-issues/", + "type": "mailing-list" + }, + { + "url": "https://github.com/infinispan/infinispan", + "type": "vcs" + } + ] + }, + { + "name": "infinispan-core", + "purl": "pkg:maven/org.infinispan/infinispan-core@14.0.9.Final?type=jar", + "type": "library", + "group": "org.infinispan", + "bom-ref": "pkg:maven/org.infinispan/infinispan-core@14.0.9.Final?type=jar", + "version": "14.0.9.Final", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "publisher": "JBoss, a division of Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Infinispan core module", + "externalReferences": [ + { + "url": "http://www.infinispan.org/infinispan-core", + "type": "website" + }, + { + "url": "https://ci.infinispan.org", + "type": "build-system" + }, + { + "url": "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ISPN", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/infinispan-issues/", + "type": "mailing-list" + }, + { + "url": "https://github.com/infinispan/infinispan", + "type": "vcs" + } + ] + }, + { + "name": "jgroups", + "purl": "pkg:maven/org.jgroups/jgroups@5.2.12.Final?type=jar", + "type": "library", + "group": "org.jgroups", + "bom-ref": "pkg:maven/org.jgroups/jgroups@5.2.12.Final?type=jar", + "version": "5.2.12.Final", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "publisher": "JBoss, a division of Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Reliable cluster communication toolkit", + "externalReferences": [ + { + "url": "http://www.jgroups.org", + "type": "website" + }, + { + "url": "https://repository.jboss.org/nexus", + "type": "distribution" + }, + { + "url": "https://issues.redhat.com/browse/JGRP", + "type": "issue-tracker" + }, + { + "url": "https://github.com/belaban/JGroups", + "type": "vcs" + } + ] + }, + { + "name": "byteman-bmunit", + "purl": "pkg:maven/org.jboss.byteman/byteman-bmunit@4.0.20?type=jar", + "type": "library", + "group": "org.jboss.byteman", + "bom-ref": "pkg:maven/org.jboss.byteman/byteman-bmunit@4.0.20?type=jar", + "version": "4.0.20", + "licenses": [ + { + "license": { + "id": "LGPL-2.1-only" + } + } + ], + "publisher": "central", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The Byteman bmunit jar provides integration of Byteman into TestNG and JUnit tests.", + "externalReferences": [ + { + "url": "http://www.jboss.org/byteman/byteman-bmunit", + "type": "website" + }, + { + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2", + "type": "distribution" + }, + { + "url": "https://jira.jboss.org/jira/browse/BYTEMAN/", + "type": "issue-tracker" + }, + { + "url": "https://github.com/adinn/byteman", + "type": "vcs" + } + ] + }, + { + "name": "byteman", + "purl": "pkg:maven/org.jboss.byteman/byteman@4.0.20?type=jar", + "type": "library", + "group": "org.jboss.byteman", + "bom-ref": "pkg:maven/org.jboss.byteman/byteman@4.0.20?type=jar", + "version": "4.0.20", + "licenses": [ + { + "license": { + "id": "LGPL-2.1-only" + } + } + ], + "publisher": "central", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The byteman jar merges the byteman-agent jar contents with those of the byteman-jigsaw and byteman-layer jars as a mutli-release jar. The contents of the latter two jars are installed under META-INF/versions/9 ensuring that they are only linked when Byteman is deployed on a JDK9+ JVM", + "externalReferences": [ + { + "url": "http://www.jboss.org/byteman/byteman", + "type": "website" + }, + { + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2", + "type": "distribution" + }, + { + "url": "https://jira.jboss.org/jira/browse/BYTEMAN/", + "type": "issue-tracker" + }, + { + "url": "https://github.com/adinn/byteman", + "type": "vcs" + } + ] + }, + { + "name": "byteman-install", + "purl": "pkg:maven/org.jboss.byteman/byteman-install@4.0.20?type=jar", + "type": "library", + "group": "org.jboss.byteman", + "bom-ref": "pkg:maven/org.jboss.byteman/byteman-install@4.0.20?type=jar", + "version": "4.0.20", + "licenses": [ + { + "license": { + "id": "LGPL-2.1-only" + } + } + ], + "publisher": "central", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The Byteman install jar contains classes to install the Byteman agent into the current JVM or a remote JVM", + "externalReferences": [ + { + "url": "http://www.jboss.org/byteman/byteman-install", + "type": "website" + }, + { + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2", + "type": "distribution" + }, + { + "url": "https://jira.jboss.org/jira/browse/BYTEMAN/", + "type": "issue-tracker" + }, + { + "url": "https://github.com/adinn/byteman", + "type": "vcs" + } + ] + }, + { + "name": "byteman-submit", + "purl": "pkg:maven/org.jboss.byteman/byteman-submit@4.0.20?type=jar", + "type": "library", + "group": "org.jboss.byteman", + "bom-ref": "pkg:maven/org.jboss.byteman/byteman-submit@4.0.20?type=jar", + "version": "4.0.20", + "licenses": [ + { + "license": { + "id": "LGPL-2.1-only" + } + } + ], + "publisher": "central", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The Byteman install jar contains classes whcih canbe used to install an agent into the current JVM or into a remote JVM", + "externalReferences": [ + { + "url": "http://www.jboss.org/byteman/byteman-submit", + "type": "website" + }, + { + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2", + "type": "distribution" + }, + { + "url": "https://jira.jboss.org/jira/browse/BYTEMAN/", + "type": "issue-tracker" + }, + { + "url": "https://github.com/adinn/byteman", + "type": "vcs" + } + ] + }, + { + "name": "infinispan-cachestore-jdbc", + "purl": "pkg:maven/org.infinispan/infinispan-cachestore-jdbc@14.0.9.Final?type=jar", + "type": "library", + "group": "org.infinispan", + "bom-ref": "pkg:maven/org.infinispan/infinispan-cachestore-jdbc@14.0.9.Final?type=jar", + "version": "14.0.9.Final", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "publisher": "JBoss, a division of Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Infinispan JDBC CacheStore module", + "externalReferences": [ + { + "url": "http://www.infinispan.org/infinispan-persistence-parent/infinispan-cachestore-jdbc", + "type": "website" + }, + { + "url": "https://ci.infinispan.org", + "type": "build-system" + }, + { + "url": "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ISPN", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/infinispan-issues/", + "type": "mailing-list" + }, + { + "url": "https://github.com/infinispan/infinispan", + "type": "vcs" + } + ] + }, + { + "name": "infinispan-cachestore-jdbc-common", + "purl": "pkg:maven/org.infinispan/infinispan-cachestore-jdbc-common@14.0.9.Final?type=jar", + "type": "library", + "group": "org.infinispan", + "bom-ref": "pkg:maven/org.infinispan/infinispan-cachestore-jdbc-common@14.0.9.Final?type=jar", + "version": "14.0.9.Final", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "publisher": "JBoss, a division of Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Infinispan JDBC CacheStore Common module", + "externalReferences": [ + { + "url": "http://www.infinispan.org/infinispan-persistence-parent/infinispan-cachestore-jdbc-common", + "type": "website" + }, + { + "url": "https://ci.infinispan.org", + "type": "build-system" + }, + { + "url": "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ISPN", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/infinispan-issues/", + "type": "mailing-list" + }, + { + "url": "https://github.com/infinispan/infinispan", + "type": "vcs" + } + ] + }, + { + "name": "infinispan-cachestore-remote", + "purl": "pkg:maven/org.infinispan/infinispan-cachestore-remote@14.0.9.Final?type=jar", + "type": "library", + "group": "org.infinispan", + "bom-ref": "pkg:maven/org.infinispan/infinispan-cachestore-remote@14.0.9.Final?type=jar", + "version": "14.0.9.Final", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "publisher": "JBoss, a division of Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Infinispan remote CacheStore based on Hot Rod protocol", + "externalReferences": [ + { + "url": "http://www.infinispan.org/infinispan-persistence-parent/infinispan-cachestore-remote", + "type": "website" + }, + { + "url": "https://ci.infinispan.org", + "type": "build-system" + }, + { + "url": "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ISPN", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/infinispan-issues/", + "type": "mailing-list" + }, + { + "url": "https://github.com/infinispan/infinispan", + "type": "vcs" + } + ] + }, + { + "name": "infinispan-multimap", + "purl": "pkg:maven/org.infinispan/infinispan-multimap@14.0.9.Final?type=jar", + "type": "library", + "group": "org.infinispan", + "bom-ref": "pkg:maven/org.infinispan/infinispan-multimap@14.0.9.Final?type=jar", + "version": "14.0.9.Final", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "publisher": "JBoss, a division of Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Infinispan Multimap module", + "externalReferences": [ + { + "url": "http://www.infinispan.org/infinispan-multimap", + "type": "website" + }, + { + "url": "https://ci.infinispan.org", + "type": "build-system" + }, + { + "url": "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ISPN", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/infinispan-issues/", + "type": "mailing-list" + }, + { + "url": "https://github.com/infinispan/infinispan", + "type": "vcs" + } + ] + }, + { + "name": "infinispan-cachestore-rocksdb", + "purl": "pkg:maven/org.infinispan/infinispan-cachestore-rocksdb@14.0.9.Final?type=jar", + "type": "library", + "group": "org.infinispan", + "bom-ref": "pkg:maven/org.infinispan/infinispan-cachestore-rocksdb@14.0.9.Final?type=jar", + "version": "14.0.9.Final", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "publisher": "JBoss, a division of Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Infinispan RocksDB CacheStore module", + "externalReferences": [ + { + "url": "http://www.infinispan.org/infinispan-persistence-parent/infinispan-cachestore-rocksdb", + "type": "website" + }, + { + "url": "https://ci.infinispan.org", + "type": "build-system" + }, + { + "url": "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ISPN", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/infinispan-issues/", + "type": "mailing-list" + }, + { + "url": "https://github.com/infinispan/infinispan", + "type": "vcs" + } + ] + }, + { + "name": "infinispan-cachestore-sql", + "purl": "pkg:maven/org.infinispan/infinispan-cachestore-sql@14.0.9.Final?type=jar", + "type": "library", + "group": "org.infinispan", + "bom-ref": "pkg:maven/org.infinispan/infinispan-cachestore-sql@14.0.9.Final?type=jar", + "version": "14.0.9.Final", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "publisher": "JBoss, a division of Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Infinispan SQL CacheStore module", + "externalReferences": [ + { + "url": "http://www.infinispan.org/infinispan-persistence-parent/infinispan-cachestore-sql", + "type": "website" + }, + { + "url": "https://ci.infinispan.org", + "type": "build-system" + }, + { + "url": "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ISPN", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/infinispan-issues/", + "type": "mailing-list" + }, + { + "url": "https://github.com/infinispan/infinispan", + "type": "vcs" + } + ] + }, + { + "name": "infinispan-cli-client", + "purl": "pkg:maven/org.infinispan/infinispan-cli-client@14.0.9.Final?type=jar", + "type": "library", + "group": "org.infinispan", + "bom-ref": "pkg:maven/org.infinispan/infinispan-cli-client@14.0.9.Final?type=jar", + "version": "14.0.9.Final", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "publisher": "JBoss, a division of Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Infinispan CLI Client module", + "externalReferences": [ + { + "url": "http://www.infinispan.org/infinispan-cli-client", + "type": "website" + }, + { + "url": "https://ci.infinispan.org", + "type": "build-system" + }, + { + "url": "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ISPN", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/infinispan-issues/", + "type": "mailing-list" + }, + { + "url": "https://github.com/infinispan/infinispan", + "type": "vcs" + } + ] + }, + { + "name": "infinispan-client-rest", + "purl": "pkg:maven/org.infinispan/infinispan-client-rest@14.0.9.Final?type=jar", + "type": "library", + "group": "org.infinispan", + "bom-ref": "pkg:maven/org.infinispan/infinispan-client-rest@14.0.9.Final?type=jar", + "version": "14.0.9.Final", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "publisher": "JBoss, a division of Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Infinispan REST Client", + "externalReferences": [ + { + "url": "http://www.infinispan.org/infinispan-client-rest", + "type": "website" + }, + { + "url": "https://ci.infinispan.org", + "type": "build-system" + }, + { + "url": "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ISPN", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/infinispan-issues/", + "type": "mailing-list" + }, + { + "url": "https://github.com/infinispan/infinispan", + "type": "vcs" + } + ] + }, + { + "name": "okhttp-sse", + "purl": "pkg:maven/com.squareup.okhttp3/okhttp-sse@3.14.9?type=jar", + "type": "library", + "group": "com.squareup.okhttp3", + "bom-ref": "pkg:maven/com.squareup.okhttp3/okhttp-sse@3.14.9?type=jar", + "version": "3.14.9", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "central", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "An HTTP+HTTP/2 client for Android and Java applications", + "externalReferences": [ + { + "url": "https://github.com/square/okhttp/okhttp-sse", + "type": "website" + }, + { + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://github.com/square/okhttp/issues", + "type": "issue-tracker" + }, + { + "url": "https://github.com/square/okhttp", + "type": "vcs" + } + ] + }, + { + "name": "wildfly-elytron-credential-store", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-credential-store@1.20.1.Final?type=jar", + "type": "library", + "group": "org.wildfly.security", + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-credential-store@1.20.1.Final?type=jar", + "version": "1.20.1.Final", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "publisher": "JBoss by Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "WildFly Security Credential Store SPIs and implementaions", + "externalReferences": [ + { + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-credential-store", + "type": "website" + }, + { + "url": "https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ELY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://github.com/wildfly-security/wildfly-elytron", + "type": "vcs" + } + ] + }, + { + "name": "wildfly-elytron-encryption", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-encryption@1.20.1.Final?type=jar", + "type": "library", + "group": "org.wildfly.security", + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-encryption@1.20.1.Final?type=jar", + "version": "1.20.1.Final", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "publisher": "JBoss by Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "WildFly Security Encryption", + "externalReferences": [ + { + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-encryption", + "type": "website" + }, + { + "url": "https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ELY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://github.com/wildfly-security/wildfly-elytron", + "type": "vcs" + } + ] + }, + { + "name": "infinispan-cloudevents-integration", + "purl": "pkg:maven/org.infinispan/infinispan-cloudevents-integration@14.0.9.Final?type=jar", + "type": "library", + "group": "org.infinispan", + "bom-ref": "pkg:maven/org.infinispan/infinispan-cloudevents-integration@14.0.9.Final?type=jar", + "version": "14.0.9.Final", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "publisher": "JBoss, a division of Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Infinispan CloudEvents Integration module", + "externalReferences": [ + { + "url": "http://www.infinispan.org/infinispan-cloudevents-integration", + "type": "website" + }, + { + "url": "https://ci.infinispan.org", + "type": "build-system" + }, + { + "url": "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ISPN", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/infinispan-issues/", + "type": "mailing-list" + }, + { + "url": "https://github.com/infinispan/infinispan", + "type": "vcs" + } + ] + }, + { + "name": "kafka-clients", + "purl": "pkg:maven/org.apache.kafka/kafka-clients@3.2.3.redhat-00016?type=jar", + "type": "library", + "group": "org.apache.kafka", + "bom-ref": "pkg:maven/org.apache.kafka/kafka-clients@3.2.3.redhat-00016?type=jar", + "version": "3.2.3.redhat-00016", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "d97480f0ee921aed0a763deb5f91377c23818992", + "url": "https://code.engineering.redhat.com/gerrit/apache/kafka.git#3.2.3.redhat-00016-d97480f0" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "externalReferences": [ + { + "url": "https://kafka.apache.org", + "type": "website" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/apache/kafka.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A33HOJCJKMYAI", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3-gradle7.1.1:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "zstd-jni", + "purl": "pkg:maven/com.github.luben/zstd-jni@1.5.2.3-redhat-00002?type=jar", + "type": "library", + "group": "com.github.luben", + "bom-ref": "pkg:maven/com.github.luben/zstd-jni@1.5.2.3-redhat-00002?type=jar", + "version": "1.5.2.3-redhat-00002", + "pedigree": { + "commits": [ + { + "uid": "188e17f2ea8a6ae4d13262c68ea7f291bd579455", + "url": "https://code.engineering.redhat.com/gerrit/luben/zstd-jni.git#repour-188e17f2ea8a6ae4d13262c68ea7f291bd579455" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "externalReferences": [ + { + "url": "https://code.engineering.redhat.com/gerrit/luben/zstd-jni.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AS435CSNCPIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3-sbt1.5.5-gcc-cpp-make:1.0.2", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "lz4-java", + "purl": "pkg:maven/org.lz4/lz4-java@1.8.0.redhat-00005?type=jar", + "type": "library", + "group": "org.lz4", + "bom-ref": "pkg:maven/org.lz4/lz4-java@1.8.0.redhat-00005?type=jar", + "version": "1.8.0.redhat-00005", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "47a1295d9213e19af51fb7380920898d87ce74e7", + "url": "https://code.engineering.redhat.com/gerrit/lz4/lz4-java.git#1.8.0.redhat-00005" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Java ports and bindings of the LZ4 compression algorithm and the xxHash hashing algorithm", + "externalReferences": [ + { + "url": "https://github.com/lz4/lz4-java", + "type": "website" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/lz4/lz4-java.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A2PW6YTTYHQAW", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.6", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "snappy-java", + "purl": "pkg:maven/org.xerial.snappy/snappy-java@1.1.10.5-redhat-00001?type=jar", + "type": "library", + "group": "org.xerial.snappy", + "bom-ref": "pkg:maven/org.xerial.snappy/snappy-java@1.1.10.5-redhat-00001?type=jar", + "version": "1.1.10.5-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "339cf7d21d188ab7c3b94394d5eb67ce468a8c69", + "url": "https://code.engineering.redhat.com/gerrit/snappy-java.git#1.1.10.5-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "snappy-java: A fast compression/decompression library", + "externalReferences": [ + { + "url": "https://github.com/xerial/snappy-java", + "type": "website" + }, + { + "url": "http://github.com/xerial/snappy-java/issues/list", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/snappy-java.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A4BDYHTEQZQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.3", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "infinispan-jboss-marshalling", + "purl": "pkg:maven/org.infinispan/infinispan-jboss-marshalling@14.0.9.Final?type=jar", + "type": "library", + "group": "org.infinispan", + "bom-ref": "pkg:maven/org.infinispan/infinispan-jboss-marshalling@14.0.9.Final?type=jar", + "version": "14.0.9.Final", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "publisher": "JBoss, a division of Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Infinispan common parent POM module", + "externalReferences": [ + { + "url": "http://www.infinispan.org/infinispan-jboss-marshalling", + "type": "website" + }, + { + "url": "https://ci.infinispan.org", + "type": "build-system" + }, + { + "url": "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ISPN", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/infinispan-issues/", + "type": "mailing-list" + }, + { + "url": "https://github.com/infinispan/infinispan", + "type": "vcs" + } + ] + }, + { + "name": "jboss-marshalling-osgi", + "purl": "pkg:maven/org.jboss.marshalling/jboss-marshalling-osgi@2.1.1.Final?type=jar", + "type": "library", + "group": "org.jboss.marshalling", + "bom-ref": "pkg:maven/org.jboss.marshalling/jboss-marshalling-osgi@2.1.1.Final?type=jar", + "version": "2.1.1.Final", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "publisher": "JBoss by Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "JBoss Marshalling OSGi Bundle with API and implementations", + "externalReferences": [ + { + "url": "http://www.jboss.org/jboss-marshalling-parent/jboss-marshalling-osgi", + "type": "website" + }, + { + "url": "https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "org.jboss.marshalling:jboss-marshalling-parent", + "type": "vcs" + } + ] + }, + { + "name": "infinispan-remote-query-server", + "purl": "pkg:maven/org.infinispan/infinispan-remote-query-server@14.0.9.Final?type=jar", + "type": "library", + "group": "org.infinispan", + "bom-ref": "pkg:maven/org.infinispan/infinispan-remote-query-server@14.0.9.Final?type=jar", + "version": "14.0.9.Final", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "publisher": "JBoss, a division of Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Infinispan Remote Query Server module", + "externalReferences": [ + { + "url": "http://www.infinispan.org/infinispan-remote-query-server", + "type": "website" + }, + { + "url": "https://ci.infinispan.org", + "type": "build-system" + }, + { + "url": "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ISPN", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/infinispan-issues/", + "type": "mailing-list" + }, + { + "url": "https://github.com/infinispan/infinispan", + "type": "vcs" + } + ] + }, + { + "name": "infinispan-query", + "purl": "pkg:maven/org.infinispan/infinispan-query@14.0.9.Final?type=jar", + "type": "library", + "group": "org.infinispan", + "bom-ref": "pkg:maven/org.infinispan/infinispan-query@14.0.9.Final?type=jar", + "version": "14.0.9.Final", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "publisher": "JBoss, a division of Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Infinispan Query module", + "externalReferences": [ + { + "url": "http://www.infinispan.org/infinispan-query", + "type": "website" + }, + { + "url": "https://ci.infinispan.org", + "type": "build-system" + }, + { + "url": "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ISPN", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/infinispan-issues/", + "type": "mailing-list" + }, + { + "url": "https://github.com/infinispan/infinispan", + "type": "vcs" + } + ] + }, + { + "name": "hibernate-search-backend-lucene", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-backend-lucene@6.1.5.Final?type=jar", + "type": "library", + "group": "org.hibernate.search", + "bom-ref": "pkg:maven/org.hibernate.search/hibernate-search-backend-lucene@6.1.5.Final?type=jar", + "version": "6.1.5.Final", + "licenses": [ + { + "license": { + "id": "LGPL-2.1+", + "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" + } + } + ], + "publisher": "Hibernate", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Hibernate Search Backend relying on embedded instances of Lucene", + "externalReferences": [ + { + "url": "http://hibernate.org/search/hibernate-search-parent-public/hibernate-search-backend-lucene/", + "type": "website" + }, + { + "url": "https://ci.hibernate.org/job/hibernate-search/", + "type": "build-system" + }, + { + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://hibernate.atlassian.net/browse/HSEARCH", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/hibernate-dev/", + "type": "mailing-list" + }, + { + "url": "https://github.com/hibernate/hibernate-search", + "type": "vcs" + } + ] + }, + { + "name": "lucene-analyzers-common", + "purl": "pkg:maven/org.apache.lucene/lucene-analyzers-common@8.11.1?type=jar", + "type": "library", + "group": "org.apache.lucene", + "bom-ref": "pkg:maven/org.apache.lucene/lucene-analyzers-common@8.11.1?type=jar", + "version": "8.11.1", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "The Apache Software Foundation", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Additional Analyzers", + "externalReferences": [ + { + "url": "https://lucene.apache.org/lucene-parent/lucene-analyzers-common", + "type": "website" + }, + { + "url": "https://builds.apache.org/computer/lucene/", + "type": "build-system" + }, + { + "url": "https://repository.apache.org/service/local/staging/deploy/maven2", + "type": "distribution" + }, + { + "url": "https://issues.apache.org/jira/browse/LUCENE", + "type": "issue-tracker" + }, + { + "url": "https://mail-archives.apache.org/mod_mbox/lucene-general/", + "type": "mailing-list" + } + ] + }, + { + "name": "lucene-core", + "purl": "pkg:maven/org.apache.lucene/lucene-core@8.11.1?type=jar", + "type": "library", + "group": "org.apache.lucene", + "bom-ref": "pkg:maven/org.apache.lucene/lucene-core@8.11.1?type=jar", + "version": "8.11.1", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "The Apache Software Foundation", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Apache Lucene Java Core", + "externalReferences": [ + { + "url": "https://lucene.apache.org/lucene-parent/lucene-core", + "type": "website" + }, + { + "url": "https://builds.apache.org/computer/lucene/", + "type": "build-system" + }, + { + "url": "https://repository.apache.org/service/local/staging/deploy/maven2", + "type": "distribution" + }, + { + "url": "https://issues.apache.org/jira/browse/LUCENE", + "type": "issue-tracker" + }, + { + "url": "https://mail-archives.apache.org/mod_mbox/lucene-general/", + "type": "mailing-list" + } + ] + }, + { + "name": "lucene-facet", + "purl": "pkg:maven/org.apache.lucene/lucene-facet@8.11.1?type=jar", + "type": "library", + "group": "org.apache.lucene", + "bom-ref": "pkg:maven/org.apache.lucene/lucene-facet@8.11.1?type=jar", + "version": "8.11.1", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "The Apache Software Foundation", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Package for Faceted Indexing and Search", + "externalReferences": [ + { + "url": "https://lucene.apache.org/lucene-parent/lucene-facet", + "type": "website" + }, + { + "url": "https://builds.apache.org/computer/lucene/", + "type": "build-system" + }, + { + "url": "https://repository.apache.org/service/local/staging/deploy/maven2", + "type": "distribution" + }, + { + "url": "https://issues.apache.org/jira/browse/LUCENE", + "type": "issue-tracker" + }, + { + "url": "https://mail-archives.apache.org/mod_mbox/lucene-general/", + "type": "mailing-list" + } + ] + }, + { + "name": "hppc", + "purl": "pkg:maven/com.carrotsearch/hppc@0.8.1?type=jar", + "type": "library", + "group": "com.carrotsearch", + "bom-ref": "pkg:maven/com.carrotsearch/hppc@0.8.1?type=jar", + "version": "0.8.1", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "Carrot Search s.c.", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "High Performance Primitive Collections. Fundamental data structures (maps, sets, lists, stacks, queues) generated for combinations of object and primitive types to conserve JVM memory and speed up execution.", + "externalReferences": [ + { + "url": "http://labs.carrotsearch.com/hppc.html/hppc", + "type": "website" + }, + { + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "http://issues.carrot2.org/browse/HPPC", + "type": "issue-tracker" + }, + { + "url": "java-high-performance-primitive-collections+subscribe@googlegroups.com", + "type": "mailing-list" + }, + { + "url": "https://github.com/carrotsearch/hppc", + "type": "vcs" + } + ] + }, + { + "name": "lucene-join", + "purl": "pkg:maven/org.apache.lucene/lucene-join@8.11.1?type=jar", + "type": "library", + "group": "org.apache.lucene", + "bom-ref": "pkg:maven/org.apache.lucene/lucene-join@8.11.1?type=jar", + "version": "8.11.1", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "The Apache Software Foundation", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Lucene Join Module", + "externalReferences": [ + { + "url": "https://lucene.apache.org/lucene-parent/lucene-join", + "type": "website" + }, + { + "url": "https://builds.apache.org/computer/lucene/", + "type": "build-system" + }, + { + "url": "https://repository.apache.org/service/local/staging/deploy/maven2", + "type": "distribution" + }, + { + "url": "https://issues.apache.org/jira/browse/LUCENE", + "type": "issue-tracker" + }, + { + "url": "https://mail-archives.apache.org/mod_mbox/lucene-general/", + "type": "mailing-list" + } + ] + }, + { + "name": "lucene-queryparser", + "purl": "pkg:maven/org.apache.lucene/lucene-queryparser@8.11.1?type=jar", + "type": "library", + "group": "org.apache.lucene", + "bom-ref": "pkg:maven/org.apache.lucene/lucene-queryparser@8.11.1?type=jar", + "version": "8.11.1", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "The Apache Software Foundation", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Lucene QueryParsers module", + "externalReferences": [ + { + "url": "https://lucene.apache.org/lucene-parent/lucene-queryparser", + "type": "website" + }, + { + "url": "https://builds.apache.org/computer/lucene/", + "type": "build-system" + }, + { + "url": "https://repository.apache.org/service/local/staging/deploy/maven2", + "type": "distribution" + }, + { + "url": "https://issues.apache.org/jira/browse/LUCENE", + "type": "issue-tracker" + }, + { + "url": "https://mail-archives.apache.org/mod_mbox/lucene-general/", + "type": "mailing-list" + } + ] + }, + { + "name": "lucene-queries", + "purl": "pkg:maven/org.apache.lucene/lucene-queries@8.11.1?type=jar", + "type": "library", + "group": "org.apache.lucene", + "bom-ref": "pkg:maven/org.apache.lucene/lucene-queries@8.11.1?type=jar", + "version": "8.11.1", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "The Apache Software Foundation", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Lucene Queries Module", + "externalReferences": [ + { + "url": "https://lucene.apache.org/lucene-parent/lucene-queries", + "type": "website" + }, + { + "url": "https://builds.apache.org/computer/lucene/", + "type": "build-system" + }, + { + "url": "https://repository.apache.org/service/local/staging/deploy/maven2", + "type": "distribution" + }, + { + "url": "https://issues.apache.org/jira/browse/LUCENE", + "type": "issue-tracker" + }, + { + "url": "https://mail-archives.apache.org/mod_mbox/lucene-general/", + "type": "mailing-list" + } + ] + }, + { + "name": "hibernate-search-mapper-pojo-base", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-mapper-pojo-base@6.1.7.Final-redhat-00002?type=jar", + "type": "library", + "group": "org.hibernate.search", + "bom-ref": "o.h.s:hibernate-search-mapper-pojo-base:6.1.7.Final-redhat-00002#1", + "version": "6.1.7.Final-redhat-00002", + "licenses": [ + { + "license": { + "id": "LGPL-2.1+", + "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "a627d652512d1db3e2bc2812bc7f9ee50e81f6bc", + "url": "https://code.engineering.redhat.com/gerrit/hibernate/hibernate-search.git#6.1.7.Final-redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Abstract base and common implementations for Hibernate Search Mappers for POJOs", + "externalReferences": [ + { + "url": "http://hibernate.org/search/hibernate-search-parent-public/hibernate-search-mapper-pojo-base/", + "type": "website" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AWOEXFNS23QAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://hibernate.atlassian.net/browse/HSEARCH", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/hibernate-dev/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/hibernate/hibernate-search.git", + "type": "vcs" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.14-9-mvn3.8.4-gradle7.4.2:1.0.2", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "hibernate-commons-annotations", + "purl": "pkg:maven/org.hibernate.common/hibernate-commons-annotations@5.1.2.Final?type=jar", + "type": "library", + "group": "org.hibernate.common", + "bom-ref": "pkg:maven/org.hibernate.common/hibernate-commons-annotations@5.1.2.Final?type=jar", + "version": "5.1.2.Final", + "licenses": [ + { + "license": { + "id": "LGPL-2.1-only", + "url": "https://opensource.org/licenses/LGPL-2.1" + } + } + ], + "publisher": "Hibernate.org", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Common reflection code used in support of annotation processing", + "externalReferences": [ + { + "url": "http://hibernate.org", + "type": "website" + }, + { + "url": "https://hibernate.atlassian.net/browse/HCANN", + "type": "issue-tracker" + }, + { + "url": "https://github.com/hibernate/hibernate-commons-annotations", + "type": "vcs" + } + ] + }, + { + "name": "hibernate-search-v5migrationhelper-engine", + "purl": "pkg:maven/org.hibernate.search/hibernate-search-v5migrationhelper-engine@6.1.5.Final?type=jar", + "type": "library", + "group": "org.hibernate.search", + "bom-ref": "pkg:maven/org.hibernate.search/hibernate-search-v5migrationhelper-engine@6.1.5.Final?type=jar", + "version": "6.1.5.Final", + "licenses": [ + { + "license": { + "id": "LGPL-2.1+", + "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" + } + } + ], + "publisher": "Hibernate", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Helper to migrate from Hibernate Search 5 to 6, providing partial support for Hibernate Search 5 Engine APIs on top of Hibernate Search 6", + "externalReferences": [ + { + "url": "http://hibernate.org/search/hibernate-search-parent-public/hibernate-search-v5migrationhelper-engine/", + "type": "website" + }, + { + "url": "https://ci.hibernate.org/job/hibernate-search/", + "type": "build-system" + }, + { + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://hibernate.atlassian.net/browse/HSEARCH", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/hibernate-dev/", + "type": "mailing-list" + }, + { + "url": "https://github.com/hibernate/hibernate-search", + "type": "vcs" + } + ] + }, + { + "name": "infinispan-clustered-lock", + "purl": "pkg:maven/org.infinispan/infinispan-clustered-lock@14.0.9.Final?type=jar", + "type": "library", + "group": "org.infinispan", + "bom-ref": "pkg:maven/org.infinispan/infinispan-clustered-lock@14.0.9.Final?type=jar", + "version": "14.0.9.Final", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "publisher": "JBoss, a division of Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Infinispan Clustered Lock module", + "externalReferences": [ + { + "url": "http://www.infinispan.org/infinispan-clustered-lock", + "type": "website" + }, + { + "url": "https://ci.infinispan.org", + "type": "build-system" + }, + { + "url": "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ISPN", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/infinispan-issues/", + "type": "mailing-list" + }, + { + "url": "https://github.com/infinispan/infinispan", + "type": "vcs" + } + ] + }, + { + "name": "infinispan-objectfilter", + "purl": "pkg:maven/org.infinispan/infinispan-objectfilter@14.0.9.Final?type=jar", + "type": "library", + "group": "org.infinispan", + "bom-ref": "pkg:maven/org.infinispan/infinispan-objectfilter@14.0.9.Final?type=jar", + "version": "14.0.9.Final", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "publisher": "JBoss, a division of Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Infinispan Object Querying and Filtering based on Ickle, a JP-QL subset", + "externalReferences": [ + { + "url": "http://www.infinispan.org/infinispan-objectfilter", + "type": "website" + }, + { + "url": "https://ci.infinispan.org", + "type": "build-system" + }, + { + "url": "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ISPN", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/infinispan-issues/", + "type": "mailing-list" + }, + { + "url": "https://github.com/infinispan/infinispan", + "type": "vcs" + } + ] + }, + { + "name": "infinispan-query-core", + "purl": "pkg:maven/org.infinispan/infinispan-query-core@14.0.9.Final?type=jar", + "type": "library", + "group": "org.infinispan", + "bom-ref": "pkg:maven/org.infinispan/infinispan-query-core@14.0.9.Final?type=jar", + "version": "14.0.9.Final", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "publisher": "JBoss, a division of Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Zero calories query for Infinispan caches (no indexing)", + "externalReferences": [ + { + "url": "http://www.infinispan.org/infinispan-query-core", + "type": "website" + }, + { + "url": "https://ci.infinispan.org", + "type": "build-system" + }, + { + "url": "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ISPN", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/infinispan-issues/", + "type": "mailing-list" + }, + { + "url": "https://github.com/infinispan/infinispan", + "type": "vcs" + } + ] + }, + { + "name": "infinispan-server-core", + "purl": "pkg:maven/org.infinispan/infinispan-server-core@14.0.9.Final?type=jar", + "type": "library", + "group": "org.infinispan", + "bom-ref": "pkg:maven/org.infinispan/infinispan-server-core@14.0.9.Final?type=jar", + "version": "14.0.9.Final", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "publisher": "JBoss, a division of Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Infinispan Server - Core Components", + "externalReferences": [ + { + "url": "http://www.infinispan.org/infinispan-server-parent/infinispan-server-core", + "type": "website" + }, + { + "url": "https://ci.infinispan.org", + "type": "build-system" + }, + { + "url": "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ISPN", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/infinispan-issues/", + "type": "mailing-list" + }, + { + "url": "https://github.com/infinispan/infinispan", + "type": "vcs" + } + ] + }, + { + "name": "xstream", + "purl": "pkg:maven/com.thoughtworks.xstream/xstream@1.4.20?type=jar", + "type": "library", + "group": "com.thoughtworks.xstream", + "bom-ref": "pkg:maven/com.thoughtworks.xstream/xstream@1.4.20?type=jar", + "version": "1.4.20", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "url": "https://opensource.org/licenses/BSD-3-Clause" + } + } + ], + "publisher": "XStream", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "XStream is a serialization library from Java objects to XML and back.", + "externalReferences": [ + { + "url": "http://x-stream.github.io/xstream", + "type": "website" + }, + { + "url": "https://travis-ci.org/x-stream/xstream", + "type": "build-system" + }, + { + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2", + "type": "distribution" + }, + { + "url": "https://github.com/x-stream/xstream/issues/", + "type": "issue-tracker" + }, + { + "url": "https://groups.google.com/forum/#!forum/xstream-user", + "type": "mailing-list" + }, + { + "url": "https://github.com/x-stream/xstream", + "type": "vcs" + } + ] + }, + { + "name": "netty-transport-native-epoll", + "purl": "pkg:maven/io.netty/netty-transport-native-epoll@4.1.100.Final-redhat-00001?type=jar", + "type": "library", + "group": "io.netty", + "bom-ref": "pkg:maven/io.netty/netty-transport-native-epoll@4.1.100.Final-redhat-00001?type=jar", + "version": "4.1.100.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "0ff281ddc94bdea956407aa94ddda3eefe1e9201", + "url": "https://code.engineering.redhat.com/gerrit/netty/netty.git#4.1.100.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Netty is an asynchronous event-driven network application framework for rapid development of maintainable high performance protocol servers and clients.", + "externalReferences": [ + { + "url": "https://netty.io/netty-transport-native-epoll/", + "type": "website" + }, + { + "url": "https://issues.jboss.org/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/netty/netty.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A3X7AQ2N2MYAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-oraclejdk8u192-mvn3.6.3-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "netty-transport-native-epoll", + "purl": "pkg:maven/io.netty/netty-transport-native-epoll@4.1.100.Final?classifier=linux-aarch_64&type=jar", + "type": "library", + "group": "io.netty", + "bom-ref": "pkg:maven/io.netty/netty-transport-native-epoll@4.1.100.Final?classifier=linux-aarch_64&type=jar", + "version": "4.1.100.Final", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "The Netty Project", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Netty is an asynchronous event-driven network application framework for rapid development of maintainable high performance protocol servers and clients.", + "externalReferences": [ + { + "url": "https://netty.io/netty-transport-native-epoll/", + "type": "website" + }, + { + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://github.com/netty/netty", + "type": "vcs" + } + ] + }, + { + "name": "opentelemetry-exporter-otlp", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-exporter-otlp@1.17.0?type=jar", + "type": "library", + "group": "io.opentelemetry", + "bom-ref": "pkg:maven/io.opentelemetry/opentelemetry-exporter-otlp@1.17.0?type=jar", + "version": "1.17.0", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "central", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "OpenTelemetry Protocol (OTLP) Exporters", + "externalReferences": [ + { + "url": "https://github.com/open-telemetry/opentelemetry-java", + "type": "website" + }, + { + "url": "https://github.com/open-telemetry/opentelemetry-java", + "type": "vcs" + } + ] + }, + { + "name": "opentelemetry-exporter-otlp-common", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-exporter-otlp-common@1.17.0?type=jar", + "type": "library", + "group": "io.opentelemetry", + "bom-ref": "pkg:maven/io.opentelemetry/opentelemetry-exporter-otlp-common@1.17.0?type=jar", + "version": "1.17.0", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "central", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "OpenTelemetry Protocol Exporter", + "externalReferences": [ + { + "url": "https://github.com/open-telemetry/opentelemetry-java", + "type": "website" + }, + { + "url": "https://github.com/open-telemetry/opentelemetry-java", + "type": "vcs" + } + ] + }, + { + "name": "opentelemetry-exporter-common", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-exporter-common@1.17.0.redhat-00001?type=jar", + "type": "library", + "group": "io.opentelemetry", + "bom-ref": "pkg:maven/io.opentelemetry/opentelemetry-exporter-common@1.17.0.redhat-00001?type=jar", + "version": "1.17.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "66c0571331cb2057d00150e224e74b26327d5290", + "url": "https://code.engineering.redhat.com/gerrit/open-telemetry/opentelemetry-java.git#1.17.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "OpenTelemetry Exporter Common", + "externalReferences": [ + { + "url": "https://github.com/open-telemetry/opentelemetry-java", + "type": "website" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/open-telemetry/opentelemetry-java.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUFMH7H7LVQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.14-9-mvn3.8.4-gradle7.3.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "opentelemetry-sdk-metrics", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-metrics@1.17.0.redhat-00001?type=jar", + "type": "library", + "group": "io.opentelemetry", + "bom-ref": "pkg:maven/io.opentelemetry/opentelemetry-sdk-metrics@1.17.0.redhat-00001?type=jar", + "version": "1.17.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "66c0571331cb2057d00150e224e74b26327d5290", + "url": "https://code.engineering.redhat.com/gerrit/open-telemetry/opentelemetry-java.git#1.17.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "OpenTelemetry SDK Metrics", + "externalReferences": [ + { + "url": "https://github.com/open-telemetry/opentelemetry-java", + "type": "website" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/open-telemetry/opentelemetry-java.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUFMH7H7LVQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.14-9-mvn3.8.4-gradle7.3.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "opentelemetry-sdk-common", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-common@1.17.0.redhat-00001?type=jar", + "type": "library", + "group": "io.opentelemetry", + "bom-ref": "pkg:maven/io.opentelemetry/opentelemetry-sdk-common@1.17.0.redhat-00001?type=jar", + "version": "1.17.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "66c0571331cb2057d00150e224e74b26327d5290", + "url": "https://code.engineering.redhat.com/gerrit/open-telemetry/opentelemetry-java.git#1.17.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "OpenTelemetry SDK Common", + "externalReferences": [ + { + "url": "https://github.com/open-telemetry/opentelemetry-java", + "type": "website" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/open-telemetry/opentelemetry-java.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUFMH7H7LVQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.14-9-mvn3.8.4-gradle7.3.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "opentelemetry-semconv", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-semconv@1.17.0.redhat-00001?type=jar", + "type": "library", + "group": "io.opentelemetry", + "bom-ref": "pkg:maven/io.opentelemetry/opentelemetry-semconv@1.17.0.redhat-00001?type=jar", + "version": "1.17.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "66c0571331cb2057d00150e224e74b26327d5290", + "url": "https://code.engineering.redhat.com/gerrit/open-telemetry/opentelemetry-java.git#1.17.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "OpenTelemetry Semantic Conventions", + "externalReferences": [ + { + "url": "https://github.com/open-telemetry/opentelemetry-java", + "type": "website" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/open-telemetry/opentelemetry-java.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUFMH7H7LVQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.14-9-mvn3.8.4-gradle7.3.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "opentelemetry-sdk-trace", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-trace@1.17.0.redhat-00001?type=jar", + "type": "library", + "group": "io.opentelemetry", + "bom-ref": "pkg:maven/io.opentelemetry/opentelemetry-sdk-trace@1.17.0.redhat-00001?type=jar", + "version": "1.17.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "66c0571331cb2057d00150e224e74b26327d5290", + "url": "https://code.engineering.redhat.com/gerrit/open-telemetry/opentelemetry-java.git#1.17.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "OpenTelemetry SDK For Tracing", + "externalReferences": [ + { + "url": "https://github.com/open-telemetry/opentelemetry-java", + "type": "website" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/open-telemetry/opentelemetry-java.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUFMH7H7LVQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.14-9-mvn3.8.4-gradle7.3.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "opentelemetry-sdk-extension-autoconfigure", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-extension-autoconfigure@1.17.0-alpha?type=jar", + "type": "library", + "group": "io.opentelemetry", + "bom-ref": "pkg:maven/io.opentelemetry/opentelemetry-sdk-extension-autoconfigure@1.17.0-alpha?type=jar", + "version": "1.17.0-alpha", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "central", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "OpenTelemetry SDK Auto-configuration", + "externalReferences": [ + { + "url": "https://github.com/open-telemetry/opentelemetry-java", + "type": "website" + }, + { + "url": "https://github.com/open-telemetry/opentelemetry-java", + "type": "vcs" + } + ] + }, + { + "name": "opentelemetry-sdk", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk@1.17.0.redhat-00001?type=jar", + "type": "library", + "group": "io.opentelemetry", + "bom-ref": "pkg:maven/io.opentelemetry/opentelemetry-sdk@1.17.0.redhat-00001?type=jar", + "version": "1.17.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "66c0571331cb2057d00150e224e74b26327d5290", + "url": "https://code.engineering.redhat.com/gerrit/open-telemetry/opentelemetry-java.git#1.17.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "OpenTelemetry SDK", + "externalReferences": [ + { + "url": "https://github.com/open-telemetry/opentelemetry-java", + "type": "website" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/open-telemetry/opentelemetry-java.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUFMH7H7LVQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.14-9-mvn3.8.4-gradle7.3.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "opentelemetry-sdk-logs", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-logs@1.17.0.redhat-00001?type=jar", + "type": "library", + "group": "io.opentelemetry", + "bom-ref": "pkg:maven/io.opentelemetry/opentelemetry-sdk-logs@1.17.0.redhat-00001?type=jar", + "version": "1.17.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "66c0571331cb2057d00150e224e74b26327d5290", + "url": "https://code.engineering.redhat.com/gerrit/open-telemetry/opentelemetry-java.git#1.17.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "OpenTelemetry Contrib Logging Support", + "externalReferences": [ + { + "url": "https://github.com/open-telemetry/opentelemetry-java", + "type": "website" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/open-telemetry/opentelemetry-java.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUFMH7H7LVQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.14-9-mvn3.8.4-gradle7.3.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "opentelemetry-sdk-extension-autoconfigure-spi", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-extension-autoconfigure-spi@1.17.0.redhat-00001?type=jar", + "type": "library", + "group": "io.opentelemetry", + "bom-ref": "pkg:maven/io.opentelemetry/opentelemetry-sdk-extension-autoconfigure-spi@1.17.0.redhat-00001?type=jar", + "version": "1.17.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "66c0571331cb2057d00150e224e74b26327d5290", + "url": "https://code.engineering.redhat.com/gerrit/open-telemetry/opentelemetry-java.git#1.17.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "OpenTelemetry SDK Auto-configuration SPI", + "externalReferences": [ + { + "url": "https://github.com/open-telemetry/opentelemetry-java", + "type": "website" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/open-telemetry/opentelemetry-java.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUFMH7H7LVQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.14-9-mvn3.8.4-gradle7.3.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "infinispan-tasks", + "purl": "pkg:maven/org.infinispan/infinispan-tasks@14.0.9.Final?type=jar", + "type": "library", + "group": "org.infinispan", + "bom-ref": "pkg:maven/org.infinispan/infinispan-tasks@14.0.9.Final?type=jar", + "version": "14.0.9.Final", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "publisher": "JBoss, a division of Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Infinispan common parent POM module", + "externalReferences": [ + { + "url": "http://www.infinispan.org/infinispan-tasks", + "type": "website" + }, + { + "url": "https://ci.infinispan.org", + "type": "build-system" + }, + { + "url": "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ISPN", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/infinispan-issues/", + "type": "mailing-list" + }, + { + "url": "https://github.com/infinispan/infinispan", + "type": "vcs" + } + ] + }, + { + "name": "infinispan-tasks-api", + "purl": "pkg:maven/org.infinispan/infinispan-tasks-api@14.0.9.Final?type=jar", + "type": "library", + "group": "org.infinispan", + "bom-ref": "pkg:maven/org.infinispan/infinispan-tasks-api@14.0.9.Final?type=jar", + "version": "14.0.9.Final", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "publisher": "JBoss, a division of Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Infinispan common parent POM module", + "externalReferences": [ + { + "url": "http://www.infinispan.org/infinispan-tasks-api", + "type": "website" + }, + { + "url": "https://ci.infinispan.org", + "type": "build-system" + }, + { + "url": "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ISPN", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/infinispan-issues/", + "type": "mailing-list" + }, + { + "url": "https://github.com/infinispan/infinispan", + "type": "vcs" + } + ] + }, + { + "name": "infinispan-scripting", + "purl": "pkg:maven/org.infinispan/infinispan-scripting@14.0.9.Final?type=jar", + "type": "library", + "group": "org.infinispan", + "bom-ref": "pkg:maven/org.infinispan/infinispan-scripting@14.0.9.Final?type=jar", + "version": "14.0.9.Final", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "publisher": "JBoss, a division of Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Infinispan common parent POM module", + "externalReferences": [ + { + "url": "http://www.infinispan.org/infinispan-scripting", + "type": "website" + }, + { + "url": "https://ci.infinispan.org", + "type": "build-system" + }, + { + "url": "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ISPN", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/infinispan-issues/", + "type": "mailing-list" + }, + { + "url": "https://github.com/infinispan/infinispan", + "type": "vcs" + } + ] + }, + { + "name": "infinispan-server-hotrod", + "purl": "pkg:maven/org.infinispan/infinispan-server-hotrod@14.0.9.Final?type=jar", + "type": "library", + "group": "org.infinispan", + "bom-ref": "pkg:maven/org.infinispan/infinispan-server-hotrod@14.0.9.Final?type=jar", + "version": "14.0.9.Final", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "publisher": "JBoss, a division of Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Infinispan Hot Rod Server", + "externalReferences": [ + { + "url": "http://www.infinispan.org/infinispan-server-parent/infinispan-server-hotrod", + "type": "website" + }, + { + "url": "https://ci.infinispan.org", + "type": "build-system" + }, + { + "url": "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ISPN", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/infinispan-issues/", + "type": "mailing-list" + }, + { + "url": "https://github.com/infinispan/infinispan", + "type": "vcs" + } + ] + }, + { + "name": "infinispan-clustered-counter", + "purl": "pkg:maven/org.infinispan/infinispan-clustered-counter@14.0.9.Final?type=jar", + "type": "library", + "group": "org.infinispan", + "bom-ref": "pkg:maven/org.infinispan/infinispan-clustered-counter@14.0.9.Final?type=jar", + "version": "14.0.9.Final", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "publisher": "JBoss, a division of Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Infinispan Clustered Counter module", + "externalReferences": [ + { + "url": "http://www.infinispan.org/infinispan-clustered-counter", + "type": "website" + }, + { + "url": "https://ci.infinispan.org", + "type": "build-system" + }, + { + "url": "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ISPN", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/infinispan-issues/", + "type": "mailing-list" + }, + { + "url": "https://github.com/infinispan/infinispan", + "type": "vcs" + } + ] + }, + { + "name": "infinispan-server-memcached", + "purl": "pkg:maven/org.infinispan/infinispan-server-memcached@14.0.9.Final?type=jar", + "type": "library", + "group": "org.infinispan", + "bom-ref": "pkg:maven/org.infinispan/infinispan-server-memcached@14.0.9.Final?type=jar", + "version": "14.0.9.Final", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "publisher": "JBoss, a division of Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Infinispan Memcached Server", + "externalReferences": [ + { + "url": "http://www.infinispan.org/infinispan-server-parent/infinispan-server-memcached", + "type": "website" + }, + { + "url": "https://ci.infinispan.org", + "type": "build-system" + }, + { + "url": "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ISPN", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/infinispan-issues/", + "type": "mailing-list" + }, + { + "url": "https://github.com/infinispan/infinispan", + "type": "vcs" + } + ] + }, + { + "name": "infinispan-server-resp", + "purl": "pkg:maven/org.infinispan/infinispan-server-resp@14.0.9.Final?type=jar", + "type": "library", + "group": "org.infinispan", + "bom-ref": "pkg:maven/org.infinispan/infinispan-server-resp@14.0.9.Final?type=jar", + "version": "14.0.9.Final", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "publisher": "JBoss, a division of Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Infinispan Resp Protocol Server", + "externalReferences": [ + { + "url": "http://www.infinispan.org/infinispan-server-parent/infinispan-server-resp", + "type": "website" + }, + { + "url": "https://ci.infinispan.org", + "type": "build-system" + }, + { + "url": "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ISPN", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/infinispan-issues/", + "type": "mailing-list" + }, + { + "url": "https://github.com/infinispan/infinispan", + "type": "vcs" + } + ] + }, + { + "name": "infinispan-server-rest", + "purl": "pkg:maven/org.infinispan/infinispan-server-rest@14.0.9.Final?type=jar", + "type": "library", + "group": "org.infinispan", + "bom-ref": "pkg:maven/org.infinispan/infinispan-server-rest@14.0.9.Final?type=jar", + "version": "14.0.9.Final", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "publisher": "JBoss, a division of Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "REST interface for Infinispan", + "externalReferences": [ + { + "url": "http://www.infinispan.org/infinispan-server-parent/infinispan-server-rest", + "type": "website" + }, + { + "url": "https://ci.infinispan.org", + "type": "build-system" + }, + { + "url": "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ISPN", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/infinispan-issues/", + "type": "mailing-list" + }, + { + "url": "https://github.com/infinispan/infinispan", + "type": "vcs" + } + ] + }, + { + "name": "infinispan-server-router", + "purl": "pkg:maven/org.infinispan/infinispan-server-router@14.0.9.Final?type=jar", + "type": "library", + "group": "org.infinispan", + "bom-ref": "pkg:maven/org.infinispan/infinispan-server-router@14.0.9.Final?type=jar", + "version": "14.0.9.Final", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "publisher": "JBoss, a division of Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Infinispan Multi Tenant Router", + "externalReferences": [ + { + "url": "http://www.infinispan.org/infinispan-server-parent/infinispan-server-router", + "type": "website" + }, + { + "url": "https://ci.infinispan.org", + "type": "build-system" + }, + { + "url": "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ISPN", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/infinispan-issues/", + "type": "mailing-list" + }, + { + "url": "https://github.com/infinispan/infinispan", + "type": "vcs" + } + ] + }, + { + "name": "jmh-core", + "purl": "pkg:maven/org.openjdk.jmh/jmh-core@1.23?type=jar", + "type": "library", + "group": "org.openjdk.jmh", + "bom-ref": "pkg:maven/org.openjdk.jmh/jmh-core@1.23?type=jar", + "version": "1.23", + "licenses": [ + { + "license": { + "url": "http://openjdk.java.net/legal/gplv2+ce.html", + "name": "GNU General Public License (GPL), version 2, with the Classpath exception" + } + } + ], + "publisher": "Oracle", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The jmh is a Java harness for building, running, and analysing nano/micro/macro benchmarks written in Java and other languages targeting the JVM.", + "externalReferences": [ + { + "url": "http://openjdk.java.net/projects/code-tools/jmh/jmh-core/", + "type": "website" + }, + { + "url": "https://hg/http///hg.openjdk.java.net/code-tools/jmh/", + "type": "vcs" + } + ] + }, + { + "name": "jopt-simple", + "purl": "pkg:maven/net.sf.jopt-simple/jopt-simple@4.6?type=jar", + "type": "library", + "group": "net.sf.jopt-simple", + "bom-ref": "pkg:maven/net.sf.jopt-simple/jopt-simple@4.6?type=jar", + "version": "4.6", + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "publisher": "central", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "A Java library for parsing command line options", + "externalReferences": [ + { + "url": "http://pholser.github.com/jopt-simple", + "type": "website" + }, + { + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "http://github.com/pholser/jopt-simple/issues", + "type": "issue-tracker" + }, + { + "url": "https://github.com/pholser/jopt-simple", + "type": "vcs" + } + ] + }, + { + "name": "commons-math3", + "purl": "pkg:maven/org.apache.commons/commons-math3@3.2?type=jar", + "type": "library", + "group": "org.apache.commons", + "bom-ref": "pkg:maven/org.apache.commons/commons-math3@3.2?type=jar", + "version": "3.2", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "The Apache Software Foundation", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The Math project is a library of lightweight, self-contained mathematics and statistics components addressing the most common practical problems not immediately available in the Java programming language or commons-lang.", + "externalReferences": [ + { + "url": "http://commons.apache.org/proper/commons-math/", + "type": "website" + }, + { + "url": "http://vmbuild.apache.org/continuum/", + "type": "build-system" + }, + { + "url": "https://repository.apache.org/service/local/staging/deploy/maven2", + "type": "distribution" + }, + { + "url": "http://issues.apache.org/jira/browse/MATH", + "type": "issue-tracker" + }, + { + "url": "http://mail-archives.apache.org/mod_mbox/commons-user/", + "type": "mailing-list" + }, + { + "url": "https://svn.apache.org/repos/asf/commons/proper/math/trunk", + "type": "vcs" + } + ] + }, + { + "name": "wildfly-openssl-java", + "purl": "pkg:maven/org.wildfly.openssl/wildfly-openssl-java@1.0.6.Final?type=jar", + "type": "library", + "group": "org.wildfly.openssl", + "bom-ref": "pkg:maven/org.wildfly.openssl/wildfly-openssl-java@1.0.6.Final?type=jar", + "version": "1.0.6.Final", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "JBoss by Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Parent POM for JBoss projects. Provides default project build configuration.", + "externalReferences": [ + { + "url": "http://www.jboss.org/wildfly-openssl-parent/wildfly-openssl-java", + "type": "website" + }, + { + "url": "https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "org.wildfly.openssl:wildfly-openssl-parent", + "type": "vcs" + } + ] + }, + { + "name": "wildfly-openssl-linux-x86_64", + "purl": "pkg:maven/org.wildfly.openssl/wildfly-openssl-linux-x86_64@1.0.6.Final?type=jar", + "type": "library", + "group": "org.wildfly.openssl", + "bom-ref": "pkg:maven/org.wildfly.openssl/wildfly-openssl-linux-x86_64@1.0.6.Final?type=jar", + "version": "1.0.6.Final", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "JBoss by Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Parent POM for JBoss projects. Provides default project build configuration.", + "externalReferences": [ + { + "url": "http://www.jboss.org/wildfly-openssl-parent/wildfly-openssl-linux-x86_64", + "type": "website" + }, + { + "url": "https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "org.wildfly.openssl:wildfly-openssl-parent", + "type": "vcs" + } + ] + }, + { + "name": "wildfly-elytron-auth-server-http", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server-http@1.20.1.Final?type=jar", + "type": "library", + "group": "org.wildfly.security", + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server-http@1.20.1.Final?type=jar", + "version": "1.20.1.Final", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "publisher": "JBoss by Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "WildFly Security Auth Server HTTP", + "externalReferences": [ + { + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-auth-server-http", + "type": "website" + }, + { + "url": "https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ELY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://github.com/wildfly-security/wildfly-elytron", + "type": "vcs" + } + ] + }, + { + "name": "wildfly-elytron-auth-server-sasl", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server-sasl@1.20.1.Final?type=jar", + "type": "library", + "group": "org.wildfly.security", + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server-sasl@1.20.1.Final?type=jar", + "version": "1.20.1.Final", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "publisher": "JBoss by Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "WildFly Security Auth Server SASL", + "externalReferences": [ + { + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-auth-server-sasl", + "type": "website" + }, + { + "url": "https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ELY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://github.com/wildfly-security/wildfly-elytron", + "type": "vcs" + } + ] + }, + { + "name": "wildfly-elytron-http-basic", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-http-basic@1.20.1.Final?type=jar", + "type": "library", + "group": "org.wildfly.security", + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-http-basic@1.20.1.Final?type=jar", + "version": "1.20.1.Final", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "publisher": "JBoss by Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "WildFly Security HTTP Basic Mechanism Implementation", + "externalReferences": [ + { + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-http-basic", + "type": "website" + }, + { + "url": "https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ELY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://github.com/wildfly-security/wildfly-elytron", + "type": "vcs" + } + ] + }, + { + "name": "wildfly-elytron-mechanism-http", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-http@1.20.1.Final?type=jar", + "type": "library", + "group": "org.wildfly.security", + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-http@1.20.1.Final?type=jar", + "version": "1.20.1.Final", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "publisher": "JBoss by Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "WildFly Security Mechanism Http", + "externalReferences": [ + { + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-mechanism-http", + "type": "website" + }, + { + "url": "https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ELY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://github.com/wildfly-security/wildfly-elytron", + "type": "vcs" + } + ] + }, + { + "name": "wildfly-elytron-http-bearer", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-http-bearer@1.20.1.Final?type=jar", + "type": "library", + "group": "org.wildfly.security", + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-http-bearer@1.20.1.Final?type=jar", + "version": "1.20.1.Final", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "publisher": "JBoss by Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "WildFly Security HTTP Bearer Mechanism Implementation", + "externalReferences": [ + { + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-http-bearer", + "type": "website" + }, + { + "url": "https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ELY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://github.com/wildfly-security/wildfly-elytron", + "type": "vcs" + } + ] + }, + { + "name": "wildfly-elytron-http-cert", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-http-cert@1.20.1.Final?type=jar", + "type": "library", + "group": "org.wildfly.security", + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-http-cert@1.20.1.Final?type=jar", + "version": "1.20.1.Final", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "publisher": "JBoss by Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "WildFly Security HTTP Cert Mechanism Implementation", + "externalReferences": [ + { + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-http-cert", + "type": "website" + }, + { + "url": "https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ELY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://github.com/wildfly-security/wildfly-elytron", + "type": "vcs" + } + ] + }, + { + "name": "wildfly-elytron-http-digest", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-http-digest@1.20.1.Final?type=jar", + "type": "library", + "group": "org.wildfly.security", + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-http-digest@1.20.1.Final?type=jar", + "version": "1.20.1.Final", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "publisher": "JBoss by Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "WildFly Security HTTP DIGEST Mechanism Implementation", + "externalReferences": [ + { + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-http-digest", + "type": "website" + }, + { + "url": "https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ELY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://github.com/wildfly-security/wildfly-elytron", + "type": "vcs" + } + ] + }, + { + "name": "wildfly-elytron-http-spnego", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-http-spnego@1.20.1.Final?type=jar", + "type": "library", + "group": "org.wildfly.security", + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-http-spnego@1.20.1.Final?type=jar", + "version": "1.20.1.Final", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "publisher": "JBoss by Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "WildFly Security HTTP SPNEGO Mechanism Implementation", + "externalReferences": [ + { + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-http-spnego", + "type": "website" + }, + { + "url": "https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ELY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://github.com/wildfly-security/wildfly-elytron", + "type": "vcs" + } + ] + }, + { + "name": "wildfly-elytron-http-util", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-http-util@1.20.1.Final?type=jar", + "type": "library", + "group": "org.wildfly.security", + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-http-util@1.20.1.Final?type=jar", + "version": "1.20.1.Final", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "publisher": "JBoss by Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "WildFly Security HTTP Utility Classes", + "externalReferences": [ + { + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-http-util", + "type": "website" + }, + { + "url": "https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ELY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://github.com/wildfly-security/wildfly-elytron", + "type": "vcs" + } + ] + }, + { + "name": "wildfly-elytron-realm-ldap", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-realm-ldap@1.20.1.Final?type=jar", + "type": "library", + "group": "org.wildfly.security", + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-realm-ldap@1.20.1.Final?type=jar", + "version": "1.20.1.Final", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "publisher": "JBoss by Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "WildFly Security LDAP Realm Implementation", + "externalReferences": [ + { + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-realm-ldap", + "type": "website" + }, + { + "url": "https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ELY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://github.com/wildfly-security/wildfly-elytron", + "type": "vcs" + } + ] + }, + { + "name": "wildfly-elytron-client", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-client@1.20.1.Final?type=jar", + "type": "library", + "group": "org.wildfly.security", + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-client@1.20.1.Final?type=jar", + "version": "1.20.1.Final", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "publisher": "JBoss by Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "WildFly Security Client", + "externalReferences": [ + { + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-client", + "type": "website" + }, + { + "url": "https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ELY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://github.com/wildfly-security/wildfly-elytron", + "type": "vcs" + } + ] + }, + { + "name": "wildfly-elytron-auth-util", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-auth-util@1.20.1.Final?type=jar", + "type": "library", + "group": "org.wildfly.security", + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-auth-util@1.20.1.Final?type=jar", + "version": "1.20.1.Final", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "publisher": "JBoss by Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "WildFly Security Auth Util", + "externalReferences": [ + { + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-auth-util", + "type": "website" + }, + { + "url": "https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ELY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://github.com/wildfly-security/wildfly-elytron", + "type": "vcs" + } + ] + }, + { + "name": "wildfly-elytron-credential-source-impl", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-credential-source-impl@1.20.1.Final?type=jar", + "type": "library", + "group": "org.wildfly.security", + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-credential-source-impl@1.20.1.Final?type=jar", + "version": "1.20.1.Final", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "publisher": "JBoss by Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "WildFly Security Credential Source Implementation", + "externalReferences": [ + { + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-credential-source-impl", + "type": "website" + }, + { + "url": "https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ELY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://github.com/wildfly-security/wildfly-elytron", + "type": "vcs" + } + ] + }, + { + "name": "wildfly-elytron-realm", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-realm@1.20.1.Final?type=jar", + "type": "library", + "group": "org.wildfly.security", + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-realm@1.20.1.Final?type=jar", + "version": "1.20.1.Final", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "publisher": "JBoss by Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "WildFly Security Realm Implementation", + "externalReferences": [ + { + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-realm", + "type": "website" + }, + { + "url": "https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ELY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://github.com/wildfly-security/wildfly-elytron", + "type": "vcs" + } + ] + }, + { + "name": "wildfly-elytron-realm-token", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-realm-token@1.20.1.Final?type=jar", + "type": "library", + "group": "org.wildfly.security", + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-realm-token@1.20.1.Final?type=jar", + "version": "1.20.1.Final", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "publisher": "JBoss by Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "WildFly Security Token Realm Implementation", + "externalReferences": [ + { + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-realm-token", + "type": "website" + }, + { + "url": "https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ELY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://github.com/wildfly-security/wildfly-elytron", + "type": "vcs" + } + ] + }, + { + "name": "wildfly-elytron-json-util", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-json-util@1.20.1.Final?type=jar", + "type": "library", + "group": "org.wildfly.security", + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-json-util@1.20.1.Final?type=jar", + "version": "1.20.1.Final", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "publisher": "JBoss by Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "WildFly Security JSON Utility Classes", + "externalReferences": [ + { + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-json-util", + "type": "website" + }, + { + "url": "https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ELY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://github.com/wildfly-security/wildfly-elytron", + "type": "vcs" + } + ] + }, + { + "name": "wildfly-elytron-sasl-localuser", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-localuser@1.20.1.Final?type=jar", + "type": "library", + "group": "org.wildfly.security", + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-localuser@1.20.1.Final?type=jar", + "version": "1.20.1.Final", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "publisher": "JBoss by Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "WildFly Security JBOSS-LOCAL-USER SASL Implementation", + "externalReferences": [ + { + "url": "http://www.jboss.org/wildfly-elytron-parent/wildfly-elytron-sasl-localuser", + "type": "website" + }, + { + "url": "https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ELY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://github.com/wildfly-security/wildfly-elytron", + "type": "vcs" + } + ] + }, + { + "name": "infinispan-server-runtime", + "purl": "pkg:maven/org.infinispan/infinispan-server-runtime@14.0.9.Final?classifier=loader&type=jar", + "type": "library", + "group": "org.infinispan", + "bom-ref": "pkg:maven/org.infinispan/infinispan-server-runtime@14.0.9.Final?classifier=loader&type=jar", + "version": "14.0.9.Final", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "publisher": "JBoss, a division of Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Infinispan Server", + "externalReferences": [ + { + "url": "http://www.infinispan.org/infinispan-server-parent/infinispan-server-runtime", + "type": "website" + }, + { + "url": "https://ci.infinispan.org", + "type": "build-system" + }, + { + "url": "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/browse/ISPN", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/infinispan-issues/", + "type": "mailing-list" + }, + { + "url": "https://github.com/infinispan/infinispan", + "type": "vcs" + } + ] + }, + { + "name": "shrinkwrap-resolver-api", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api@3.1.3?type=jar", + "type": "library", + "group": "org.jboss.shrinkwrap.resolver", + "bom-ref": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api@3.1.3?type=jar", + "version": "3.1.3", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "JBoss by Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "API to Resolve Dependencies from a Generic Backend", + "externalReferences": [ + { + "url": "http://www.jboss.org/shrinkwrap-resolver-parent/shrinkwrap-resolver-api", + "type": "website" + }, + { + "url": "https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "http://jira.jboss.com/jira/browse/SHRINKWRAP", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://github.com/shrinkwrap/resolver", + "type": "vcs" + } + ] + }, + { + "name": "shrinkwrap-resolver-api-maven", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api-maven@3.1.3?type=jar", + "type": "library", + "group": "org.jboss.shrinkwrap.resolver", + "bom-ref": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api-maven@3.1.3?type=jar", + "version": "3.1.3", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "JBoss by Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "API to Resolve Dependencies from a Maven Backend", + "externalReferences": [ + { + "url": "http://www.jboss.org/shrinkwrap-resolver-parent/shrinkwrap-resolver-api-maven", + "type": "website" + }, + { + "url": "https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "http://jira.jboss.com/jira/browse/SHRINKWRAP", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://github.com/shrinkwrap/resolver", + "type": "vcs" + } + ] + }, + { + "name": "shrinkwrap-resolver-impl-maven", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-impl-maven@3.1.3?type=jar", + "type": "library", + "group": "org.jboss.shrinkwrap.resolver", + "bom-ref": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-impl-maven@3.1.3?type=jar", + "version": "3.1.3", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "JBoss by Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Implementation for Resolving Dependencies from a Maven Backend", + "externalReferences": [ + { + "url": "http://www.jboss.org/shrinkwrap-resolver-parent/shrinkwrap-resolver-impl-maven", + "type": "website" + }, + { + "url": "https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "http://jira.jboss.com/jira/browse/SHRINKWRAP", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://github.com/shrinkwrap/resolver", + "type": "vcs" + } + ] + }, + { + "name": "maven-model-builder", + "purl": "pkg:maven/org.apache.maven/maven-model-builder@3.8.6.redhat-00002?type=jar", + "type": "library", + "group": "org.apache.maven", + "bom-ref": "pkg:maven/org.apache.maven/maven-model-builder@3.8.6.redhat-00002?type=jar", + "version": "3.8.6.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "f2b3f11f136d55cf6447e492a7ac991f3abc488e", + "url": "https://code.engineering.redhat.com/gerrit/apache/maven.git#3.8.6.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The effective model builder, with inheritance, profile activation, interpolation, ...", + "externalReferences": [ + { + "url": "https://maven.apache.org/ref/3.8.6.redhat-00002/maven-model-builder/", + "type": "website" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A3Y2XL76CMYAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.apache.org/jira/browse/MNG", + "type": "issue-tracker" + }, + { + "url": "https://lists.apache.org/list.html?users@maven.apache.org", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/apache/maven.git", + "type": "vcs" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.6", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "plexus-interpolation", + "purl": "pkg:maven/org.codehaus.plexus/plexus-interpolation@1.24?type=jar", + "type": "library", + "group": "org.codehaus.plexus", + "bom-ref": "pkg:maven/org.codehaus.plexus/plexus-interpolation@1.24?type=jar", + "version": "1.24", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "Codehaus Plexus", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The Plexus project provides a full software stack for creating and executing software projects.", + "externalReferences": [ + { + "url": "http://codehaus-plexus.github.io/plexus-interpolation/", + "type": "website" + }, + { + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://github.com/codehaus-plexus/plexus-interpolation/issues", + "type": "issue-tracker" + }, + { + "url": "http://archive.plexus.codehaus.org/user", + "type": "mailing-list" + }, + { + "url": "https://github.com/codehaus-plexus/plexus-interpolation", + "type": "vcs" + } + ] + }, + { + "name": "maven-resolver-provider", + "purl": "pkg:maven/org.apache.maven/maven-resolver-provider@3.8.6.redhat-00002?type=jar", + "type": "library", + "group": "org.apache.maven", + "bom-ref": "pkg:maven/org.apache.maven/maven-resolver-provider@3.8.6.redhat-00002?type=jar", + "version": "3.8.6.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "f2b3f11f136d55cf6447e492a7ac991f3abc488e", + "url": "https://code.engineering.redhat.com/gerrit/apache/maven.git#3.8.6.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Extensions to Maven Resolver for utilizing Maven POM and repository metadata.", + "externalReferences": [ + { + "url": "https://maven.apache.org/ref/3.8.6.redhat-00002/maven-resolver-provider/", + "type": "website" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A3Y2XL76CMYAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.apache.org/jira/browse/MNG", + "type": "issue-tracker" + }, + { + "url": "https://lists.apache.org/list.html?users@maven.apache.org", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/apache/maven.git", + "type": "vcs" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.6", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "maven-resolver-impl", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-impl@1.6.3?type=jar", + "type": "library", + "group": "org.apache.maven.resolver", + "bom-ref": "pkg:maven/org.apache.maven.resolver/maven-resolver-impl@1.6.3?type=jar", + "version": "1.6.3", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "The Apache Software Foundation", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "An implementation of the repository system.", + "externalReferences": [ + { + "url": "https://maven.apache.org/resolver/maven-resolver-impl/", + "type": "website" + }, + { + "url": "https://ci-builds.apache.org/job/Maven/job/maven-box/job/maven-resolver/", + "type": "build-system" + }, + { + "url": "https://repository.apache.org/service/local/staging/deploy/maven2", + "type": "distribution" + }, + { + "url": "https://issues.apache.org/jira/browse/MRESOLVER", + "type": "issue-tracker" + }, + { + "url": "https://lists.apache.org/list.html?users@maven.apache.org", + "type": "mailing-list" + }, + { + "url": "https://github.com/apache/maven-resolver", + "type": "vcs" + } + ] + }, + { + "name": "maven-settings-builder", + "purl": "pkg:maven/org.apache.maven/maven-settings-builder@3.8.6.redhat-00002?type=jar", + "type": "library", + "group": "org.apache.maven", + "bom-ref": "pkg:maven/org.apache.maven/maven-settings-builder@3.8.6.redhat-00002?type=jar", + "version": "3.8.6.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "f2b3f11f136d55cf6447e492a7ac991f3abc488e", + "url": "https://code.engineering.redhat.com/gerrit/apache/maven.git#3.8.6.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The effective settings builder, with inheritance and password decryption.", + "externalReferences": [ + { + "url": "https://maven.apache.org/ref/3.8.6.redhat-00002/maven-settings-builder/", + "type": "website" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A3Y2XL76CMYAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.apache.org/jira/browse/MNG", + "type": "issue-tracker" + }, + { + "url": "https://lists.apache.org/list.html?users@maven.apache.org", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/apache/maven.git", + "type": "vcs" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.6", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "plexus-sec-dispatcher", + "purl": "pkg:maven/org.codehaus.plexus/plexus-sec-dispatcher@2.0.0.redhat-00004?type=jar", + "type": "library", + "group": "org.codehaus.plexus", + "bom-ref": "pkg:maven/org.codehaus.plexus/plexus-sec-dispatcher@2.0.0.redhat-00004?type=jar", + "version": "2.0.0.redhat-00004", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "d7e2972bdc3d8107c77226f5b5be1b235f9704e6", + "url": "https://code.engineering.redhat.com/gerrit/codehaus-plexus/plexus-sec-dispatcher.git#2.0.0.redhat-00004" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The Plexus project provides a full software stack for creating and executing software projects.", + "externalReferences": [ + { + "url": "https://codehaus-plexus.github.io/plexus-sec-dispatcher/", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/codehaus-plexus/plexus-sec-dispatcher/issues", + "type": "issue-tracker" + }, + { + "url": "http://archive.plexus.codehaus.org/user", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/codehaus-plexus/plexus-sec-dispatcher.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A24G3WSLSEQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.3.9:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "plexus-cipher", + "purl": "pkg:maven/org.codehaus.plexus/plexus-cipher@2.0.0.redhat-00002?type=jar", + "type": "library", + "group": "org.codehaus.plexus", + "bom-ref": "pkg:maven/org.codehaus.plexus/plexus-cipher@2.0.0.redhat-00002?type=jar", + "version": "2.0.0.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The Plexus project provides a full software stack for creating and executing software projects.", + "externalReferences": [ + { + "url": "https://codehaus-plexus.github.io/plexus-cipher/", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/codehaus-plexus/plexus-cipher/issues", + "type": "issue-tracker" + }, + { + "url": "http://archive.plexus.codehaus.org/user", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/codehaus-plexus/plexus-cipher.git", + "type": "vcs" + } + ] + }, + { + "name": "maven-resolver-transport-wagon", + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-transport-wagon@1.6.3?type=jar", + "type": "library", + "group": "org.apache.maven.resolver", + "bom-ref": "pkg:maven/org.apache.maven.resolver/maven-resolver-transport-wagon@1.6.3?type=jar", + "version": "1.6.3", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "The Apache Software Foundation", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "A transport implementation based on Maven Wagon.", + "externalReferences": [ + { + "url": "https://maven.apache.org/resolver/maven-resolver-transport-wagon/", + "type": "website" + }, + { + "url": "https://ci-builds.apache.org/job/Maven/job/maven-box/job/maven-resolver/", + "type": "build-system" + }, + { + "url": "https://repository.apache.org/service/local/staging/deploy/maven2", + "type": "distribution" + }, + { + "url": "https://issues.apache.org/jira/browse/MRESOLVER", + "type": "issue-tracker" + }, + { + "url": "https://lists.apache.org/list.html?users@maven.apache.org", + "type": "mailing-list" + }, + { + "url": "https://github.com/apache/maven-resolver", + "type": "vcs" + } + ] + }, + { + "name": "wagon-http-lightweight", + "purl": "pkg:maven/org.apache.maven.wagon/wagon-http-lightweight@3.5.1?type=jar", + "type": "library", + "group": "org.apache.maven.wagon", + "bom-ref": "pkg:maven/org.apache.maven.wagon/wagon-http-lightweight@3.5.1?type=jar", + "version": "3.5.1", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "The Apache Software Foundation", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Wagon provider that gets and puts artifacts through http using standard Java library", + "externalReferences": [ + { + "url": "https://maven.apache.org/wagon/wagon-providers/wagon-http-lightweight", + "type": "website" + }, + { + "url": "https://ci-builds.apache.org/job/Maven/job/maven-box/job/maven-wagon/", + "type": "build-system" + }, + { + "url": "https://repository.apache.org/service/local/staging/deploy/maven2", + "type": "distribution" + }, + { + "url": "https://issues.apache.org/jira/browse/WAGON", + "type": "issue-tracker" + }, + { + "url": "http://mail-archives.apache.org/mod_mbox/maven-dev", + "type": "mailing-list" + }, + { + "url": "https://github.com/apache/maven-wagon", + "type": "vcs" + } + ] + }, + { + "name": "shrinkwrap-resolver-spi-maven", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-spi-maven@3.1.3?type=jar", + "type": "library", + "group": "org.jboss.shrinkwrap.resolver", + "bom-ref": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-spi-maven@3.1.3?type=jar", + "version": "3.1.3", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "JBoss by Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "SPI to Resolve Dependencies from a Maven Backend", + "externalReferences": [ + { + "url": "http://www.jboss.org/shrinkwrap-resolver-parent/shrinkwrap-resolver-spi-maven", + "type": "website" + }, + { + "url": "https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "http://jira.jboss.com/jira/browse/SHRINKWRAP", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://github.com/shrinkwrap/resolver", + "type": "vcs" + } + ] + }, + { + "name": "shrinkwrap-resolver-spi", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-spi@3.1.3?type=jar", + "type": "library", + "group": "org.jboss.shrinkwrap.resolver", + "bom-ref": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-spi@3.1.3?type=jar", + "version": "3.1.3", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "JBoss by Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "SPI to Resolve Dependencies from a Generic Backend", + "externalReferences": [ + { + "url": "http://www.jboss.org/shrinkwrap-resolver-parent/shrinkwrap-resolver-spi", + "type": "website" + }, + { + "url": "https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "http://jira.jboss.com/jira/browse/SHRINKWRAP", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://github.com/shrinkwrap/resolver", + "type": "vcs" + } + ] + }, + { + "name": "plexus-sec-dispatcher", + "purl": "pkg:maven/org.sonatype.plexus/plexus-sec-dispatcher@1.4?type=jar", + "type": "library", + "group": "org.sonatype.plexus", + "bom-ref": "pkg:maven/org.sonatype.plexus/plexus-sec-dispatcher@1.4?type=jar", + "version": "1.4", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "central", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "externalReferences": [ + { + "url": "http://spice.sonatype.org/plexus-sec-dispatcher", + "type": "website" + }, + { + "url": "https://grid.sonatype.org/ci/view/Spice/", + "type": "build-system" + }, + { + "url": "http://repository.sonatype.org/content/repositories/releases", + "type": "distribution" + }, + { + "url": "https://issues.sonatype.org/browse/SPICE", + "type": "issue-tracker" + }, + { + "url": "https://github.com/codehaus-plexus/plexus-sec-dispatcher", + "type": "vcs" + } + ] + }, + { + "name": "plexus-cipher", + "purl": "pkg:maven/org.sonatype.plexus/plexus-cipher@1.4?type=jar", + "type": "library", + "group": "org.sonatype.plexus", + "bom-ref": "pkg:maven/org.sonatype.plexus/plexus-cipher@1.4?type=jar", + "version": "1.4", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "central", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "externalReferences": [ + { + "url": "http://spice.sonatype.org/plexus-cipher", + "type": "website" + }, + { + "url": "https://grid.sonatype.org/ci/view/Spice/", + "type": "build-system" + }, + { + "url": "http://repository.sonatype.org/content/repositories/releases", + "type": "distribution" + }, + { + "url": "https://issues.sonatype.org/browse/SPICE", + "type": "issue-tracker" + }, + { + "url": "https://svn.sonatype.org/spice/tags/plexus-cipher-1.4", + "type": "vcs" + } + ] + }, + { + "name": "shrinkwrap-resolver-impl-maven-archive", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-impl-maven-archive@3.1.3?type=jar", + "type": "library", + "group": "org.jboss.shrinkwrap.resolver", + "bom-ref": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-impl-maven-archive@3.1.3?type=jar", + "version": "3.1.3", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "JBoss by Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Implementation for Resolving Dependencies from a Maven Backend to a ShrinkWrap Archive", + "externalReferences": [ + { + "url": "http://www.jboss.org/shrinkwrap-resolver-parent/shrinkwrap-resolver-impl-maven-archive", + "type": "website" + }, + { + "url": "https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "http://jira.jboss.com/jira/browse/SHRINKWRAP", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://github.com/shrinkwrap/resolver", + "type": "vcs" + } + ] + }, + { + "name": "plexus-compiler-javac", + "purl": "pkg:maven/org.codehaus.plexus/plexus-compiler-javac@2.7?type=jar", + "type": "library", + "group": "org.codehaus.plexus", + "bom-ref": "pkg:maven/org.codehaus.plexus/plexus-compiler-javac@2.7?type=jar", + "version": "2.7", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "Codehaus Plexus", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Javac Compiler support for Plexus Compiler component.", + "externalReferences": [ + { + "url": "http://codehaus-plexus.github.io/plexus-components/plexus-compiler/plexus-compilers/plexus-compiler-javac/", + "type": "website" + }, + { + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://github.com/codehaus-plexus/plexus-compiler/issues", + "type": "issue-tracker" + }, + { + "url": "http://archive.plexus.codehaus.org/user", + "type": "mailing-list" + }, + { + "url": "https://github.com/codehaus-plexus/plexus-compiler", + "type": "vcs" + } + ] + }, + { + "name": "plexus-compiler-api", + "purl": "pkg:maven/org.codehaus.plexus/plexus-compiler-api@2.7?type=jar", + "type": "library", + "group": "org.codehaus.plexus", + "bom-ref": "pkg:maven/org.codehaus.plexus/plexus-compiler-api@2.7?type=jar", + "version": "2.7", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "Codehaus Plexus", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Plexus Compilers component's API to manipulate compilers.", + "externalReferences": [ + { + "url": "http://codehaus-plexus.github.io/plexus-components/plexus-compiler/plexus-compiler-api/", + "type": "website" + }, + { + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://github.com/codehaus-plexus/plexus-compiler/issues", + "type": "issue-tracker" + }, + { + "url": "http://archive.plexus.codehaus.org/user", + "type": "mailing-list" + }, + { + "url": "https://github.com/codehaus-plexus/plexus-compiler", + "type": "vcs" + } + ] + }, + { + "name": "shrinkwrap-impl-base", + "purl": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-impl-base@1.2.6?type=jar", + "type": "library", + "group": "org.jboss.shrinkwrap", + "bom-ref": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-impl-base@1.2.6?type=jar", + "version": "1.2.6", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "JBoss by Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Common Base for Implementations of the ShrinkWrap Project", + "externalReferences": [ + { + "url": "http://www.jboss.org/shrinkwrap-impl-base", + "type": "website" + }, + { + "url": "https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "http://jira.jboss.com/jira/browse/SHRINKWRAP", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://github.com/shrinkwrap/shrinkwrap", + "type": "vcs" + } + ] + }, + { + "name": "shrinkwrap-api", + "purl": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-api@1.2.6?type=jar", + "type": "library", + "group": "org.jboss.shrinkwrap", + "bom-ref": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-api@1.2.6?type=jar", + "version": "1.2.6", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "JBoss by Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Client View of the ShrinkWrap Project", + "externalReferences": [ + { + "url": "http://www.jboss.org/shrinkwrap-api", + "type": "website" + }, + { + "url": "https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "http://jira.jboss.com/jira/browse/SHRINKWRAP", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://github.com/shrinkwrap/shrinkwrap", + "type": "vcs" + } + ] + }, + { + "name": "shrinkwrap-spi", + "purl": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-spi@1.2.6?type=jar", + "type": "library", + "group": "org.jboss.shrinkwrap", + "bom-ref": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-spi@1.2.6?type=jar", + "version": "1.2.6", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "JBoss by Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Generic Service Provider Contract of the ShrinkWrap Project", + "externalReferences": [ + { + "url": "http://www.jboss.org/shrinkwrap-spi", + "type": "website" + }, + { + "url": "https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "http://jira.jboss.com/jira/browse/SHRINKWRAP", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://github.com/shrinkwrap/shrinkwrap", + "type": "vcs" + } + ] + }, + { + "name": "shrinkwrap-resolver-api-maven-archive", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api-maven-archive@3.1.3?type=jar", + "type": "library", + "group": "org.jboss.shrinkwrap.resolver", + "bom-ref": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api-maven-archive@3.1.3?type=jar", + "version": "3.1.3", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "JBoss by Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "API for Resolving Dependencies from a Maven Backend to a ShrinkWrap Archive and Maven Importer", + "externalReferences": [ + { + "url": "http://www.jboss.org/shrinkwrap-resolver-parent/shrinkwrap-resolver-api-maven-archive", + "type": "website" + }, + { + "url": "https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "http://jira.jboss.com/jira/browse/SHRINKWRAP", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://github.com/shrinkwrap/resolver", + "type": "vcs" + } + ] + }, + { + "name": "shrinkwrap-resolver-spi-maven-archive", + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-spi-maven-archive@3.1.3?type=jar", + "type": "library", + "group": "org.jboss.shrinkwrap.resolver", + "bom-ref": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-spi-maven-archive@3.1.3?type=jar", + "version": "3.1.3", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "JBoss by Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "SPI for Resolving Dependencies from a Maven Backend to a ShrinkWrap Archive and Importing Maven Project", + "externalReferences": [ + { + "url": "http://www.jboss.org/shrinkwrap-resolver-parent/shrinkwrap-resolver-spi-maven-archive", + "type": "website" + }, + { + "url": "https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "http://jira.jboss.com/jira/browse/SHRINKWRAP", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://github.com/shrinkwrap/resolver", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-jacoco", + "purl": "pkg:maven/io.quarkus/quarkus-jacoco@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-jacoco@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Jacoco test coverage support", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "org.jacoco.agent", + "purl": "pkg:maven/org.jacoco/org.jacoco.agent@0.8.8?type=jar", + "type": "library", + "group": "org.jacoco", + "bom-ref": "pkg:maven/org.jacoco/org.jacoco.agent@0.8.8?type=jar", + "version": "0.8.8", + "licenses": [ + { + "license": { + "id": "EPL-2.0", + "url": "https://www.eclipse.org/legal/epl-2.0" + } + } + ], + "publisher": "Mountainminds GmbH & Co. KG", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "JaCoCo Agent", + "externalReferences": [ + { + "url": "http://org.jacoco.agent", + "type": "website" + }, + { + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://github.com/jacoco/jacoco/issues", + "type": "issue-tracker" + }, + { + "url": "https://github.com/jacoco/jacoco", + "type": "vcs" + } + ] + }, + { + "name": "org.jacoco.agent", + "purl": "pkg:maven/org.jacoco/org.jacoco.agent@0.8.8?classifier=runtime&type=jar", + "type": "library", + "group": "org.jacoco", + "bom-ref": "pkg:maven/org.jacoco/org.jacoco.agent@0.8.8?classifier=runtime&type=jar", + "version": "0.8.8", + "licenses": [ + { + "license": { + "id": "EPL-2.0", + "url": "https://www.eclipse.org/legal/epl-2.0" + } + } + ], + "publisher": "Mountainminds GmbH & Co. KG", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "JaCoCo Agent", + "externalReferences": [ + { + "url": "http://org.jacoco.agent", + "type": "website" + }, + { + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://github.com/jacoco/jacoco/issues", + "type": "issue-tracker" + }, + { + "url": "https://github.com/jacoco/jacoco", + "type": "vcs" + } + ] + }, + { + "name": "org.jacoco.core", + "purl": "pkg:maven/org.jacoco/org.jacoco.core@0.8.8?type=jar", + "type": "library", + "group": "org.jacoco", + "bom-ref": "pkg:maven/org.jacoco/org.jacoco.core@0.8.8?type=jar", + "version": "0.8.8", + "licenses": [ + { + "license": { + "id": "EPL-2.0", + "url": "https://www.eclipse.org/legal/epl-2.0" + } + } + ], + "publisher": "Mountainminds GmbH & Co. KG", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "JaCoCo Core", + "externalReferences": [ + { + "url": "http://org.jacoco.core", + "type": "website" + }, + { + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://github.com/jacoco/jacoco/issues", + "type": "issue-tracker" + }, + { + "url": "https://github.com/jacoco/jacoco", + "type": "vcs" + } + ] + }, + { + "name": "org.jacoco.report", + "purl": "pkg:maven/org.jacoco/org.jacoco.report@0.8.8?type=jar", + "type": "library", + "group": "org.jacoco", + "bom-ref": "pkg:maven/org.jacoco/org.jacoco.report@0.8.8?type=jar", + "version": "0.8.8", + "licenses": [ + { + "license": { + "id": "EPL-2.0", + "url": "https://www.eclipse.org/legal/epl-2.0" + } + } + ], + "publisher": "Mountainminds GmbH & Co. KG", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "JaCoCo Report", + "externalReferences": [ + { + "url": "http://org.jacoco.report", + "type": "website" + }, + { + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://github.com/jacoco/jacoco/issues", + "type": "issue-tracker" + }, + { + "url": "https://github.com/jacoco/jacoco", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-jacoco-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-jacoco-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-jacoco-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-jaxb", + "purl": "pkg:maven/io.quarkus/quarkus-jaxb@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-jaxb@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "XML serialization support", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-jaxp", + "purl": "pkg:maven/io.quarkus/quarkus-jaxp@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-jaxp@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Java API for XML Processing", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-jaxb-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-jaxb-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-jaxb-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-jaxb", + "purl": "pkg:maven/io.quarkus/quarkus-jaxb@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-jaxb:2.13.9.Final-redhat-00003#1", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "XML serialization support", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-jaxp-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-jaxp-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-jaxp-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-jaxrs-client-reactive", + "purl": "pkg:maven/io.quarkus/quarkus-jaxrs-client-reactive@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-jaxrs-client-reactive@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Consume JAX-RS resources reactively", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-resteasy-reactive-common", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-common@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-common@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Common runtime parts of Quarkus RESTEasy Reactive", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "resteasy-reactive-client", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-client@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus.resteasy.reactive", + "bom-ref": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-client@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Provides, via submodules, a base configuration for JBoss project builds, as well as a derived configuration supporting multi-release JARs", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.redhat.com/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "vertx-web-client", + "purl": "pkg:maven/io.vertx/vertx-web-client@4.3.4.redhat-00008?type=jar", + "type": "library", + "group": "io.vertx", + "bom-ref": "pkg:maven/io.vertx/vertx-web-client@4.3.4.redhat-00008?type=jar", + "version": "4.3.4.redhat-00008", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + }, + { + "license": { + "id": "EPL-1.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "08d85a10f9bb1681f542692bf3c66b66deb069e7", + "url": "https://code.engineering.redhat.com/gerrit/vert-x3/vertx-web.git#vertx-4.3.4.GA-1" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Sonatype helps open source projects to set up Maven repositories on https://oss.sonatype.org/", + "externalReferences": [ + { + "url": "http://nexus.sonatype.org/oss-repository-hosting.html/vertx-parent/vertx-ext/vertx-ext-parent/vertx-web-parent/vertx-web-client", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/vert-x3/vertx-web.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AZB7PSY53RQBW", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-jaxrs-client-reactive-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-jaxrs-client-reactive-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-jaxrs-client-reactive-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-resteasy-reactive-common-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-common-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-common-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-security-spi", + "purl": "pkg:maven/io.quarkus/quarkus-security-spi@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-security-spi@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "resteasy-reactive-client-processor", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-client-processor@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus.resteasy.reactive", + "bom-ref": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-client-processor@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Provides, via submodules, a base configuration for JBoss project builds, as well as a derived configuration supporting multi-release JARs", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.redhat.com/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-jdbc-db2", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-db2@2.13.9.Final?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-jdbc-db2@2.13.9.Final?type=jar", + "version": "2.13.9.Final", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "JBoss by Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Connect to the DB2 database via JDBC", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://github.com/quarkusio/quarkus", + "type": "vcs" + } + ] + }, + { + "name": "jcc", + "purl": "pkg:maven/com.ibm.db2/jcc@11.5.7.0?type=jar", + "type": "library", + "group": "com.ibm.db2", + "bom-ref": "pkg:maven/com.ibm.db2/jcc@11.5.7.0?type=jar", + "version": "11.5.7.0", + "licenses": [ + { + "license": { + "url": "https://www-40.ibm.com/software/sla/sladb.nsf/lilookup/1024954E51C94B03002587A4003CB520?OpenDocument", + "name": "International Program License Agreement (IPLA)" + } + } + ], + "publisher": "central", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "IBM Data Server Driver for JDBC and SQLJ is a pure-Java driver (Type 4) that supports the JDBC 4 specification. You can use this JDBC driver for Java applications that access the Db2® LUW database server.", + "externalReferences": [ + { + "url": "com.ibm.db2:jcc", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-jdbc-db2-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-db2-deployment@2.13.9.Final?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-jdbc-db2-deployment@2.13.9.Final?type=jar", + "version": "2.13.9.Final", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "JBoss by Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://github.com/quarkusio/quarkus", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-devservices-db2", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-db2@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-devservices-db2@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "DevServices allows Quarkus to automatically configure and start databases and other containers in dev and test mode.", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "db2", + "purl": "pkg:maven/org.testcontainers/db2@1.17.3?type=jar", + "type": "library", + "group": "org.testcontainers", + "bom-ref": "pkg:maven/org.testcontainers/db2@1.17.3?type=jar", + "version": "1.17.3", + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "publisher": "central", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Isolated container management for Java code testing", + "externalReferences": [ + { + "url": "https://testcontainers.org", + "type": "website" + }, + { + "url": "https://github.com/testcontainers/testcontainers-java/issues", + "type": "issue-tracker" + }, + { + "url": "https://github.com/testcontainers/testcontainers-java", + "type": "vcs" + } + ] + }, + { + "name": "jdbc", + "purl": "pkg:maven/org.testcontainers/jdbc@1.17.3?type=jar", + "type": "library", + "group": "org.testcontainers", + "bom-ref": "pkg:maven/org.testcontainers/jdbc@1.17.3?type=jar", + "version": "1.17.3", + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "publisher": "central", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Isolated container management for Java code testing", + "externalReferences": [ + { + "url": "https://testcontainers.org", + "type": "website" + }, + { + "url": "https://github.com/testcontainers/testcontainers-java/issues", + "type": "issue-tracker" + }, + { + "url": "https://github.com/testcontainers/testcontainers-java", + "type": "vcs" + } + ] + }, + { + "name": "database-commons", + "purl": "pkg:maven/org.testcontainers/database-commons@1.17.3?type=jar", + "type": "library", + "group": "org.testcontainers", + "bom-ref": "pkg:maven/org.testcontainers/database-commons@1.17.3?type=jar", + "version": "1.17.3", + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "publisher": "central", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Isolated container management for Java code testing", + "externalReferences": [ + { + "url": "https://testcontainers.org", + "type": "website" + }, + { + "url": "https://github.com/testcontainers/testcontainers-java/issues", + "type": "issue-tracker" + }, + { + "url": "https://github.com/testcontainers/testcontainers-java", + "type": "vcs" + } + ] + }, + { + "name": "org.eclipse.transformer", + "purl": "pkg:maven/org.eclipse.transformer/org.eclipse.transformer@0.5.0?type=jar", + "type": "library", + "group": "org.eclipse.transformer", + "bom-ref": "pkg:maven/org.eclipse.transformer/org.eclipse.transformer@0.5.0?type=jar", + "version": "0.5.0", + "licenses": [ + { + "license": { + "url": "https://opensource.org/licenses/EPL-2.0,https://opensource.org/licenses/Apache-2.0", + "name": "(EPL-2.0 OR Apache-2.0)" + } + } + ], + "publisher": "Eclipse Foundation", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Eclipse Transformer Library", + "externalReferences": [ + { + "url": "https://projects.eclipse.org/projects/technology.transformer", + "type": "website" + }, + { + "url": "https://github.com/eclipse/transformer/issues", + "type": "issue-tracker" + }, + { + "url": "http://www.eclipse.org/lists/transformer-dev", + "type": "mailing-list" + }, + { + "url": "https://github.com/eclipse/transformer", + "type": "vcs" + } + ] + }, + { + "name": "biz.aQute.bnd.transform", + "purl": "pkg:maven/biz.aQute.bnd/biz.aQute.bnd.transform@6.3.1?type=jar", + "type": "library", + "group": "biz.aQute.bnd", + "bom-ref": "pkg:maven/biz.aQute.bnd/biz.aQute.bnd.transform@6.3.1?type=jar", + "version": "6.3.1", + "licenses": [ + { + "license": { + "url": "https://opensource.org/licenses/Apache-2.0,https://opensource.org/licenses/EPL-2.0", + "name": "(Apache-2.0 OR EPL-2.0)" + } + } + ], + "publisher": "Bndtools", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Class file and Manifest header Transformation Support", + "externalReferences": [ + { + "url": "https://bnd.bndtools.org/", + "type": "website" + }, + { + "url": "https://github.com/bndtools/bnd", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-jdbc-derby", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-derby@2.13.9.Final?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-jdbc-derby@2.13.9.Final?type=jar", + "version": "2.13.9.Final", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "JBoss by Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Connect to the Derby database via JDBC", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://github.com/quarkusio/quarkus", + "type": "vcs" + } + ] + }, + { + "name": "derbyclient", + "purl": "pkg:maven/org.apache.derby/derbyclient@10.14.2.0?type=jar", + "type": "library", + "group": "org.apache.derby", + "bom-ref": "pkg:maven/org.apache.derby/derbyclient@10.14.2.0?type=jar", + "version": "10.14.2.0", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "Apache Software Foundation", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The Derby client JDBC driver, used to connect to a Derby server over a network connection.", + "externalReferences": [ + { + "url": "http://db.apache.org/derby/", + "type": "website" + }, + { + "url": "https://repository.apache.org/service/local/staging/deploy/maven2", + "type": "distribution" + }, + { + "url": "https://issues.apache.org/jira/browse/DERBY", + "type": "issue-tracker" + }, + { + "url": "http://mail-archives.apache.org/mod_mbox/db-derby-user/", + "type": "mailing-list" + }, + { + "url": "https://svn.apache.org/repos/asf/db/derby/code/trunk", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-jdbc-derby-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-derby-deployment@2.13.9.Final?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-jdbc-derby-deployment@2.13.9.Final?type=jar", + "version": "2.13.9.Final", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "JBoss by Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://github.com/quarkusio/quarkus", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-devservices-derby", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-derby@2.13.9.Final?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-devservices-derby@2.13.9.Final?type=jar", + "version": "2.13.9.Final", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "JBoss by Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "DevServices allows Quarkus to automatically configure and start databases and other containers in dev and test mode.", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://github.com/quarkusio/quarkus", + "type": "vcs" + } + ] + }, + { + "name": "derbynet", + "purl": "pkg:maven/org.apache.derby/derbynet@10.14.2.0?type=jar", + "type": "library", + "group": "org.apache.derby", + "bom-ref": "pkg:maven/org.apache.derby/derbynet@10.14.2.0?type=jar", + "version": "10.14.2.0", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "Apache Software Foundation", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Contains the Apache Derby network server, which allows remote clients to connect to Derby databases over a network connection using the Derby client JDBC driver.", + "externalReferences": [ + { + "url": "http://db.apache.org/derby/", + "type": "website" + }, + { + "url": "https://repository.apache.org/service/local/staging/deploy/maven2", + "type": "distribution" + }, + { + "url": "https://issues.apache.org/jira/browse/DERBY", + "type": "issue-tracker" + }, + { + "url": "http://mail-archives.apache.org/mod_mbox/db-derby-user/", + "type": "mailing-list" + }, + { + "url": "https://svn.apache.org/repos/asf/db/derby/code/trunk", + "type": "vcs" + } + ] + }, + { + "name": "derby", + "purl": "pkg:maven/org.apache.derby/derby@10.14.2.0?type=jar", + "type": "library", + "group": "org.apache.derby", + "bom-ref": "pkg:maven/org.apache.derby/derby@10.14.2.0?type=jar", + "version": "10.14.2.0", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "Apache Software Foundation", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Contains the core Apache Derby database engine, which also includes the embedded JDBC driver.", + "externalReferences": [ + { + "url": "http://db.apache.org/derby/", + "type": "website" + }, + { + "url": "https://repository.apache.org/service/local/staging/deploy/maven2", + "type": "distribution" + }, + { + "url": "https://issues.apache.org/jira/browse/DERBY", + "type": "issue-tracker" + }, + { + "url": "http://mail-archives.apache.org/mod_mbox/db-derby-user/", + "type": "mailing-list" + }, + { + "url": "https://svn.apache.org/repos/asf/db/derby/code/trunk", + "type": "vcs" + } + ] + }, + { + "name": "derbytools", + "purl": "pkg:maven/org.apache.derby/derbytools@10.14.2.0?type=jar", + "type": "library", + "group": "org.apache.derby", + "bom-ref": "pkg:maven/org.apache.derby/derbytools@10.14.2.0?type=jar", + "version": "10.14.2.0", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "Apache Software Foundation", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Contains Apache Derby tools like ij, sysinfo, and dblook.", + "externalReferences": [ + { + "url": "http://db.apache.org/derby/", + "type": "website" + }, + { + "url": "https://repository.apache.org/service/local/staging/deploy/maven2", + "type": "distribution" + }, + { + "url": "https://issues.apache.org/jira/browse/DERBY", + "type": "issue-tracker" + }, + { + "url": "http://mail-archives.apache.org/mod_mbox/db-derby-user/", + "type": "mailing-list" + }, + { + "url": "https://svn.apache.org/repos/asf/db/derby/code/trunk", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-jdbc-h2", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-h2@2.13.9.Final?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-jdbc-h2@2.13.9.Final?type=jar", + "version": "2.13.9.Final", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "JBoss by Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Connect to the H2 database via JDBC", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://github.com/quarkusio/quarkus", + "type": "vcs" + } + ] + }, + { + "name": "h2", + "purl": "pkg:maven/com.h2database/h2@2.1.214?type=jar", + "type": "library", + "group": "com.h2database", + "bom-ref": "pkg:maven/com.h2database/h2@2.1.214?type=jar", + "version": "2.1.214", + "licenses": [ + { + "license": { + "id": "MPL-2.0" + } + }, + { + "license": { + "url": "https://opensource.org/licenses/eclipse-1.0.php", + "name": "EPL 1.0" + } + } + ], + "publisher": "central", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "H2 Database Engine", + "externalReferences": [ + { + "url": "https://h2database.com", + "type": "website" + }, + { + "url": "https://github.com/h2database/h2database", + "type": "vcs" + } + ] + }, + { + "name": "jts-core", + "purl": "pkg:maven/org.locationtech.jts/jts-core@1.17.0?type=jar", + "type": "library", + "group": "org.locationtech.jts", + "bom-ref": "pkg:maven/org.locationtech.jts/jts-core@1.17.0?type=jar", + "version": "1.17.0", + "licenses": [ + { + "license": { + "id": "EPL-2.0" + } + }, + { + "license": { + "id": "BSD-3-Clause" + } + } + ], + "publisher": "central", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The JTS Topology Suite is an API for 2D linear geometry predicates and functions.", + "externalReferences": [ + { + "url": "https://www.locationtech.org/projects/technology.jts/jts-modules/jts-core", + "type": "website" + }, + { + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://github.com/locationtech/jts", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-jdbc-h2-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-h2-deployment@2.13.9.Final?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-jdbc-h2-deployment@2.13.9.Final?type=jar", + "version": "2.13.9.Final", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "JBoss by Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://github.com/quarkusio/quarkus", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-devservices-h2", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-h2@2.13.9.Final?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-devservices-h2@2.13.9.Final?type=jar", + "version": "2.13.9.Final", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "JBoss by Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "DevServices allows Quarkus to automatically configure and start databases and other containers in dev and test mode.", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://github.com/quarkusio/quarkus", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-jdbc-mariadb", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mariadb@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-jdbc-mariadb@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Connect to the MariaDB database via JDBC", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "mariadb-java-client", + "purl": "pkg:maven/org.mariadb.jdbc/mariadb-java-client@3.0.8.redhat-00001?type=jar", + "type": "library", + "group": "org.mariadb.jdbc", + "bom-ref": "pkg:maven/org.mariadb.jdbc/mariadb-java-client@3.0.8.redhat-00001?type=jar", + "version": "3.0.8.redhat-00001", + "licenses": [ + { + "license": { + "id": "LGPL-2.1", + "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c70108a2a1f803445242e622d8088af57a7f7956", + "url": "https://code.engineering.redhat.com/gerrit/mariadb-corporation/mariadb-connector-j.git#3.0.8.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "JDBC driver for MariaDB and MySQL", + "externalReferences": [ + { + "url": "https://mariadb.com/kb/en/mariadb/about-mariadb-connector-j/", + "type": "website" + }, + { + "url": "https://mariadb.atlassian.net/browse/CONJ", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/mariadb-corporation/mariadb-connector-j.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU3LORPW3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.11-9-mvn3.6.3-gradle7.0.2:1.0.9", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-jdbc-mariadb-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mariadb-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-jdbc-mariadb-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-devservices-mariadb", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-mariadb@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-devservices-mariadb@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "DevServices allows Quarkus to automatically configure and start databases and other containers in dev and test mode.", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "mariadb", + "purl": "pkg:maven/org.testcontainers/mariadb@1.17.3?type=jar", + "type": "library", + "group": "org.testcontainers", + "bom-ref": "pkg:maven/org.testcontainers/mariadb@1.17.3?type=jar", + "version": "1.17.3", + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "publisher": "central", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Isolated container management for Java code testing", + "externalReferences": [ + { + "url": "https://testcontainers.org", + "type": "website" + }, + { + "url": "https://github.com/testcontainers/testcontainers-java/issues", + "type": "issue-tracker" + }, + { + "url": "https://github.com/testcontainers/testcontainers-java", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-jdbc-mssql", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mssql@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-jdbc-mssql@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Connect to the Microsoft SQL Server database via JDBC", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "mssql-jdbc", + "purl": "pkg:maven/com.microsoft.sqlserver/mssql-jdbc@11.2.0.jre11?type=jar", + "type": "library", + "group": "com.microsoft.sqlserver", + "bom-ref": "pkg:maven/com.microsoft.sqlserver/mssql-jdbc@11.2.0.jre11?type=jar", + "version": "11.2.0.jre11", + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "publisher": "Microsoft Corporation", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Microsoft JDBC Driver for SQL Server.", + "externalReferences": [ + { + "url": "https://github.com/Microsoft/mssql-jdbc", + "type": "website" + }, + { + "url": "https://github.com/Microsoft/mssql-jdbc", + "type": "vcs" + } + ] + }, + { + "name": "antlr4-runtime", + "purl": "pkg:maven/org.antlr/antlr4-runtime@4.9.2.redhat-00003?type=jar", + "type": "library", + "group": "org.antlr", + "bom-ref": "pkg:maven/org.antlr/antlr4-runtime@4.9.2.redhat-00003?type=jar", + "version": "4.9.2.redhat-00003", + "licenses": [ + { + "license": { + "id": "BSD-4-Clause" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c8f4c53d8a4ae8b5f17e18686da481a5129efc15", + "url": "https://code.engineering.redhat.com/gerrit/antlr/antlr4.git#4.9.2.redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The ANTLR 4 Runtime", + "externalReferences": [ + { + "url": "http://www.antlr.org/antlr4-runtime", + "type": "website" + }, + { + "url": "https://github.com/antlr/antlr4/issues", + "type": "issue-tracker" + }, + { + "url": "https://groups.google.com/forum/?fromgroups#!forum/antlr-discussion", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/antlr/antlr4.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AXZFIYU2QAIC4", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.6", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-jdbc-mssql-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mssql-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-jdbc-mssql-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-devservices-mssql", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-mssql@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-devservices-mssql@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "DevServices allows Quarkus to automatically configure and start databases and other containers in dev and test mode.", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "mssqlserver", + "purl": "pkg:maven/org.testcontainers/mssqlserver@1.17.3?type=jar", + "type": "library", + "group": "org.testcontainers", + "bom-ref": "pkg:maven/org.testcontainers/mssqlserver@1.17.3?type=jar", + "version": "1.17.3", + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "publisher": "central", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Isolated container management for Java code testing", + "externalReferences": [ + { + "url": "https://testcontainers.org", + "type": "website" + }, + { + "url": "https://github.com/testcontainers/testcontainers-java/issues", + "type": "issue-tracker" + }, + { + "url": "https://github.com/testcontainers/testcontainers-java", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-jdbc-mysql", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mysql@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-jdbc-mysql@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Connect to the MySQL database via JDBC", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "mysql-connector-java", + "purl": "pkg:maven/mysql/mysql-connector-java@8.0.30.redhat-00003?type=jar", + "type": "library", + "group": "mysql", + "bom-ref": "pkg:maven/mysql/mysql-connector-java@8.0.30.redhat-00003?type=jar", + "version": "8.0.30.redhat-00003", + "licenses": [ + { + "license": { + "name": "The GNU General Public License, v2 with FOSS exception" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "19f5ca18085cde8e30e48dcf2477570191a17c15", + "url": "https://code.engineering.redhat.com/gerrit/mysql/mysql-connector-j.git#8.0.30.redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "JDBC Type 4 driver for MySQL", + "externalReferences": [ + { + "url": "http://dev.mysql.com/doc/connector-j/en/", + "type": "website" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/mysql/mysql-connector-j.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A2K3RBSFO5IAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.6", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-jdbc-mysql-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mysql-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-jdbc-mysql-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-devservices-mysql", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-mysql@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-devservices-mysql@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "DevServices allows Quarkus to automatically configure and start databases and other containers in dev and test mode.", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "mysql", + "purl": "pkg:maven/org.testcontainers/mysql@1.17.3?type=jar", + "type": "library", + "group": "org.testcontainers", + "bom-ref": "pkg:maven/org.testcontainers/mysql@1.17.3?type=jar", + "version": "1.17.3", + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "publisher": "central", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Isolated container management for Java code testing", + "externalReferences": [ + { + "url": "https://testcontainers.org", + "type": "website" + }, + { + "url": "https://github.com/testcontainers/testcontainers-java/issues", + "type": "issue-tracker" + }, + { + "url": "https://github.com/testcontainers/testcontainers-java", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-jdbc-oracle", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-oracle@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-jdbc-oracle@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Connect to the Oracle database via JDBC", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "ojdbc11", + "purl": "pkg:maven/com.oracle.database.jdbc/ojdbc11@21.5.0.0?type=jar", + "type": "library", + "group": "com.oracle.database.jdbc", + "bom-ref": "pkg:maven/com.oracle.database.jdbc/ojdbc11@21.5.0.0?type=jar", + "version": "21.5.0.0", + "licenses": [ + { + "license": { + "url": "https://www.oracle.com/downloads/licenses/oracle-free-license.html", + "name": "Oracle Free Use Terms and Conditions (FUTC)" + } + } + ], + "publisher": "central", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Oracle JDBC Driver compatible with JDK11, JDK12, JDK13, JDK14 and JDK15", + "externalReferences": [ + { + "url": "https://www.oracle.com/database/technologies/maven-central-guide.html", + "type": "website" + }, + { + "url": "com.oracle.database.jdbc:ojdbc11", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-jdbc-oracle-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-oracle-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-jdbc-oracle-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-devservices-oracle", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-oracle@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-devservices-oracle@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "DevServices allows Quarkus to automatically configure and start databases and other containers in dev and test mode.", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "oracle-xe", + "purl": "pkg:maven/org.testcontainers/oracle-xe@1.17.3?type=jar", + "type": "library", + "group": "org.testcontainers", + "bom-ref": "pkg:maven/org.testcontainers/oracle-xe@1.17.3?type=jar", + "version": "1.17.3", + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "publisher": "central", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Isolated container management for Java code testing", + "externalReferences": [ + { + "url": "https://testcontainers.org", + "type": "website" + }, + { + "url": "https://github.com/testcontainers/testcontainers-java/issues", + "type": "issue-tracker" + }, + { + "url": "https://github.com/testcontainers/testcontainers-java", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-jdbc-postgresql", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-postgresql@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-jdbc-postgresql@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Connect to the PostgreSQL database via JDBC", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "postgresql", + "purl": "pkg:maven/org.postgresql/postgresql@42.5.6.redhat-00001?type=jar", + "type": "library", + "group": "org.postgresql", + "bom-ref": "pkg:maven/org.postgresql/postgresql@42.5.6.redhat-00001?type=jar", + "version": "42.5.6.redhat-00001", + "licenses": [ + { + "license": { + "id": "BSD-2-Clause", + "url": "https://opensource.org/licenses/BSD-2-Clause" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "fc4fe1b88959538667e25f5bbceefc800ba120c2", + "url": "https://code.engineering.redhat.com/gerrit/pgjdbc/pgjdbc.git#42.5.6.redhat-00001" + }, + { + "uid": "b9953dc45e1607ec1db292f59768f857b75386ef", + "url": "https://github.com/pgjdbc/pgjdbc.git#REL42.5.6" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "PostgreSQL JDBC Driver Postgresql", + "externalReferences": [ + { + "url": "https://jdbc.postgresql.org", + "type": "website" + }, + { + "url": "https://github.com/pgjdbc/pgjdbc/issues", + "type": "issue-tracker" + }, + { + "url": "https://www.postgresql.org/list/pgsql-jdbc/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/pgjdbc/pgjdbc.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A7JNKDLUSDYAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.3.9-gradle6.8.3:1.0.8", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-jdbc-postgresql-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-postgresql-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-jdbc-postgresql-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-devservices-postgresql", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-postgresql@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-devservices-postgresql@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "DevServices allows Quarkus to automatically configure and start databases and other containers in dev and test mode.", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "postgresql", + "purl": "pkg:maven/org.testcontainers/postgresql@1.17.3?type=jar", + "type": "library", + "group": "org.testcontainers", + "bom-ref": "pkg:maven/org.testcontainers/postgresql@1.17.3?type=jar", + "version": "1.17.3", + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "publisher": "central", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Isolated container management for Java code testing", + "externalReferences": [ + { + "url": "https://testcontainers.org", + "type": "website" + }, + { + "url": "https://github.com/testcontainers/testcontainers-java/issues", + "type": "issue-tracker" + }, + { + "url": "https://github.com/testcontainers/testcontainers-java", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-jsonb", + "purl": "pkg:maven/io.quarkus/quarkus-jsonb@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-jsonb@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "JSON Binding support", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "yasson", + "purl": "pkg:maven/org.eclipse/yasson@1.0.11.redhat-00002?type=jar", + "type": "library", + "group": "org.eclipse", + "bom-ref": "pkg:maven/org.eclipse/yasson@1.0.11.redhat-00002?type=jar", + "version": "1.0.11.redhat-00002", + "licenses": [ + { + "license": { + "id": "EPL-2.0" + } + }, + { + "license": { + "id": "BSD-3-Clause" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "9595aa6ae9918775efe12fa88b10fc1907a06606", + "url": "https://code.engineering.redhat.com/gerrit/eclipse-ee4j/yasson.git#1.0.11.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Eclipse Yasson. Reference implementation of JSR-367 (JSON-B).", + "externalReferences": [ + { + "url": "https://projects.eclipse.org/projects/ee4j.yasson", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/eclipse-ee4j/yasson/issues", + "type": "issue-tracker" + }, + { + "url": "https://dev.eclipse.org/mhonarc/lists/yasson-dev/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/eclipse-ee4j/yasson.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/ASAAA4JGHEAAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j17.0.2-8-mx-mvn3.6.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "jakarta.json.bind-api", + "purl": "pkg:maven/jakarta.json.bind/jakarta.json.bind-api@1.0.2.redhat-00004?type=jar", + "type": "library", + "group": "jakarta.json.bind", + "bom-ref": "pkg:maven/jakarta.json.bind/jakarta.json.bind-api@1.0.2.redhat-00004?type=jar", + "version": "1.0.2.redhat-00004", + "licenses": [ + { + "license": { + "id": "EPL-2.0", + "url": "https://www.eclipse.org/legal/epl-2.0" + } + }, + { + "license": { + "url": "https://projects.eclipse.org/license/secondary-gpl-2.0-cp", + "name": "GNU General Public License, version 2 with the GNU Classpath Exception" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "eeaa3e67e007047bfc957b942d79660f86de2d7d", + "url": "https://code.engineering.redhat.com/gerrit/eclipse-ee4j/jsonb-api.git#1.0.2.redhat-00004" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Jakarta JSON Binding is a standard binding layer for converting Java objects to/from JSON documents.", + "externalReferences": [ + { + "url": "https://eclipse-ee4j.github.io/jsonb-api", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/eclipse-ee4j/jsonb-api/issues", + "type": "issue-tracker" + }, + { + "url": "jsonb-dev@eclipse.org", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/eclipse-ee4j/jsonb-api.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AXZFIYUZYAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.5", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "jakarta.json", + "purl": "pkg:maven/org.glassfish/jakarta.json@1.1.6?classifier=module&type=jar", + "type": "library", + "group": "org.glassfish", + "bom-ref": "pkg:maven/org.glassfish/jakarta.json@1.1.6?classifier=module&type=jar", + "version": "1.1.6", + "licenses": [ + { + "license": { + "id": "EPL-2.0", + "url": "https://www.eclipse.org/legal/epl-2.0" + } + }, + { + "license": { + "url": "https://projects.eclipse.org/license/secondary-gpl-2.0-cp", + "name": "GNU General Public License, version 2 with the GNU Classpath Exception" + } + } + ], + "publisher": "Eclipse Foundation", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Default provider for Jakarta JSON Processing", + "externalReferences": [ + { + "url": "https://github.com/eclipse-ee4j/jsonp", + "type": "website" + }, + { + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://github.com/eclipse-ee4j/ee4j/issues", + "type": "issue-tracker" + }, + { + "url": "https://dev.eclipse.org/mhonarc/lists/jakarta.ee-community/", + "type": "mailing-list" + }, + { + "url": "https://github.com/eclipse-ee4j/jsonp", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-jsonb-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-jsonb-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-jsonb-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-jsonb", + "purl": "pkg:maven/io.quarkus/quarkus-jsonb@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-jsonb:2.13.9.Final-redhat-00003#1", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "JSON Binding support", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "yasson", + "purl": "pkg:maven/org.eclipse/yasson@1.0.11.redhat-00002?type=jar", + "type": "library", + "group": "org.eclipse", + "bom-ref": "o.e:yasson:1.0.11.redhat-00002#1", + "version": "1.0.11.redhat-00002", + "licenses": [ + { + "license": { + "id": "EPL-2.0" + } + }, + { + "license": { + "id": "BSD-3-Clause" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "9595aa6ae9918775efe12fa88b10fc1907a06606", + "url": "https://code.engineering.redhat.com/gerrit/eclipse-ee4j/yasson.git#1.0.11.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Eclipse Yasson. Reference implementation of JSR-367 (JSON-B).", + "externalReferences": [ + { + "url": "https://projects.eclipse.org/projects/ee4j.yasson", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/eclipse-ee4j/yasson/issues", + "type": "issue-tracker" + }, + { + "url": "https://dev.eclipse.org/mhonarc/lists/yasson-dev/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/eclipse-ee4j/yasson.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/ASAAA4JGHEAAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j17.0.2-8-mx-mvn3.6.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-kafka-client", + "purl": "pkg:maven/io.quarkus/quarkus-kafka-client@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-kafka-client@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Connect to Apache Kafka with its native API", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-kafka-client-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-kafka-client-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-kafka-client-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-devservices-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-devservices-deployment:2.13.9.Final-redhat-00003#2", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "DevServices allows Quarkus to automatically configure and start databases and other containers in dev and test mode.", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-devservices-common", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-common@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-devservices-common:2.13.9.Final-redhat-00003#2", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "DevServices allows Quarkus to automatically configure and start databases and other containers in dev and test mode.", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "testcontainers", + "purl": "pkg:maven/org.testcontainers/testcontainers@1.17.3?type=jar", + "type": "library", + "group": "org.testcontainers", + "bom-ref": "o.t:testcontainers:1.17.3#2", + "version": "1.17.3", + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "publisher": "central", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Isolated container management for Java code testing", + "externalReferences": [ + { + "url": "https://testcontainers.org", + "type": "website" + }, + { + "url": "https://github.com/testcontainers/testcontainers-java/issues", + "type": "issue-tracker" + }, + { + "url": "https://github.com/testcontainers/testcontainers-java", + "type": "vcs" + } + ] + }, + { + "name": "junit", + "purl": "pkg:maven/junit/junit@4.13.2?type=jar", + "type": "library", + "group": "junit", + "bom-ref": "j:junit:4.13.2#1", + "version": "4.13.2", + "licenses": [ + { + "license": { + "id": "EPL-1.0", + "url": "http://www.eclipse.org/legal/epl-v10.html" + } + } + ], + "publisher": "JUnit", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "JUnit is a unit testing framework for Java, created by Erich Gamma and Kent Beck.", + "externalReferences": [ + { + "url": "http://junit.org", + "type": "website" + }, + { + "url": "https://github.com/junit-team/junit4/actions", + "type": "build-system" + }, + { + "url": "https://github.com/junit-team/junit4/wiki/Download-and-Install", + "type": "distribution" + }, + { + "url": "https://github.com/junit-team/junit4/issues", + "type": "issue-tracker" + }, + { + "url": "https://github.com/junit-team/junit4", + "type": "vcs" + } + ] + }, + { + "name": "strimzi-test-container", + "purl": "pkg:maven/io.strimzi/strimzi-test-container@0.100.0?type=jar", + "type": "library", + "group": "io.strimzi", + "bom-ref": "pkg:maven/io.strimzi/strimzi-test-container@0.100.0?type=jar", + "version": "0.100.0", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "central", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The test container repository primarily relates to developing and maintaining test container code using Kafka image from the `strimzi/test-container-images` repository.", + "externalReferences": [ + { + "url": "https://github.com/strimzi/test-container", + "type": "website" + }, + { + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://github.com/strimzi/test-container/issues", + "type": "issue-tracker" + }, + { + "url": "https://github.com/strimzi/test-container", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-kafka-streams", + "purl": "pkg:maven/io.quarkus/quarkus-kafka-streams@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-kafka-streams@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Implement stream processing applications based on Apache Kafka", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "kafka-streams", + "purl": "pkg:maven/org.apache.kafka/kafka-streams@3.2.3.redhat-00016?type=jar", + "type": "library", + "group": "org.apache.kafka", + "bom-ref": "pkg:maven/org.apache.kafka/kafka-streams@3.2.3.redhat-00016?type=jar", + "version": "3.2.3.redhat-00016", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "d97480f0ee921aed0a763deb5f91377c23818992", + "url": "https://code.engineering.redhat.com/gerrit/apache/kafka.git#3.2.3.redhat-00016-d97480f0" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "externalReferences": [ + { + "url": "https://kafka.apache.org", + "type": "website" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/apache/kafka.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A33HOJCJKMYAI", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3-gradle7.1.1:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "rocksdbjni", + "purl": "pkg:maven/org.rocksdb/rocksdbjni@6.29.4.redhat-00003?type=jar", + "type": "library", + "group": "org.rocksdb", + "bom-ref": "pkg:maven/org.rocksdb/rocksdbjni@6.29.4.redhat-00003?type=jar", + "version": "6.29.4.redhat-00003", + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "externalReferences": [ + { + "url": "https://code.engineering.redhat.com/gerrit/facebook/rocksdb.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + } + ] + }, + { + "name": "quarkus-kafka-streams-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-kafka-streams-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-kafka-streams-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-kafka-client-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-kafka-client-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-kafka-client-deployment:2.13.9.Final-redhat-00003#1", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "strimzi-test-container", + "purl": "pkg:maven/io.strimzi/strimzi-test-container@0.100.0?type=jar", + "type": "library", + "group": "io.strimzi", + "bom-ref": "i.s:strimzi-test-container:0.100.0#1", + "version": "0.100.0", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "central", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The test container repository primarily relates to developing and maintaining test container code using Kafka image from the `strimzi/test-container-images` repository.", + "externalReferences": [ + { + "url": "https://github.com/strimzi/test-container", + "type": "website" + }, + { + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://github.com/strimzi/test-container/issues", + "type": "issue-tracker" + }, + { + "url": "https://github.com/strimzi/test-container", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-keycloak-authorization", + "purl": "pkg:maven/io.quarkus/quarkus-keycloak-authorization@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-keycloak-authorization@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Policy enforcer using Keycloak-managed permissions to control access to protected resources", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-apache-httpclient", + "purl": "pkg:maven/io.quarkus/quarkus-apache-httpclient@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-apache-httpclient:2.13.9.Final-redhat-00003#2", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Connect to HTTP resources using the Apache HttpClient", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "httpclient", + "purl": "pkg:maven/org.apache.httpcomponents/httpclient@4.5.13.redhat-00006?type=jar", + "type": "library", + "group": "org.apache.httpcomponents", + "bom-ref": "o.a.h:httpclient:4.5.13.redhat-00006#2", + "version": "4.5.13.redhat-00006", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "9dd2b5380d187926908ef7f895cfda6b75a01356", + "url": "https://code.engineering.redhat.com/gerrit/apache/httpclient.git#4.5.13.redhat-00006" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Apache HttpComponents Client", + "externalReferences": [ + { + "url": "http://hc.apache.org/httpcomponents-client", + "type": "website" + }, + { + "url": "http://issues.apache.org/jira/browse/HTTPCLIENT", + "type": "issue-tracker" + }, + { + "url": "http://mail-archives.apache.org/mod_mbox/hc-httpclient-users/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/apache/httpclient.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A2ZTSKSSSEQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.3.9:1.0.5", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "commons-logging", + "purl": "pkg:maven/commons-logging/commons-logging@1.2.0.redhat-00008?type=jar", + "type": "library", + "group": "commons-logging", + "bom-ref": "pkg:maven/commons-logging/commons-logging@1.2.0.redhat-00008?type=jar", + "version": "1.2.0.redhat-00008", + "licenses": [ + { + "license": { + "url": "http://repository.jboss.org/licenses/cc0-1.0.txt", + "name": "Public Domain" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Apache Commons Logging is a thin adapter allowing configurable bridging to other, well known logging systems.", + "externalReferences": [ + { + "url": "http://commons.apache.org/proper/commons-logging/", + "type": "website" + }, + { + "url": "https://continuum-ci.apache.org/", + "type": "build-system" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "http://issues.apache.org/jira/browse/LOGGING", + "type": "issue-tracker" + }, + { + "url": "http://mail-archives.apache.org/mod_mbox/commons-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/apache/commons-logging.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-oidc", + "purl": "pkg:maven/io.quarkus/quarkus-oidc@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-oidc@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Verify Bearer access tokens and authenticate users with Authorization Code Flow", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-oidc-common", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-common@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-oidc-common@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "OpenID Connect Common - Runtime", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-smallrye-jwt-build", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-jwt-build@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-smallrye-jwt-build@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Create JSON Web Token with SmallRye JWT Build API", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-jwt-build", + "purl": "pkg:maven/io.smallrye/smallrye-jwt-build@3.5.4.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye", + "bom-ref": "pkg:maven/io.smallrye/smallrye-jwt-build@3.5.4.redhat-00001?type=jar", + "version": "3.5.4.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "ca13085d19f6aea33f47ba99e279f064428e8e33", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-jwt.git#3.5.4.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "SmallRye Parent POM", + "externalReferences": [ + { + "url": "http://smallrye.io/smallrye-jwt-implementation-parent/smallrye-jwt-build", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-jwt/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-jwt.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU3M6QFFTVQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.6", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-jwt-common", + "purl": "pkg:maven/io.smallrye/smallrye-jwt-common@3.5.4.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye", + "bom-ref": "pkg:maven/io.smallrye/smallrye-jwt-common@3.5.4.redhat-00001?type=jar", + "version": "3.5.4.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "ca13085d19f6aea33f47ba99e279f064428e8e33", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-jwt.git#3.5.4.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "SmallRye Parent POM", + "externalReferences": [ + { + "url": "http://smallrye.io/smallrye-jwt-implementation-parent/smallrye-jwt-common", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-jwt/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-jwt.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU3M6QFFTVQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.6", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "jose4j", + "purl": "pkg:maven/org.bitbucket.b_c/jose4j@0.9.3.redhat-00004?type=jar", + "type": "library", + "group": "org.bitbucket.b_c", + "bom-ref": "pkg:maven/org.bitbucket.b_c/jose4j@0.9.3.redhat-00004?type=jar", + "version": "0.9.3.redhat-00004", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "f5cdb625e2022d2a35c03150f150ba1b334b29a5", + "url": "https://code.engineering.redhat.com/gerrit/b_c/jose4j.git#0.9.3.redhat-00004" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The jose.4.j library is a robust and easy to use open source implementation of JSON Web Token (JWT) and the JOSE specification suite (JWS, JWE, and JWK). It is written in Java and relies solely on the JCA APIs for cryptography. Please see https://bitbucket.org/b_c/jose4j/wiki/Home for more info, examples, etc..", + "externalReferences": [ + { + "url": "https://bitbucket.org/b_c/jose4j/", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/b_c/jose4j.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AZ2E5DNV27AAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j17-mvn3.8.6-gradle8.1.1-gettext-jss:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "microprofile-jwt-auth-api", + "purl": "pkg:maven/org.eclipse.microprofile.jwt/microprofile-jwt-auth-api@1.2.0.redhat-00002?type=jar", + "type": "library", + "group": "org.eclipse.microprofile.jwt", + "bom-ref": "pkg:maven/org.eclipse.microprofile.jwt/microprofile-jwt-auth-api@1.2.0.redhat-00002?type=jar", + "version": "1.2.0.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "82255b81c6a692f44a5e41c9213091f3e4ae0c38", + "url": "http://code.engineering.redhat.com/gerrit/eclipse/microprofile-jwt-auth.git#1.2.0.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Eclipse MicroProfile JWT Feature - API", + "externalReferences": [ + { + "url": "http://microprofile.io/microprofile-jwt-auth-api", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/eclipse/microprofile-jwt-auth/issues", + "type": "issue-tracker" + }, + { + "url": "http://code.engineering.redhat.com/gerrit/eclipse/microprofile-jwt-auth.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/90435", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.1", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-mutiny-vertx-web-client", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web-client@2.27.0.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye.reactive", + "bom-ref": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web-client@2.27.0.redhat-00001?type=jar", + "version": "2.27.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "109a2da366d4e52568be8ecbeafd802e9d1091fa", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-mutiny-vertx-bindings.git#2.27.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "SmallRye Build Parent POM", + "externalReferences": [ + { + "url": "https://smallrye.io/smallrye-mutiny-vertx-bindings/vertx-mutiny-clients/smallrye-mutiny-vertx-web-client", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-mutiny-vertx-bindings/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-mutiny-vertx-bindings.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU3MITW53VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-security", + "purl": "pkg:maven/io.quarkus/quarkus-security@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-security@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Security", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-jwt", + "purl": "pkg:maven/io.smallrye/smallrye-jwt@3.5.4.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye", + "bom-ref": "pkg:maven/io.smallrye/smallrye-jwt@3.5.4.redhat-00001?type=jar", + "version": "3.5.4.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "ca13085d19f6aea33f47ba99e279f064428e8e33", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-jwt.git#3.5.4.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "SmallRye Parent POM", + "externalReferences": [ + { + "url": "http://smallrye.io/smallrye-jwt-implementation-parent/smallrye-jwt", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-jwt/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-jwt.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU3M6QFFTVQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.6", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "keycloak-adapter-core", + "purl": "pkg:maven/org.keycloak/keycloak-adapter-core@18.0.6.redhat-00001?type=jar", + "type": "library", + "group": "org.keycloak", + "bom-ref": "pkg:maven/org.keycloak/keycloak-adapter-core@18.0.6.redhat-00001?type=jar", + "version": "18.0.6.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "1cfd3077e927f54d7425ab6fff30f2cb0124e140", + "url": "https://code.engineering.redhat.com/gerrit/keycloak-prod.git#18.0.6.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "", + "externalReferences": [ + { + "url": "http://keycloak.org/keycloak-adapter-core", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/keycloak/keycloak/issues", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/keycloak-prod.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AXAF2CSVDAQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3-nodejs12-npm6:1.0.1", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "keycloak-adapter-spi", + "purl": "pkg:maven/org.keycloak/keycloak-adapter-spi@18.0.6.redhat-00001?type=jar", + "type": "library", + "group": "org.keycloak", + "bom-ref": "pkg:maven/org.keycloak/keycloak-adapter-spi@18.0.6.redhat-00001?type=jar", + "version": "18.0.6.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "1cfd3077e927f54d7425ab6fff30f2cb0124e140", + "url": "https://code.engineering.redhat.com/gerrit/keycloak-prod.git#18.0.6.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "", + "externalReferences": [ + { + "url": "http://keycloak.org/keycloak-adapter-spi", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/keycloak/keycloak/issues", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/keycloak-prod.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AXAF2CSVDAQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3-nodejs12-npm6:1.0.1", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "keycloak-authz-client", + "purl": "pkg:maven/org.keycloak/keycloak-authz-client@18.0.6.redhat-00001?type=jar", + "type": "library", + "group": "org.keycloak", + "bom-ref": "pkg:maven/org.keycloak/keycloak-authz-client@18.0.6.redhat-00001?type=jar", + "version": "18.0.6.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "1cfd3077e927f54d7425ab6fff30f2cb0124e140", + "url": "https://code.engineering.redhat.com/gerrit/keycloak-prod.git#18.0.6.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "KeyCloak AuthZ: Client API", + "externalReferences": [ + { + "url": "http://keycloak.org/keycloak-authz-parent/keycloak-authz-client", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/keycloak/keycloak/issues", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/keycloak-prod.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AXAF2CSVDAQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3-nodejs12-npm6:1.0.1", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "keycloak-core", + "purl": "pkg:maven/org.keycloak/keycloak-core@18.0.6.redhat-00001?type=jar", + "type": "library", + "group": "org.keycloak", + "bom-ref": "pkg:maven/org.keycloak/keycloak-core@18.0.6.redhat-00001?type=jar", + "version": "18.0.6.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "1cfd3077e927f54d7425ab6fff30f2cb0124e140", + "url": "https://code.engineering.redhat.com/gerrit/keycloak-prod.git#18.0.6.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "", + "externalReferences": [ + { + "url": "http://keycloak.org/keycloak-core", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/keycloak/keycloak/issues", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/keycloak-prod.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AXAF2CSVDAQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3-nodejs12-npm6:1.0.1", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "bcpkix-jdk15on", + "purl": "pkg:maven/org.bouncycastle/bcpkix-jdk15on@1.70.0.redhat-00001?type=jar", + "type": "library", + "group": "org.bouncycastle", + "bom-ref": "pkg:maven/org.bouncycastle/bcpkix-jdk15on@1.70.0.redhat-00001?type=jar", + "version": "1.70.0.redhat-00001", + "licenses": [ + { + "license": { + "url": "http://www.bouncycastle.org/licence.html", + "name": "Bouncy Castle Licence" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The Bouncy Castle Java APIs for CMS, PKCS, EAC, TSP, CMP, CRMF, OCSP, and certificate generation. This jar contains APIs for JDK 1.5 to JDK 1.8. The APIs can be used in conjunction with a JCE/JCA provider such as the one provided with the Bouncy Castle Cryptography APIs.", + "externalReferences": [ + { + "url": "http://www.bouncycastle.org/java.html/bcpkix-jdk15on", + "type": "website" + }, + { + "url": "http://www.bouncycastle.org/jira/secure/Dashboard.jspa", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://github.com/bcgit/bc-java", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + } + ] + }, + { + "name": "bcprov-jdk15on", + "purl": "pkg:maven/org.bouncycastle/bcprov-jdk15on@1.70.0.redhat-00001?type=jar", + "type": "library", + "group": "org.bouncycastle", + "bom-ref": "pkg:maven/org.bouncycastle/bcprov-jdk15on@1.70.0.redhat-00001?type=jar", + "version": "1.70.0.redhat-00001", + "licenses": [ + { + "license": { + "url": "http://www.bouncycastle.org/licence.html", + "name": "Bouncy Castle Licence" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms. This jar contains JCE provider and lightweight API for the Bouncy Castle Cryptography APIs for JDK 1.5 to JDK 1.9.", + "externalReferences": [ + { + "url": "http://www.bouncycastle.org/java.html/bcprov-jdk15on", + "type": "website" + }, + { + "url": "http://www.bouncycastle.org/jira/secure/Dashboard.jspa", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://github.com/bcgit/bc-java", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + } + ] + }, + { + "name": "bcutil-jdk15on", + "purl": "pkg:maven/org.bouncycastle/bcutil-jdk15on@1.70.0.redhat-00001?type=jar", + "type": "library", + "group": "org.bouncycastle", + "bom-ref": "pkg:maven/org.bouncycastle/bcutil-jdk15on@1.70.0.redhat-00001?type=jar", + "version": "1.70.0.redhat-00001", + "licenses": [ + { + "license": { + "url": "http://www.bouncycastle.org/licence.html", + "name": "Bouncy Castle Licence" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The Bouncy Castle Java APIs for ASN.1 extension and utility APIs used to support bcpkix and bctls. This jar contains APIs for JDK 1.5 and up.", + "externalReferences": [ + { + "url": "http://www.bouncycastle.org/java.html/bcutil-jdk15on", + "type": "website" + }, + { + "url": "http://www.bouncycastle.org/jira/secure/Dashboard.jspa", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://github.com/bcgit/bc-java", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + } + ] + }, + { + "name": "keycloak-common", + "purl": "pkg:maven/org.keycloak/keycloak-common@18.0.6.redhat-00001?type=jar", + "type": "library", + "group": "org.keycloak", + "bom-ref": "pkg:maven/org.keycloak/keycloak-common@18.0.6.redhat-00001?type=jar", + "version": "18.0.6.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "1cfd3077e927f54d7425ab6fff30f2cb0124e140", + "url": "https://code.engineering.redhat.com/gerrit/keycloak-prod.git#18.0.6.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Common library and dependencies shared with server and all adapters", + "externalReferences": [ + { + "url": "http://keycloak.org/keycloak-common", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/keycloak/keycloak/issues", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/keycloak-prod.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AXAF2CSVDAQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3-nodejs12-npm6:1.0.1", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-keycloak-authorization-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-keycloak-authorization-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-keycloak-authorization-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-keycloak-authorization", + "purl": "pkg:maven/io.quarkus/quarkus-keycloak-authorization@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-keycloak-authorization:2.13.9.Final-redhat-00003#1", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Policy enforcer using Keycloak-managed permissions to control access to protected resources", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "keycloak-authz-client", + "purl": "pkg:maven/org.keycloak/keycloak-authz-client@18.0.6.redhat-00001?type=jar", + "type": "library", + "group": "org.keycloak", + "bom-ref": "o.k:keycloak-authz-client:18.0.6.redhat-00001#1", + "version": "18.0.6.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "1cfd3077e927f54d7425ab6fff30f2cb0124e140", + "url": "https://code.engineering.redhat.com/gerrit/keycloak-prod.git#18.0.6.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "KeyCloak AuthZ: Client API", + "externalReferences": [ + { + "url": "http://keycloak.org/keycloak-authz-parent/keycloak-authz-client", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/keycloak/keycloak/issues", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/keycloak-prod.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AXAF2CSVDAQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3-nodejs12-npm6:1.0.1", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "keycloak-core", + "purl": "pkg:maven/org.keycloak/keycloak-core@18.0.6.redhat-00001?type=jar", + "type": "library", + "group": "org.keycloak", + "bom-ref": "o.k:keycloak-core:18.0.6.redhat-00001#1", + "version": "18.0.6.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "1cfd3077e927f54d7425ab6fff30f2cb0124e140", + "url": "https://code.engineering.redhat.com/gerrit/keycloak-prod.git#18.0.6.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "", + "externalReferences": [ + { + "url": "http://keycloak.org/keycloak-core", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/keycloak/keycloak/issues", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/keycloak-prod.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AXAF2CSVDAQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3-nodejs12-npm6:1.0.1", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "keycloak-common", + "purl": "pkg:maven/org.keycloak/keycloak-common@18.0.6.redhat-00001?type=jar", + "type": "library", + "group": "org.keycloak", + "bom-ref": "o.k:keycloak-common:18.0.6.redhat-00001#1", + "version": "18.0.6.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "1cfd3077e927f54d7425ab6fff30f2cb0124e140", + "url": "https://code.engineering.redhat.com/gerrit/keycloak-prod.git#18.0.6.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Common library and dependencies shared with server and all adapters", + "externalReferences": [ + { + "url": "http://keycloak.org/keycloak-common", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/keycloak/keycloak/issues", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/keycloak-prod.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AXAF2CSVDAQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3-nodejs12-npm6:1.0.1", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-oidc-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-oidc-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-oidc-common-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-common-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-oidc-common-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-smallrye-jwt-build-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-jwt-build-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-smallrye-jwt-build-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-security-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-security-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-security-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-kubernetes", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-kubernetes@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Generate Kubernetes resources from annotations", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-kubernetes-config", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-config@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-kubernetes-config@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Read runtime configuration from Kubernetes ConfigMaps and Secrets", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-kubernetes-client", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-kubernetes-client@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Interact with Kubernetes and develop Kubernetes Operators", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-kubernetes-config-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-config-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-kubernetes-config-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-kubernetes-client-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-kubernetes-client-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-kubernetes-client-internal-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client-internal-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-kubernetes-client-internal-deployment:2.13.9.Final-redhat-00003#1", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "This module only exists as a separate module to so the kubernetes extension can share code with the kubernetes-client extension", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-kubernetes-client-spi", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client-spi@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-kubernetes-client-spi:2.13.9.Final-redhat-00003#1", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Extensions that use the Kubernetes client, use this module to configure the client instance", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-kubernetes-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-kubernetes-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "knative-annotations", + "purl": "pkg:maven/io.dekorate/knative-annotations@2.11.3.redhat-00001?classifier=noapt&type=jar", + "type": "library", + "group": "io.dekorate", + "bom-ref": "pkg:maven/io.dekorate/knative-annotations@2.11.3.redhat-00001?classifier=noapt&type=jar", + "version": "2.11.3.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "2a157f03f136f720e39864a28d6971d09a977f3a", + "url": "https://code.engineering.redhat.com/gerrit/dekorateio/dekorate.git#2.11.3.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "A collection of annotations and processors for Kubernetes", + "externalReferences": [ + { + "url": "https://dekorate.io/annotations/knative-annotations", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/dekorateio/dekorate.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUXIAZKQ3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.3.9:1.0.5", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "knative-client", + "purl": "pkg:maven/io.fabric8/knative-client@5.12.4.redhat-00002?type=jar", + "type": "library", + "group": "io.fabric8", + "bom-ref": "pkg:maven/io.fabric8/knative-client@5.12.4.redhat-00002?type=jar", + "version": "5.12.4.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b41813009269dce0658cb78190586d0c0fa0a10e", + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git#5.12.4.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "url": "http://fabric8.io/kubernetes-extensions/knative-extension-pom/knative-client/", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU72KMSAO4QAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "knative-model", + "purl": "pkg:maven/io.fabric8/knative-model@5.12.4.redhat-00002?type=jar", + "type": "library", + "group": "io.fabric8", + "bom-ref": "pkg:maven/io.fabric8/knative-model@5.12.4.redhat-00002?type=jar", + "version": "5.12.4.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b41813009269dce0658cb78190586d0c0fa0a10e", + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git#5.12.4.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Java client for Kubernetes and OpenShift", + "externalReferences": [ + { + "url": "http://fabric8.io/kubernetes-extensions/knative-extension-pom/knative-model/", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/productization/github.com/kubernetes-client.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU72KMSAO4QAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "kubernetes-annotations", + "purl": "pkg:maven/io.dekorate/kubernetes-annotations@2.11.3.redhat-00001?classifier=noapt&type=jar", + "type": "library", + "group": "io.dekorate", + "bom-ref": "pkg:maven/io.dekorate/kubernetes-annotations@2.11.3.redhat-00001?classifier=noapt&type=jar", + "version": "2.11.3.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "2a157f03f136f720e39864a28d6971d09a977f3a", + "url": "https://code.engineering.redhat.com/gerrit/dekorateio/dekorate.git#2.11.3.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "A collection of annotations and processors for Kubernetes", + "externalReferences": [ + { + "url": "https://dekorate.io/annotations/kubernetes-annotations", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/dekorateio/dekorate.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUXIAZKQ3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.3.9:1.0.5", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "docker-annotations", + "purl": "pkg:maven/io.dekorate/docker-annotations@2.11.3.redhat-00001?type=jar", + "type": "library", + "group": "io.dekorate", + "bom-ref": "pkg:maven/io.dekorate/docker-annotations@2.11.3.redhat-00001?type=jar", + "version": "2.11.3.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "2a157f03f136f720e39864a28d6971d09a977f3a", + "url": "https://code.engineering.redhat.com/gerrit/dekorateio/dekorate.git#2.11.3.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "A collection of annotations and processors for Kubernetes", + "externalReferences": [ + { + "url": "https://dekorate.io/annotations/docker-annotations", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/dekorateio/dekorate.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUXIAZKQ3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.3.9:1.0.5", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-kubernetes-service-binding", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-service-binding@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-kubernetes-service-binding@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Read runtime configuration based on the Kubernetes Service Binding Specification", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-kubernetes-service-binding-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-service-binding-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-kubernetes-service-binding-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "servicebinding-annotations", + "purl": "pkg:maven/io.dekorate/servicebinding-annotations@2.11.3.redhat-00001?classifier=noapt&type=jar", + "type": "library", + "group": "io.dekorate", + "bom-ref": "pkg:maven/io.dekorate/servicebinding-annotations@2.11.3.redhat-00001?classifier=noapt&type=jar", + "version": "2.11.3.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "2a157f03f136f720e39864a28d6971d09a977f3a", + "url": "https://code.engineering.redhat.com/gerrit/dekorateio/dekorate.git#2.11.3.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "A collection of annotations and processors for Kubernetes", + "externalReferences": [ + { + "url": "https://dekorate.io/annotations/servicebinding-annotations", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/dekorateio/dekorate.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUXIAZKQ3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.3.9:1.0.5", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "dekorate-core", + "purl": "pkg:maven/io.dekorate/dekorate-core@2.11.3.redhat-00001?type=jar", + "type": "library", + "group": "io.dekorate", + "bom-ref": "i.d:dekorate-core:2.11.3.redhat-00001#1", + "version": "2.11.3.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "2a157f03f136f720e39864a28d6971d09a977f3a", + "url": "https://code.engineering.redhat.com/gerrit/dekorateio/dekorate.git#2.11.3.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "A collection of annotations and processors for Kubernetes", + "externalReferences": [ + { + "url": "https://dekorate.io/dekorate-core", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/dekorateio/dekorate.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUXIAZKQ3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.3.9:1.0.5", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-logging-json", + "purl": "pkg:maven/io.quarkus/quarkus-logging-json@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-logging-json@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Add JSON formatter for console logging", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-logging-json-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-logging-json-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-logging-json-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-mailer", + "purl": "pkg:maven/io.quarkus/quarkus-mailer@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-mailer@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Send emails", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-qute", + "purl": "pkg:maven/io.quarkus/quarkus-qute@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-qute@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Offer templating support for web, email, etc in a build time, type-safe way", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-mutiny-vertx-mail-client", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mail-client@2.27.0.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye.reactive", + "bom-ref": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mail-client@2.27.0.redhat-00001?type=jar", + "version": "2.27.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "109a2da366d4e52568be8ecbeafd802e9d1091fa", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-mutiny-vertx-bindings.git#2.27.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "SmallRye Build Parent POM", + "externalReferences": [ + { + "url": "https://smallrye.io/smallrye-mutiny-vertx-bindings/vertx-mutiny-clients/smallrye-mutiny-vertx-mail-client", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-mutiny-vertx-bindings/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-mutiny-vertx-bindings.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU3MITW53VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "vertx-mail-client", + "purl": "pkg:maven/io.vertx/vertx-mail-client@4.3.4.redhat-00008?type=jar", + "type": "library", + "group": "io.vertx", + "bom-ref": "pkg:maven/io.vertx/vertx-mail-client@4.3.4.redhat-00008?type=jar", + "version": "4.3.4.redhat-00008", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + }, + { + "license": { + "id": "EPL-1.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "903198b6917e14ccd36533941c07ffb54ae61764", + "url": "https://code.engineering.redhat.com/gerrit/vert-x3/vertx-mail-client.git#vertx-4.3.4.GA-1" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Sonatype helps open source projects to set up Maven repositories on https://oss.sonatype.org/", + "externalReferences": [ + { + "url": "http://nexus.sonatype.org/oss-repository-hosting.html/vertx-parent/vertx-ext/vertx-ext-parent/vertx-mail-client", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/vert-x3/vertx-mail-client.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AZB7PSY53RQBQ", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-mailer-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-mailer-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-mailer-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-qute-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-qute-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-qute-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "qute-generator", + "purl": "pkg:maven/io.quarkus.qute/qute-generator@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus.qute", + "bom-ref": "pkg:maven/io.quarkus.qute/qute-generator@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Provides, via submodules, a base configuration for JBoss project builds, as well as a derived configuration supporting multi-release JARs", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.redhat.com/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-maven-plugin", + "purl": "pkg:maven/io.quarkus/quarkus-maven-plugin@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-maven-plugin@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-devtools-common", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-common@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-devtools-common@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Provides, via submodules, a base configuration for JBoss project builds, as well as a derived configuration supporting multi-release JARs", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.redhat.com/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "maven-model-helper", + "purl": "pkg:maven/io.fabric8/maven-model-helper@20?type=jar", + "type": "library", + "group": "io.fabric8", + "bom-ref": "pkg:maven/io.fabric8/maven-model-helper@20?type=jar", + "version": "20", + "licenses": [ + { + "license": { + "url": "http://repository.jboss.org/licenses/cc0-1.0.txt", + "name": "Public Domain" + } + } + ], + "publisher": "JBoss by Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Provides, via submodules, a base configuration for JBoss project builds, as well as a derived configuration supporting multi-release JARs", + "externalReferences": [ + { + "url": "http://www.jboss.org/maven-model-helper", + "type": "website" + }, + { + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://issues.redhat.com/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://github.com/fabric8-launcher/maven-model-helper", + "type": "vcs" + } + ] + }, + { + "name": "jdom", + "purl": "pkg:maven/org.jdom/jdom@1.1.3?type=jar", + "type": "library", + "group": "org.jdom", + "bom-ref": "pkg:maven/org.jdom/jdom@1.1.3?type=jar", + "version": "1.1.3", + "licenses": [ + { + "license": { + "url": "https://raw.github.com/hunterhacker/jdom/master/LICENSE.txt", + "name": "Similar to Apache License but with the acknowledgment clause removed" + } + } + ], + "publisher": "JDOM", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "A complete, Java-based solution for accessing, manipulating, and outputting XML data", + "externalReferences": [ + { + "url": "http://www.jdom.org", + "type": "website" + }, + { + "url": "http://jdom.markmail.org/", + "type": "mailing-list" + }, + { + "url": "https://github.com/hunterhacker/jdom", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-devtools-base-codestarts", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-base-codestarts@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-devtools-base-codestarts@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Provides, via submodules, a base configuration for JBoss project builds, as well as a derived configuration supporting multi-release JARs", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.redhat.com/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-devtools-codestarts", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-codestarts@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-devtools-codestarts@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Provides, via submodules, a base configuration for JBoss project builds, as well as a derived configuration supporting multi-release JARs", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.redhat.com/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-devtools-message-writer", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-message-writer@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-devtools-message-writer@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Provides, via submodules, a base configuration for JBoss project builds, as well as a derived configuration supporting multi-release JARs", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.redhat.com/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-common-os", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-os@1.13.1.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye.common", + "bom-ref": "pkg:maven/io.smallrye.common/smallrye-common-os@1.13.1.redhat-00001?type=jar", + "version": "1.13.1.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "8a344873dd02ed0f6205dd90eab71ddfc5ef7c6d", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-common.git#1.13.1.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Operating system utilities", + "externalReferences": [ + { + "url": "http://smallrye.io/smallrye-common-os", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-common/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-common.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/ATTXFTRCLVQAK", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-devtools-registry-client", + "purl": "pkg:maven/io.quarkus/quarkus-devtools-registry-client@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-devtools-registry-client@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Provides, via submodules, a base configuration for JBoss project builds, as well as a derived configuration supporting multi-release JARs", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.redhat.com/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-common-version", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-version@1.13.1.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye.common", + "bom-ref": "pkg:maven/io.smallrye.common/smallrye-common-version@1.13.1.redhat-00001?type=jar", + "version": "1.13.1.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "8a344873dd02ed0f6205dd90eab71ddfc5ef7c6d", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-common.git#1.13.1.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Common utilities for SmallRye", + "externalReferences": [ + { + "url": "http://smallrye.io/smallrye-common-version", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-common/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-common.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/ATTXFTRCLVQAK", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-project-core-extension-codestarts", + "purl": "pkg:maven/io.quarkus/quarkus-project-core-extension-codestarts@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-project-core-extension-codestarts@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "freemarker", + "purl": "pkg:maven/org.freemarker/freemarker@2.3.31.redhat-00001?type=jar", + "type": "library", + "group": "org.freemarker", + "bom-ref": "pkg:maven/org.freemarker/freemarker@2.3.31.redhat-00001?type=jar", + "version": "2.3.31.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "050b8808a0a5d534b9d20829efcf54326d13d272", + "url": "http://code.engineering.redhat.com/gerrit/freemarker.git#2.3.31.redhat-00001-050b8808" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "FreeMarker is a \"template engine\"; a generic tool to generate text output based on templates.", + "externalReferences": [ + { + "url": "http://freemarker.apache.org/", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "http://code.engineering.redhat.com/gerrit/freemarker.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/94641", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.3.9-gradle4.10:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "mojo-executor", + "purl": "pkg:maven/org.twdata.maven/mojo-executor@2.3.1.redhat-00001?type=jar", + "type": "library", + "group": "org.twdata.maven", + "bom-ref": "pkg:maven/org.twdata.maven/mojo-executor@2.3.1.redhat-00001?type=jar", + "version": "2.3.1.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "5ac7fe7de92fe5848ff8e216974b5ece9a36743b", + "url": "https://code.engineering.redhat.com/gerrit/mojo-executor/mojo-executor.git#2.3.1.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The Mojo Executor provides a way to to execute other Mojos (plugins) within a Maven plugin, allowing you to easily create Maven plugins that are composed of other plugins.", + "externalReferences": [ + { + "url": "http://timmoore.github.com/mojo-executor/mojo-executor/", + "type": "website" + }, + { + "url": "https://github.com/TimMoore/mojo-executor/issues", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/mojo-executor/mojo-executor.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AZZ7YMABS7AAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.5.4:1.0.5", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-micrometer", + "purl": "pkg:maven/io.quarkus/quarkus-micrometer@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-micrometer@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Instrument the runtime and your application with dimensional metrics using Micrometer.", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "micrometer-core", + "purl": "pkg:maven/io.micrometer/micrometer-core@1.9.4.redhat-00001?type=jar", + "type": "library", + "group": "io.micrometer", + "bom-ref": "i.m:micrometer-core:1.9.4.redhat-00001#1", + "version": "1.9.4.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "d449313630f99fb30a0d771078a3da645321391f", + "url": "https://code.engineering.redhat.com/gerrit/micrometer-metrics/micrometer.git#1.9.4.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Core module of Micrometer containing instrumentation API and implementation", + "externalReferences": [ + { + "url": "https://code.engineering.redhat.com/gerrit/micrometer-metrics/micrometer", + "type": "website" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/micrometer-metrics/micrometer.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUFMB5AJTVQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.14-9-mvn3.8.4-gradle7.3.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "LatencyUtils", + "purl": "pkg:maven/org.latencyutils/LatencyUtils@2.0.3.redhat-00001?type=jar", + "type": "library", + "group": "org.latencyutils", + "bom-ref": "pkg:maven/org.latencyutils/LatencyUtils@2.0.3.redhat-00001?type=jar", + "version": "2.0.3.redhat-00001", + "licenses": [ + { + "license": { + "id": "CC0-1.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b9af1e126f78f8ab01968c7d4eb5510e602b5fa1", + "url": "http://code.engineering.redhat.com/gerrit/LatencyUtils/LatencyUtils.git#2.0.3.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "LatencyUtils is a package that provides latency recording and reporting utilities.", + "externalReferences": [ + { + "url": "http://latencyutils.github.io/LatencyUtils/", + "type": "website" + }, + { + "url": "https://github.com/LatencyUtils/LatencyUtils/issues", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "http://code.engineering.redhat.com/gerrit/LatencyUtils/LatencyUtils.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/20211", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.3.9:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-micrometer-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-micrometer-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-micrometer-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-undertow-spi", + "purl": "pkg:maven/io.quarkus/quarkus-undertow-spi@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-undertow-spi@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-http-servlet", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-servlet@4.1.9.redhat-00001?type=jar", + "type": "library", + "group": "io.quarkus.http", + "bom-ref": "pkg:maven/io.quarkus.http/quarkus-http-servlet@4.1.9.redhat-00001?type=jar", + "version": "4.1.9.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b726ee23ff8d684daa9b61074ce5e64d2af8cff9", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus-http.git#4.1.9.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Quarkus HTTP", + "externalReferences": [ + { + "url": "http://www.jboss.org/quarkus-http-parent/quarkus-http-servlet", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus-http.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/ARCTT7S6FCIAC", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-http-core", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-core@4.1.9.redhat-00001?type=jar", + "type": "library", + "group": "io.quarkus.http", + "bom-ref": "pkg:maven/io.quarkus.http/quarkus-http-core@4.1.9.redhat-00001?type=jar", + "version": "4.1.9.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b726ee23ff8d684daa9b61074ce5e64d2af8cff9", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus-http.git#4.1.9.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Quarkus HTTP", + "externalReferences": [ + { + "url": "http://www.jboss.org/quarkus-http-parent/quarkus-http-core", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus-http.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/ARCTT7S6FCIAC", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-http-http-core", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-http-core@4.1.9.redhat-00001?type=jar", + "type": "library", + "group": "io.quarkus.http", + "bom-ref": "pkg:maven/io.quarkus.http/quarkus-http-http-core@4.1.9.redhat-00001?type=jar", + "version": "4.1.9.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b726ee23ff8d684daa9b61074ce5e64d2af8cff9", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus-http.git#4.1.9.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Quarkus HTTP", + "externalReferences": [ + { + "url": "http://www.jboss.org/quarkus-http-parent/quarkus-http-http-core", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus-http.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/ARCTT7S6FCIAC", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "jakarta.servlet-api", + "purl": "pkg:maven/jakarta.servlet/jakarta.servlet-api@4.0.3.redhat-00006?type=jar", + "type": "library", + "group": "jakarta.servlet", + "bom-ref": "pkg:maven/jakarta.servlet/jakarta.servlet-api@4.0.3.redhat-00006?type=jar", + "version": "4.0.3.redhat-00006", + "licenses": [ + { + "license": { + "id": "EPL-2.0" + } + }, + { + "license": { + "id": "GPL-2.0-with-classpath-exception" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "f92934ef8529f5d40e659f5c0f02764b5e04f347", + "url": "https://code.engineering.redhat.com/gerrit/eclipse-ee4j/servlet-api.git#4.0.3.redhat-00006" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Eclipse Enterprise for Java (EE4J) is an open source initiative to create standard APIs, implementations of those APIs, and technology compatibility kits for Java runtimes that enable development, deployment, and management of server-side and cloud-native applications.", + "externalReferences": [ + { + "url": "https://projects.eclipse.org/projects/ee4j.servlet", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/eclipse-ee4j/servlet-api/issues", + "type": "issue-tracker" + }, + { + "url": "https://dev.eclipse.org/mhonarc/lists/servlet-dev", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/eclipse-ee4j/servlet-api.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AYQU55M3TRQAG", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.6", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "jboss-metadata-web", + "purl": "pkg:maven/org.jboss.metadata/jboss-metadata-web@15.1.0.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.jboss.metadata", + "bom-ref": "pkg:maven/org.jboss.metadata/jboss-metadata-web@15.1.0.Final-redhat-00001?type=jar", + "version": "15.1.0.Final-redhat-00001", + "licenses": [ + { + "license": { + "url": "http://repository.jboss.org/licenses/cc0-1.0.txt", + "name": "Public Domain" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "524228387a261193c61a9a742b3bebbf534b51fb", + "url": "https://code.engineering.redhat.com/gerrit/jboss/metadata.git#15.1.0.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "JBoss Application Server: Metadata Aggregator", + "externalReferences": [ + { + "url": "http://www.jboss.org/jboss-as-parent-metadata/jboss-metadata-web", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/jboss/metadata.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUH7ADHQLVQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.5", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "jboss-metadata-common", + "purl": "pkg:maven/org.jboss.metadata/jboss-metadata-common@15.1.0.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.jboss.metadata", + "bom-ref": "pkg:maven/org.jboss.metadata/jboss-metadata-common@15.1.0.Final-redhat-00001?type=jar", + "version": "15.1.0.Final-redhat-00001", + "licenses": [ + { + "license": { + "url": "http://repository.jboss.org/licenses/cc0-1.0.txt", + "name": "Public Domain" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "524228387a261193c61a9a742b3bebbf534b51fb", + "url": "https://code.engineering.redhat.com/gerrit/jboss/metadata.git#15.1.0.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "JBoss Application Server: Metadata Aggregator", + "externalReferences": [ + { + "url": "http://www.jboss.org/jboss-as-parent-metadata/jboss-metadata-common", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/jboss/metadata.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUH7ADHQLVQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.5", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-micrometer-registry-prometheus", + "purl": "pkg:maven/io.quarkus/quarkus-micrometer-registry-prometheus@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-micrometer-registry-prometheus@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Enable Prometheus support for Micrometer", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "micrometer-registry-prometheus", + "purl": "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.9.4.redhat-00001?type=jar", + "type": "library", + "group": "io.micrometer", + "bom-ref": "i.m:micrometer-registry-prometheus:1.9.4.redhat-00001#1", + "version": "1.9.4.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "d449313630f99fb30a0d771078a3da645321391f", + "url": "https://code.engineering.redhat.com/gerrit/micrometer-metrics/micrometer.git#1.9.4.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Application monitoring instrumentation facade", + "externalReferences": [ + { + "url": "https://code.engineering.redhat.com/gerrit/micrometer-metrics/micrometer", + "type": "website" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/micrometer-metrics/micrometer.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUFMB5AJTVQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.14-9-mvn3.8.4-gradle7.3.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-micrometer-registry-prometheus-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-micrometer-registry-prometheus-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-micrometer-registry-prometheus-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-mongodb-client", + "purl": "pkg:maven/io.quarkus/quarkus-mongodb-client@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-mongodb-client@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Connect to MongoDB in either imperative or reactive style", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-mutiny-reactive-streams-operators", + "purl": "pkg:maven/io.quarkus/quarkus-mutiny-reactive-streams-operators@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-mutiny-reactive-streams-operators@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Operators to write Reactive Streams based applications based on Mutiny", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "mutiny-reactive-streams-operators", + "purl": "pkg:maven/io.smallrye.reactive/mutiny-reactive-streams-operators@1.7.0.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye.reactive", + "bom-ref": "pkg:maven/io.smallrye.reactive/mutiny-reactive-streams-operators@1.7.0.redhat-00001?type=jar", + "version": "1.7.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "38decebceeda9b5bb50e3997936afbcba9c088d8", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-mutiny.git#1.7.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Intuitive Event-Driven Reactive Programming Library for Java", + "externalReferences": [ + { + "url": "https://smallrye.io/smallrye-mutiny/mutiny-reactive-streams-operators", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-mutiny/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-mutiny.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUOMUWXT3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.5", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "microprofile-reactive-streams-operators-api", + "purl": "pkg:maven/org.eclipse.microprofile.reactive-streams-operators/microprofile-reactive-streams-operators-api@1.0.1.redhat-00001?type=jar", + "type": "library", + "group": "org.eclipse.microprofile.reactive-streams-operators", + "bom-ref": "pkg:maven/org.eclipse.microprofile.reactive-streams-operators/microprofile-reactive-streams-operators-api@1.0.1.redhat-00001?type=jar", + "version": "1.0.1.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "e4372378f4ed1020c1b7159c4f1286e312acabae", + "url": "http://code.engineering.redhat.com/gerrit/eclipse/microprofile-reactive-streams-operators.git#1.0.1.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Eclipse MicroProfile Reactive Streams Operators :: API", + "externalReferences": [ + { + "url": "http://microprofile.io/microprofile-reactive-streams-operators-api", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/eclipse/microprofile-reactive/issues", + "type": "issue-tracker" + }, + { + "url": "http://code.engineering.redhat.com/gerrit/eclipse/microprofile-reactive-streams-operators.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/60702", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.3.9:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "microprofile-reactive-streams-operators-core", + "purl": "pkg:maven/org.eclipse.microprofile.reactive-streams-operators/microprofile-reactive-streams-operators-core@1.0.1.redhat-00001?type=jar", + "type": "library", + "group": "org.eclipse.microprofile.reactive-streams-operators", + "bom-ref": "pkg:maven/org.eclipse.microprofile.reactive-streams-operators/microprofile-reactive-streams-operators-core@1.0.1.redhat-00001?type=jar", + "version": "1.0.1.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "e4372378f4ed1020c1b7159c4f1286e312acabae", + "url": "http://code.engineering.redhat.com/gerrit/eclipse/microprofile-reactive-streams-operators.git#1.0.1.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "MicroProfile Reactive Streams Operators :: Core Implementation", + "externalReferences": [ + { + "url": "http://microprofile.io/microprofile-reactive-streams-operators-core", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/eclipse/microprofile-reactive/issues", + "type": "issue-tracker" + }, + { + "url": "http://code.engineering.redhat.com/gerrit/eclipse/microprofile-reactive-streams-operators.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/60702", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.3.9:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "mongodb-crypt", + "purl": "pkg:maven/org.mongodb/mongodb-crypt@1.5.2?type=jar", + "type": "library", + "group": "org.mongodb", + "bom-ref": "pkg:maven/org.mongodb/mongodb-crypt@1.5.2?type=jar", + "version": "1.5.2", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "central", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "MongoDB client-side crypto support", + "externalReferences": [ + { + "url": "http://www.mongodb.org", + "type": "website" + }, + { + "url": "https://github.com/mongodb/libmongocrypt", + "type": "vcs" + } + ] + }, + { + "name": "bson", + "purl": "pkg:maven/org.mongodb/bson@4.7.2?type=jar", + "type": "library", + "group": "org.mongodb", + "bom-ref": "pkg:maven/org.mongodb/bson@4.7.2?type=jar", + "version": "4.7.2", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "central", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The BSON library", + "externalReferences": [ + { + "url": "https://bsonspec.org", + "type": "website" + }, + { + "url": "https://github.com/mongodb/mongo-java-driver", + "type": "vcs" + } + ] + }, + { + "name": "mongodb-driver-reactivestreams", + "purl": "pkg:maven/org.mongodb/mongodb-driver-reactivestreams@4.7.2?type=jar", + "type": "library", + "group": "org.mongodb", + "bom-ref": "pkg:maven/org.mongodb/mongodb-driver-reactivestreams@4.7.2?type=jar", + "version": "4.7.2", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "central", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "A Reactive Streams implementation of the MongoDB Java driver", + "externalReferences": [ + { + "url": "https://www.mongodb.com/", + "type": "website" + }, + { + "url": "https://github.com/mongodb/mongo-java-driver", + "type": "vcs" + } + ] + }, + { + "name": "reactor-core", + "purl": "pkg:maven/io.projectreactor/reactor-core@3.2.22.RELEASE?type=jar", + "type": "library", + "group": "io.projectreactor", + "bom-ref": "pkg:maven/io.projectreactor/reactor-core@3.2.22.RELEASE?type=jar", + "version": "3.2.22.RELEASE", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "reactor", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Non-Blocking Reactive Foundation for the JVM", + "externalReferences": [ + { + "url": "https://github.com/reactor/reactor-core", + "type": "website" + }, + { + "url": "https://github.com/reactor/reactor-core/issues", + "type": "issue-tracker" + }, + { + "url": "https://github.com/reactor/reactor-core", + "type": "vcs" + } + ] + }, + { + "name": "mongodb-driver-core", + "purl": "pkg:maven/org.mongodb/mongodb-driver-core@4.7.2?type=jar", + "type": "library", + "group": "org.mongodb", + "bom-ref": "pkg:maven/org.mongodb/mongodb-driver-core@4.7.2?type=jar", + "version": "4.7.2", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "central", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The Java operations layer for the MongoDB Java Driver. Third parties can wrap this layer to provide custom higher-level APIs", + "externalReferences": [ + { + "url": "https://www.mongodb.com/", + "type": "website" + }, + { + "url": "https://github.com/mongodb/mongo-java-driver", + "type": "vcs" + } + ] + }, + { + "name": "bson-record-codec", + "purl": "pkg:maven/org.mongodb/bson-record-codec@4.7.2?type=jar", + "type": "library", + "group": "org.mongodb", + "bom-ref": "pkg:maven/org.mongodb/bson-record-codec@4.7.2?type=jar", + "version": "4.7.2", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "central", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The BSON Codec for Java records", + "externalReferences": [ + { + "url": "https://www.mongodb.com/", + "type": "website" + }, + { + "url": "https://github.com/mongodb/mongo-java-driver", + "type": "vcs" + } + ] + }, + { + "name": "mongodb-driver-sync", + "purl": "pkg:maven/org.mongodb/mongodb-driver-sync@4.7.2?type=jar", + "type": "library", + "group": "org.mongodb", + "bom-ref": "pkg:maven/org.mongodb/mongodb-driver-sync@4.7.2?type=jar", + "version": "4.7.2", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "central", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The MongoDB Synchronous Driver", + "externalReferences": [ + { + "url": "https://www.mongodb.com/", + "type": "website" + }, + { + "url": "https://github.com/mongodb/mongo-java-driver", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-mongodb-client-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-mongodb-client-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-mongodb-client-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-mutiny-reactive-streams-operators-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-mutiny-reactive-streams-operators-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-mutiny-reactive-streams-operators-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "mongodb", + "purl": "pkg:maven/org.testcontainers/mongodb@1.17.3?type=jar", + "type": "library", + "group": "org.testcontainers", + "bom-ref": "pkg:maven/org.testcontainers/mongodb@1.17.3?type=jar", + "version": "1.17.3", + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "publisher": "central", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Isolated container management for Java code testing", + "externalReferences": [ + { + "url": "https://testcontainers.org", + "type": "website" + }, + { + "url": "https://github.com/testcontainers/testcontainers-java/issues", + "type": "issue-tracker" + }, + { + "url": "https://github.com/testcontainers/testcontainers-java", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-narayana-jta", + "purl": "pkg:maven/io.quarkus/quarkus-narayana-jta@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-narayana-jta:2.13.9.Final-redhat-00003#2", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Offer JTA transaction support (included in Hibernate ORM)", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-context-propagation-jta", + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation-jta@1.2.2.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye", + "bom-ref": "i.s:smallrye-context-propagation-jta:1.2.2.redhat-00001#1", + "version": "1.2.2.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "17ca886fb01b390ab8cf48c1581f78ded2195aea", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-context-propagation.git#1.2.2.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "A pluggable library for context propagation in reactive libraries", + "externalReferences": [ + { + "url": "https://github.com/smallrye/smallrye-context-propagation/smallrye-context-propagation-jta", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-context-propagation/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-context-propagation.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AQB23TTH4UQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-adoptopenjdk12-mvn3.6.0-gradle5.4.1:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "javax.transaction-api", + "purl": "pkg:maven/javax.transaction/javax.transaction-api@1.3?type=jar", + "type": "library", + "group": "javax.transaction", + "bom-ref": "pkg:maven/javax.transaction/javax.transaction-api@1.3?type=jar", + "version": "1.3", + "licenses": [ + { + "expression": "(CDDL-1.0 OR GPL-2.0-with-classpath-exception)" + } + ], + "publisher": "GlassFish Community", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Project GlassFish Java Transaction API", + "externalReferences": [ + { + "url": "http://jta-spec.java.net", + "type": "website" + }, + { + "url": "https://maven.java.net/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://github.com/javaee/javax.transaction/issues", + "type": "issue-tracker" + }, + { + "url": "javaee-spec@javaee.groups.io", + "type": "mailing-list" + }, + { + "url": "https://github.com/javaee/javax.transaction", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-oidc-client", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-oidc-client@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Get and refresh access tokens from OpenID Connect providers", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-oidc-common", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-common@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-oidc-common:2.13.9.Final-redhat-00003#1", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "OpenID Connect Common - Runtime", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-smallrye-jwt-build", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-jwt-build@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-smallrye-jwt-build:2.13.9.Final-redhat-00003#1", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Create JSON Web Token with SmallRye JWT Build API", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-jwt-build", + "purl": "pkg:maven/io.smallrye/smallrye-jwt-build@3.5.4.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye", + "bom-ref": "i.s:smallrye-jwt-build:3.5.4.redhat-00001#1", + "version": "3.5.4.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "ca13085d19f6aea33f47ba99e279f064428e8e33", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-jwt.git#3.5.4.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "SmallRye Parent POM", + "externalReferences": [ + { + "url": "http://smallrye.io/smallrye-jwt-implementation-parent/smallrye-jwt-build", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-jwt/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-jwt.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU3M6QFFTVQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.6", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-jwt-common", + "purl": "pkg:maven/io.smallrye/smallrye-jwt-common@3.5.4.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye", + "bom-ref": "i.s:smallrye-jwt-common:3.5.4.redhat-00001#1", + "version": "3.5.4.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "ca13085d19f6aea33f47ba99e279f064428e8e33", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-jwt.git#3.5.4.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "SmallRye Parent POM", + "externalReferences": [ + { + "url": "http://smallrye.io/smallrye-jwt-implementation-parent/smallrye-jwt-common", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-jwt/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-jwt.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU3M6QFFTVQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.6", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-oidc-client-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-oidc-client-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-oidc-common-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-common-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-oidc-common-deployment:2.13.9.Final-redhat-00003#1", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-smallrye-jwt-build-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-jwt-build-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-smallrye-jwt-build-deployment:2.13.9.Final-redhat-00003#1", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-oidc-client-filter", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-filter@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-oidc-client-filter@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Use JAX-RS Client filter to get and refresh access tokens with OpenId Connect Client and send them as HTTP Authorization Bearer tokens", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-rest-client", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-rest-client@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Call REST services", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-rest-client-config", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-config@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-rest-client-config@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Shared configuration for REST client extensions", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "microprofile-rest-client-api", + "purl": "pkg:maven/org.eclipse.microprofile.rest.client/microprofile-rest-client-api@2.0.0.redhat-00003?type=jar", + "type": "library", + "group": "org.eclipse.microprofile.rest.client", + "bom-ref": "pkg:maven/org.eclipse.microprofile.rest.client/microprofile-rest-client-api@2.0.0.redhat-00003?type=jar", + "version": "2.0.0.redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "64cd58906065cb41ae4e16548e16efc7315b86a1", + "url": "https://code.engineering.redhat.com/gerrit/eclipse/microprofile-rest-client.git#2.0.0.redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Typesafe Rest Client APIs for MicroProfile :: API", + "externalReferences": [ + { + "url": "http://microprofile.io/microprofile-rest-client-api", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/eclipse/microprofile-rest-client/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/eclipse/microprofile-rest-client.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AQF3JTX46HAAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.3", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-resteasy-common", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-common@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-resteasy-common@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Components common to the RESTEasy server and the REST Client", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "resteasy-core", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-core@4.7.9.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.jboss.resteasy", + "bom-ref": "pkg:maven/org.jboss.resteasy/resteasy-core@4.7.9.Final-redhat-00001?type=jar", + "version": "4.7.9.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "77ccd9259e4f100da265462e32978bb7f31d0f70", + "url": "https://code.engineering.redhat.com/gerrit/resteasy.git#4.7.9.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "", + "externalReferences": [ + { + "url": "https://jboss.org/resteasy/resteasy-core", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.redhat.com/browse/RESTEASY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/resteasy.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AZGJZ46CUDAAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "asyncutil", + "purl": "pkg:maven/com.ibm.async/asyncutil@0.1.0.redhat-00010?type=jar", + "type": "library", + "group": "com.ibm.async", + "bom-ref": "pkg:maven/com.ibm.async/asyncutil@0.1.0.redhat-00010?type=jar", + "version": "0.1.0.redhat-00010", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "793cfdb56abc337b3a40d67f35ed9cee372e23a0", + "url": "http://code.engineering.redhat.com/gerrit/IBM/java-async-util.git#0.1.0.redhat-00010" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Utilities for working with CompletionStages", + "externalReferences": [ + { + "url": "http://github.com/ibm/java-async-util", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "http://code.engineering.redhat.com/gerrit/IBM/java-async-util.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AMUOJZ7SKPQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3-gradle7.2:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "resteasy-core-spi", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-core-spi@4.7.9.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.jboss.resteasy", + "bom-ref": "pkg:maven/org.jboss.resteasy/resteasy-core-spi@4.7.9.Final-redhat-00001?type=jar", + "version": "4.7.9.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "77ccd9259e4f100da265462e32978bb7f31d0f70", + "url": "https://code.engineering.redhat.com/gerrit/resteasy.git#4.7.9.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "", + "externalReferences": [ + { + "url": "https://jboss.org/resteasy/resteasy-core-spi", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.redhat.com/browse/RESTEASY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/resteasy.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AZGJZ46CUDAAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "httpasyncclient", + "purl": "pkg:maven/org.apache.httpcomponents/httpasyncclient@4.1.5.redhat-00004?type=jar", + "type": "library", + "group": "org.apache.httpcomponents", + "bom-ref": "o.a.h:httpasyncclient:4.1.5.redhat-00004#1", + "version": "4.1.5.redhat-00004", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b40ce74594109fe1ceacbae6a6f6a90eccbf02e8", + "url": "https://code.engineering.redhat.com/gerrit/apache/httpasyncclient.git#4.1.5.redhat-00004" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Apache HttpComponents AsyncClient", + "externalReferences": [ + { + "url": "http://hc.apache.org/httpcomponents-asyncclient", + "type": "website" + }, + { + "url": "http://issues.apache.org/jira/browse/HTTPASYNC", + "type": "issue-tracker" + }, + { + "url": "http://mail-archives.apache.org/mod_mbox/hc-httpclient-users/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/apache/httpasyncclient.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A2ZTWKLZKEQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.3.9-gcc-cpp-make:1.0.6", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "httpcore-nio", + "purl": "pkg:maven/org.apache.httpcomponents/httpcore-nio@4.4.15.redhat-00008?type=jar", + "type": "library", + "group": "org.apache.httpcomponents", + "bom-ref": "o.a.h:httpcore-nio:4.4.15.redhat-00008#1", + "version": "4.4.15.redhat-00008", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "37d01bc0da6a4539fc501865cc6e34bcd9121175", + "url": "https://code.engineering.redhat.com/gerrit/apache/httpcore.git#4.4.15.redhat-00008" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Apache HttpComponents Core (non-blocking I/O)", + "externalReferences": [ + { + "url": "http://hc.apache.org/httpcomponents-core-ga", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "http://issues.apache.org/jira/browse/HTTPCORE", + "type": "issue-tracker" + }, + { + "url": "http://mail-archives.apache.org/mod_mbox/hc-httpclient-users/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/apache/httpcore.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A3OFCG7J2MYDA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.3.9:1.0.5", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "resteasy-client-microprofile", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client-microprofile@4.7.9.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.jboss.resteasy", + "bom-ref": "pkg:maven/org.jboss.resteasy/resteasy-client-microprofile@4.7.9.Final-redhat-00001?type=jar", + "version": "4.7.9.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "77ccd9259e4f100da265462e32978bb7f31d0f70", + "url": "https://code.engineering.redhat.com/gerrit/resteasy.git#4.7.9.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Resteasy", + "externalReferences": [ + { + "url": "https://jboss.org/resteasy/resteasy-client-microprofile", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.redhat.com/browse/RESTEASY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/resteasy.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AZGJZ46CUDAAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "resteasy-client-microprofile-base", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client-microprofile-base@4.7.9.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.jboss.resteasy", + "bom-ref": "pkg:maven/org.jboss.resteasy/resteasy-client-microprofile-base@4.7.9.Final-redhat-00001?type=jar", + "version": "4.7.9.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "77ccd9259e4f100da265462e32978bb7f31d0f70", + "url": "https://code.engineering.redhat.com/gerrit/resteasy.git#4.7.9.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Resteasy", + "externalReferences": [ + { + "url": "https://jboss.org/resteasy/resteasy-client-microprofile-base", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.redhat.com/browse/RESTEASY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/resteasy.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AZGJZ46CUDAAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "resteasy-cdi", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-cdi@4.7.9.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.jboss.resteasy", + "bom-ref": "pkg:maven/org.jboss.resteasy/resteasy-cdi@4.7.9.Final-redhat-00001?type=jar", + "version": "4.7.9.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "77ccd9259e4f100da265462e32978bb7f31d0f70", + "url": "https://code.engineering.redhat.com/gerrit/resteasy.git#4.7.9.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "", + "externalReferences": [ + { + "url": "https://jboss.org/resteasy/resteasy-cdi", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.redhat.com/browse/RESTEASY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/resteasy.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AZGJZ46CUDAAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "resteasy-client", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client@4.7.9.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.jboss.resteasy", + "bom-ref": "pkg:maven/org.jboss.resteasy/resteasy-client@4.7.9.Final-redhat-00001?type=jar", + "version": "4.7.9.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "77ccd9259e4f100da265462e32978bb7f31d0f70", + "url": "https://code.engineering.redhat.com/gerrit/resteasy.git#4.7.9.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Resteasy", + "externalReferences": [ + { + "url": "https://jboss.org/resteasy/resteasy-client", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.redhat.com/browse/RESTEASY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/resteasy.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AZGJZ46CUDAAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "resteasy-client-api", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client-api@4.7.9.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.jboss.resteasy", + "bom-ref": "pkg:maven/org.jboss.resteasy/resteasy-client-api@4.7.9.Final-redhat-00001?type=jar", + "version": "4.7.9.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "77ccd9259e4f100da265462e32978bb7f31d0f70", + "url": "https://code.engineering.redhat.com/gerrit/resteasy.git#4.7.9.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Resteasy", + "externalReferences": [ + { + "url": "https://jboss.org/resteasy/resteasy-client-api", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.redhat.com/browse/RESTEASY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/resteasy.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AZGJZ46CUDAAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-oidc-client-filter-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-filter-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-oidc-client-filter-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-rest-client-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-rest-client-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-rest-client-config-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-config-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-rest-client-config-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-resteasy-common-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-common-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-resteasy-common-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-oidc-client-reactive-filter", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-reactive-filter@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-oidc-client-reactive-filter@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Use Reactive RestClient filter to get and refresh access tokens with OpenId Connect Client and send them as HTTP Authorization Bearer tokens", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-rest-client-reactive", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-reactive@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-rest-client-reactive@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Call REST services reactively", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-oidc-client-reactive-filter-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-reactive-filter-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-oidc-client-reactive-filter-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-rest-client-reactive-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-reactive-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-rest-client-reactive-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-oidc-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-oidc-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-oidc-deployment:2.13.9.Final-redhat-00003#1", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-openshift", + "purl": "pkg:maven/io.quarkus/quarkus-openshift@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-openshift@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Generate OpenShift resources from annotations", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-openshift-client", + "purl": "pkg:maven/io.quarkus/quarkus-openshift-client@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-openshift-client@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Interact with OpenShift and develop OpenShift Operators", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-openshift-client-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-openshift-client-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-openshift-client-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-openshift-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-openshift-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-openshift-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-opentelemetry", + "purl": "pkg:maven/io.quarkus/quarkus-opentelemetry@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-opentelemetry@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Use OpenTelemetry to trace services", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "opentelemetry-extension-annotations", + "purl": "pkg:maven/io.opentelemetry/opentelemetry-extension-annotations@1.17.0.redhat-00001?type=jar", + "type": "library", + "group": "io.opentelemetry", + "bom-ref": "pkg:maven/io.opentelemetry/opentelemetry-extension-annotations@1.17.0.redhat-00001?type=jar", + "version": "1.17.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "66c0571331cb2057d00150e224e74b26327d5290", + "url": "https://code.engineering.redhat.com/gerrit/open-telemetry/opentelemetry-java.git#1.17.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "OpenTelemetry Extension Annotations", + "externalReferences": [ + { + "url": "https://github.com/open-telemetry/opentelemetry-java", + "type": "website" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/open-telemetry/opentelemetry-java.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUFMH7H7LVQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.14-9-mvn3.8.4-gradle7.3.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "opentelemetry-instrumentation-annotations", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-annotations@1.17.0.redhat-00001?type=jar", + "type": "library", + "group": "io.opentelemetry.instrumentation", + "bom-ref": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-annotations@1.17.0.redhat-00001?type=jar", + "version": "1.17.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "82e6f9da3bfeca5638ccf7d49f63ed3f6136f2f1", + "url": "https://code.engineering.redhat.com/gerrit/open-telemetry/opentelemetry-java-instrumentation.git#1.17.0.redhat-00001-82e6f9da" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Instrumentation of Java libraries using OpenTelemetry.", + "externalReferences": [ + { + "url": "https://github.com/open-telemetry/opentelemetry-java-instrumentation", + "type": "website" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/open-telemetry/opentelemetry-java-instrumentation.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUR4LR7DTVQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.14-9-mvn3.8.4-gradle7.4.2:1.0.3", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "opentelemetry-instrumentation-annotations-support", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-annotations-support@1.17.0.redhat-00001?type=jar", + "type": "library", + "group": "io.opentelemetry.instrumentation", + "bom-ref": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-annotations-support@1.17.0.redhat-00001?type=jar", + "version": "1.17.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "82e6f9da3bfeca5638ccf7d49f63ed3f6136f2f1", + "url": "https://code.engineering.redhat.com/gerrit/open-telemetry/opentelemetry-java-instrumentation.git#1.17.0.redhat-00001-82e6f9da" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Instrumentation of Java libraries using OpenTelemetry.", + "externalReferences": [ + { + "url": "https://github.com/open-telemetry/opentelemetry-java-instrumentation", + "type": "website" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/open-telemetry/opentelemetry-java-instrumentation.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUR4LR7DTVQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.14-9-mvn3.8.4-gradle7.4.2:1.0.3", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "opentelemetry-instrumentation-api", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-api@1.17.0.redhat-00001?type=jar", + "type": "library", + "group": "io.opentelemetry.instrumentation", + "bom-ref": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-api@1.17.0.redhat-00001?type=jar", + "version": "1.17.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "82e6f9da3bfeca5638ccf7d49f63ed3f6136f2f1", + "url": "https://code.engineering.redhat.com/gerrit/open-telemetry/opentelemetry-java-instrumentation.git#1.17.0.redhat-00001-82e6f9da" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Instrumentation of Java libraries using OpenTelemetry.", + "externalReferences": [ + { + "url": "https://github.com/open-telemetry/opentelemetry-java-instrumentation", + "type": "website" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/open-telemetry/opentelemetry-java-instrumentation.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUR4LR7DTVQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.14-9-mvn3.8.4-gradle7.4.2:1.0.3", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "opentelemetry-instrumentation-api-semconv", + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-api-semconv@1.17.0.redhat-00001?type=jar", + "type": "library", + "group": "io.opentelemetry.instrumentation", + "bom-ref": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-api-semconv@1.17.0.redhat-00001?type=jar", + "version": "1.17.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "82e6f9da3bfeca5638ccf7d49f63ed3f6136f2f1", + "url": "https://code.engineering.redhat.com/gerrit/open-telemetry/opentelemetry-java-instrumentation.git#1.17.0.redhat-00001-82e6f9da" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Instrumentation of Java libraries using OpenTelemetry.", + "externalReferences": [ + { + "url": "https://github.com/open-telemetry/opentelemetry-java-instrumentation", + "type": "website" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/open-telemetry/opentelemetry-java-instrumentation.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUR4LR7DTVQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.14-9-mvn3.8.4-gradle7.4.2:1.0.3", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-opentelemetry-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-opentelemetry-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-opentelemetry-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-quartz", + "purl": "pkg:maven/io.quarkus/quarkus-quartz@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-quartz@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Schedule clustered tasks with Quartz", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-scheduler", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-scheduler@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Schedule jobs and tasks", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-scheduler-kotlin", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler-kotlin@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-scheduler-kotlin@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-scheduler-common", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler-common@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-scheduler-common@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "cron-utils", + "purl": "pkg:maven/com.cronutils/cron-utils@9.2.0.redhat-00001?type=jar", + "type": "library", + "group": "com.cronutils", + "bom-ref": "pkg:maven/com.cronutils/cron-utils@9.2.0.redhat-00001?type=jar", + "version": "9.2.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "0dade0cf5414dd2fa0eac5c72228ea63f7d37343", + "url": "https://code.engineering.redhat.com/gerrit/jmrozanec/cron-utils.git#9.2.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "A Java library to parse, migrate and validate crons as well as describe them in human readable language", + "externalReferences": [ + { + "url": "http://cron-parser.com/", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/jmrozanec/cron-utils/issues", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/jmrozanec/cron-utils.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUQ7LZLADVQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.5", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-scheduler-api", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler-api@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-scheduler-api@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quartz", + "purl": "pkg:maven/org.quartz-scheduler/quartz@2.3.2.redhat-00007?type=jar", + "type": "library", + "group": "org.quartz-scheduler", + "bom-ref": "pkg:maven/org.quartz-scheduler/quartz@2.3.2.redhat-00007?type=jar", + "version": "2.3.2.redhat-00007", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "e715bef024f6d75ec75e2eb600c636df8bd3e345", + "url": "http://code.engineering.redhat.com/gerrit/quartz-scheduler/quartz.git#2.3.2.redhat-00007" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Enterprise Job Scheduler", + "externalReferences": [ + { + "url": "http://www.quartz-scheduler.org/quartz", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quartz-scheduler/quartz/issues", + "type": "issue-tracker" + }, + { + "url": "http://code.engineering.redhat.com/gerrit/quartz-scheduler/quartz.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/53112", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "c3p0", + "purl": "pkg:maven/com.mchange/c3p0@0.9.5.4?type=jar", + "type": "library", + "group": "com.mchange", + "bom-ref": "pkg:maven/com.mchange/c3p0@0.9.5.4?type=jar", + "version": "0.9.5.4", + "licenses": [ + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "EPL-1.0" + } + } + ], + "publisher": "central", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "a JDBC Connection pooling / Statement caching library", + "externalReferences": [ + { + "url": "https://github.com/swaldman/c3p0", + "type": "website" + }, + { + "url": "https://github.com/swaldman/c3p0", + "type": "vcs" + } + ] + }, + { + "name": "mchange-commons-java", + "purl": "pkg:maven/com.mchange/mchange-commons-java@0.2.15.redhat-00003?type=jar", + "type": "library", + "group": "com.mchange", + "bom-ref": "pkg:maven/com.mchange/mchange-commons-java@0.2.15.redhat-00003?type=jar", + "version": "0.2.15.redhat-00003", + "licenses": [ + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "EPL-1.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "0d742adc4a23fe9591d803f33a29000355b428b3", + "url": "http://code.engineering.redhat.com/gerrit/swaldman/mchange-commons-java.git#0.2.15.redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "mchange-commons-java", + "externalReferences": [ + { + "url": "https://github.com/swaldman/mchange-commons-java", + "type": "website" + }, + { + "url": "http://code.engineering.redhat.com/gerrit/swaldman/mchange-commons-java.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/53111", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "HikariCP-java7", + "purl": "pkg:maven/com.zaxxer/HikariCP-java7@2.4.13?type=jar", + "type": "library", + "group": "com.zaxxer", + "bom-ref": "pkg:maven/com.zaxxer/HikariCP-java7@2.4.13?type=jar", + "version": "2.4.13", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "Zaxxer.com", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Ultimate JDBC Connection Pool", + "externalReferences": [ + { + "url": "https://github.com/brettwooldridge/HikariCP", + "type": "website" + }, + { + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://github.com/brettwooldridge/HikariCP", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-quartz-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-quartz-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-quartz-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-quartz", + "purl": "pkg:maven/io.quarkus/quarkus-quartz@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-quartz:2.13.9.Final-redhat-00003#1", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Schedule clustered tasks with Quartz", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quartz", + "purl": "pkg:maven/org.quartz-scheduler/quartz@2.3.2.redhat-00007?type=jar", + "type": "library", + "group": "org.quartz-scheduler", + "bom-ref": "o.q:quartz:2.3.2.redhat-00007#1", + "version": "2.3.2.redhat-00007", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "e715bef024f6d75ec75e2eb600c636df8bd3e345", + "url": "http://code.engineering.redhat.com/gerrit/quartz-scheduler/quartz.git#2.3.2.redhat-00007" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Enterprise Job Scheduler", + "externalReferences": [ + { + "url": "http://www.quartz-scheduler.org/quartz", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quartz-scheduler/quartz/issues", + "type": "issue-tracker" + }, + { + "url": "http://code.engineering.redhat.com/gerrit/quartz-scheduler/quartz.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/53112", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-scheduler-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-scheduler-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-scheduler-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "org.eclipse.transformer", + "purl": "pkg:maven/org.eclipse.transformer/org.eclipse.transformer@0.5.0.redhat-00001?type=jar", + "type": "library", + "group": "org.eclipse.transformer", + "bom-ref": "pkg:maven/org.eclipse.transformer/org.eclipse.transformer@0.5.0.redhat-00001?type=jar", + "version": "0.5.0.redhat-00001", + "licenses": [ + { + "license": { + "url": "https://opensource.org/licenses/EPL-2.0,https://opensource.org/licenses/Apache-2.0", + "name": "(EPL-2.0 OR Apache-2.0)" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Eclipse Transformer Library", + "externalReferences": [ + { + "url": "https://projects.eclipse.org/projects/technology.transformer", + "type": "website" + }, + { + "url": "https://github.com/eclipse/transformer/issues", + "type": "issue-tracker" + }, + { + "url": "http://www.eclipse.org/lists/transformer-dev", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/eclipse/transformer.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + } + ] + }, + { + "name": "quarkus-reactive-mssql-client", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-mssql-client@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-reactive-mssql-client@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Connect to the Microsoft SQL Server database using the reactive pattern", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-mutiny-vertx-mssql-client", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mssql-client@2.27.0.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye.reactive", + "bom-ref": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mssql-client@2.27.0.redhat-00001?type=jar", + "version": "2.27.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "109a2da366d4e52568be8ecbeafd802e9d1091fa", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-mutiny-vertx-bindings.git#2.27.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "SmallRye Build Parent POM", + "externalReferences": [ + { + "url": "https://smallrye.io/smallrye-mutiny-vertx-bindings/vertx-mutiny-clients/smallrye-mutiny-vertx-mssql-client", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-mutiny-vertx-bindings/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-mutiny-vertx-bindings.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU3MITW53VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-mutiny-vertx-sql-client", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-sql-client@2.27.0.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye.reactive", + "bom-ref": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-sql-client@2.27.0.redhat-00001?type=jar", + "version": "2.27.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "109a2da366d4e52568be8ecbeafd802e9d1091fa", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-mutiny-vertx-bindings.git#2.27.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "SmallRye Build Parent POM", + "externalReferences": [ + { + "url": "https://smallrye.io/smallrye-mutiny-vertx-bindings/vertx-mutiny-clients/smallrye-mutiny-vertx-sql-client", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-mutiny-vertx-bindings/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-mutiny-vertx-bindings.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU3MITW53VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "vertx-mssql-client", + "purl": "pkg:maven/io.vertx/vertx-mssql-client@4.3.4.redhat-00008?type=jar", + "type": "library", + "group": "io.vertx", + "bom-ref": "pkg:maven/io.vertx/vertx-mssql-client@4.3.4.redhat-00008?type=jar", + "version": "4.3.4.redhat-00008", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "92b725d7e876e53d3fe8614229480e0f5bb289e7", + "url": "https://code.engineering.redhat.com/gerrit/eclipse-vertx/vertx-sql-client.git#vertx-4.3.4.GA-1" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The Reactive MSSQL Client", + "externalReferences": [ + { + "url": "https://github.com/eclipse-vertx/vertx-sql-client", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/eclipse-vertx/vertx-sql-client.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AZB7PSY53RQBM", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-reactive-mssql-client-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-mssql-client-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-reactive-mssql-client-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-reactive-mysql-client", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-mysql-client@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-reactive-mysql-client@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Connect to the MySQL database using the reactive pattern", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-mutiny-vertx-mysql-client", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mysql-client@2.27.0.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye.reactive", + "bom-ref": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mysql-client@2.27.0.redhat-00001?type=jar", + "version": "2.27.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "109a2da366d4e52568be8ecbeafd802e9d1091fa", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-mutiny-vertx-bindings.git#2.27.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "SmallRye Build Parent POM", + "externalReferences": [ + { + "url": "https://smallrye.io/smallrye-mutiny-vertx-bindings/vertx-mutiny-clients/smallrye-mutiny-vertx-mysql-client", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-mutiny-vertx-bindings/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-mutiny-vertx-bindings.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU3MITW53VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "vertx-mysql-client", + "purl": "pkg:maven/io.vertx/vertx-mysql-client@4.3.4.redhat-00008?type=jar", + "type": "library", + "group": "io.vertx", + "bom-ref": "pkg:maven/io.vertx/vertx-mysql-client@4.3.4.redhat-00008?type=jar", + "version": "4.3.4.redhat-00008", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "92b725d7e876e53d3fe8614229480e0f5bb289e7", + "url": "https://code.engineering.redhat.com/gerrit/eclipse-vertx/vertx-sql-client.git#vertx-4.3.4.GA-1" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The Reactive MySQL Client", + "externalReferences": [ + { + "url": "https://github.com/eclipse-vertx/vertx-sql-client", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/eclipse-vertx/vertx-sql-client.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AZB7PSY53RQBM", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-reactive-mysql-client-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-mysql-client-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-reactive-mysql-client-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-reactive-oracle-client", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-oracle-client@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-reactive-oracle-client@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Connect to the Oracle database using the reactive pattern", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-mutiny-vertx-oracle-client", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-oracle-client@2.27.0?type=jar", + "type": "library", + "group": "io.smallrye.reactive", + "bom-ref": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-oracle-client@2.27.0?type=jar", + "version": "2.27.0", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "SmallRye", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "SmallRye Build Parent POM", + "externalReferences": [ + { + "url": "https://smallrye.io/smallrye-mutiny-vertx-bindings/vertx-mutiny-clients/smallrye-mutiny-vertx-oracle-client", + "type": "website" + }, + { + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-mutiny-vertx-bindings/issues", + "type": "issue-tracker" + }, + { + "url": "https://github.com/smallrye/smallrye-mutiny-vertx-bindings", + "type": "vcs" + } + ] + }, + { + "name": "vertx-oracle-client", + "purl": "pkg:maven/io.vertx/vertx-oracle-client@4.3.4?type=jar", + "type": "library", + "group": "io.vertx", + "bom-ref": "pkg:maven/io.vertx/vertx-oracle-client@4.3.4?type=jar", + "version": "4.3.4", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "Eclipse", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The Reactive Oracle Client", + "externalReferences": [ + { + "url": "https://github.com/eclipse-vertx/vertx-sql-client", + "type": "website" + }, + { + "url": "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://github.com/eclipse-vertx/vertx-sql-client", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-reactive-oracle-client-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-oracle-client-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-reactive-oracle-client-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-reactive-pg-client", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-pg-client@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-reactive-pg-client@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Connect to the PostgreSQL database using the reactive pattern", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "client", + "purl": "pkg:maven/com.ongres.scram/client@2.1.0.redhat-00002?type=jar", + "type": "library", + "group": "com.ongres.scram", + "bom-ref": "pkg:maven/com.ongres.scram/client@2.1.0.redhat-00002?type=jar", + "version": "2.1.0.redhat-00002", + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "d1e4ad1626652d615f652344230edd8bee88e6d4", + "url": "http://code.engineering.redhat.com/gerrit/ongresinc/scram.git#2.1.0.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Java Implementation of the Salted Challenge Response Authentication Mechanism (SCRAM)", + "externalReferences": [ + { + "url": "https://gitlab.com/ongresinc/scram/client", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://gitlab.com/ongresinc/scram/issues", + "type": "issue-tracker" + }, + { + "url": "http://code.engineering.redhat.com/gerrit/ongresinc/scram.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/53563", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "common", + "purl": "pkg:maven/com.ongres.scram/common@2.1.0.redhat-00002?type=jar", + "type": "library", + "group": "com.ongres.scram", + "bom-ref": "pkg:maven/com.ongres.scram/common@2.1.0.redhat-00002?type=jar", + "version": "2.1.0.redhat-00002", + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Java Implementation of the Salted Challenge Response Authentication Mechanism (SCRAM)", + "externalReferences": [ + { + "url": "https://gitlab.com/ongresinc/scram/common", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://gitlab.com/ongresinc/scram/issues", + "type": "issue-tracker" + }, + { + "url": "http://code.engineering.redhat.com/gerrit/ongresinc/scram.git", + "type": "vcs" + } + ] + }, + { + "name": "saslprep", + "purl": "pkg:maven/com.ongres.stringprep/saslprep@1.1.0.redhat-00002?type=jar", + "type": "library", + "group": "com.ongres.stringprep", + "bom-ref": "pkg:maven/com.ongres.stringprep/saslprep@1.1.0.redhat-00002?type=jar", + "version": "1.1.0.redhat-00002", + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Java Implementation of StringPrep", + "externalReferences": [ + { + "url": "https://gitlab.com/ongresinc/stringprep/saslprep", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://gitlab.com/ongresinc/stringprep/issues", + "type": "issue-tracker" + }, + { + "url": "http://code.engineering.redhat.com/gerrit/ongresinc/stringprep.git", + "type": "vcs" + } + ] + }, + { + "name": "stringprep", + "purl": "pkg:maven/com.ongres.stringprep/stringprep@1.1.0.redhat-00002?type=jar", + "type": "library", + "group": "com.ongres.stringprep", + "bom-ref": "pkg:maven/com.ongres.stringprep/stringprep@1.1.0.redhat-00002?type=jar", + "version": "1.1.0.redhat-00002", + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Java Implementation of StringPrep", + "externalReferences": [ + { + "url": "https://gitlab.com/ongresinc/stringprep/stringprep", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://gitlab.com/ongresinc/stringprep/issues", + "type": "issue-tracker" + }, + { + "url": "http://code.engineering.redhat.com/gerrit/ongresinc/stringprep.git", + "type": "vcs" + } + ] + }, + { + "name": "smallrye-mutiny-vertx-pg-client", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-pg-client@2.27.0.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye.reactive", + "bom-ref": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-pg-client@2.27.0.redhat-00001?type=jar", + "version": "2.27.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "109a2da366d4e52568be8ecbeafd802e9d1091fa", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-mutiny-vertx-bindings.git#2.27.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "SmallRye Build Parent POM", + "externalReferences": [ + { + "url": "https://smallrye.io/smallrye-mutiny-vertx-bindings/vertx-mutiny-clients/smallrye-mutiny-vertx-pg-client", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-mutiny-vertx-bindings/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-mutiny-vertx-bindings.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU3MITW53VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "vertx-pg-client", + "purl": "pkg:maven/io.vertx/vertx-pg-client@4.3.4.redhat-00008?type=jar", + "type": "library", + "group": "io.vertx", + "bom-ref": "pkg:maven/io.vertx/vertx-pg-client@4.3.4.redhat-00008?type=jar", + "version": "4.3.4.redhat-00008", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "92b725d7e876e53d3fe8614229480e0f5bb289e7", + "url": "https://code.engineering.redhat.com/gerrit/eclipse-vertx/vertx-sql-client.git#vertx-4.3.4.GA-1" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The Reactive PostgreSQL Client", + "externalReferences": [ + { + "url": "https://github.com/eclipse-vertx/vertx-sql-client", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/eclipse-vertx/vertx-sql-client.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AZB7PSY53RQBM", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-reactive-pg-client-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-pg-client-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-reactive-pg-client-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-reactive-routes", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-routes@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-reactive-routes@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "REST framework offering the route model to define non blocking endpoints", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-reactive-routes-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-reactive-routes-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-reactive-routes-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-rest-client", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-rest-client:2.13.9.Final-redhat-00003#1", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Call REST services", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "httpasyncclient", + "purl": "pkg:maven/org.apache.httpcomponents/httpasyncclient@4.1.5.redhat-00004?type=jar", + "type": "library", + "group": "org.apache.httpcomponents", + "bom-ref": "o.a.h:httpasyncclient:4.1.5.redhat-00004#2", + "version": "4.1.5.redhat-00004", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b40ce74594109fe1ceacbae6a6f6a90eccbf02e8", + "url": "https://code.engineering.redhat.com/gerrit/apache/httpasyncclient.git#4.1.5.redhat-00004" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Apache HttpComponents AsyncClient", + "externalReferences": [ + { + "url": "http://hc.apache.org/httpcomponents-asyncclient", + "type": "website" + }, + { + "url": "http://issues.apache.org/jira/browse/HTTPASYNC", + "type": "issue-tracker" + }, + { + "url": "http://mail-archives.apache.org/mod_mbox/hc-httpclient-users/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/apache/httpasyncclient.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A2ZTWKLZKEQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.3.9-gcc-cpp-make:1.0.6", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "resteasy-client-microprofile", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client-microprofile@4.7.9.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.jboss.resteasy", + "bom-ref": "o.j.r:resteasy-client-microprofile:4.7.9.Final-redhat-00001#1", + "version": "4.7.9.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "77ccd9259e4f100da265462e32978bb7f31d0f70", + "url": "https://code.engineering.redhat.com/gerrit/resteasy.git#4.7.9.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Resteasy", + "externalReferences": [ + { + "url": "https://jboss.org/resteasy/resteasy-client-microprofile", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.redhat.com/browse/RESTEASY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/resteasy.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AZGJZ46CUDAAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "resteasy-client-microprofile-base", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client-microprofile-base@4.7.9.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.jboss.resteasy", + "bom-ref": "o.j.r:resteasy-client-microprofile-base:4.7.9.Final-redhat-00001#1", + "version": "4.7.9.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "77ccd9259e4f100da265462e32978bb7f31d0f70", + "url": "https://code.engineering.redhat.com/gerrit/resteasy.git#4.7.9.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Resteasy", + "externalReferences": [ + { + "url": "https://jboss.org/resteasy/resteasy-client-microprofile-base", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.redhat.com/browse/RESTEASY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/resteasy.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AZGJZ46CUDAAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "resteasy-cdi", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-cdi@4.7.9.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.jboss.resteasy", + "bom-ref": "o.j.r:resteasy-cdi:4.7.9.Final-redhat-00001#1", + "version": "4.7.9.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "77ccd9259e4f100da265462e32978bb7f31d0f70", + "url": "https://code.engineering.redhat.com/gerrit/resteasy.git#4.7.9.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "", + "externalReferences": [ + { + "url": "https://jboss.org/resteasy/resteasy-cdi", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.redhat.com/browse/RESTEASY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/resteasy.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AZGJZ46CUDAAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "jboss-interceptors-api_1.2_spec", + "purl": "pkg:maven/org.jboss.spec.javax.interceptor/jboss-interceptors-api_1.2_spec@2.0.0.Final-redhat-00002?type=jar", + "type": "library", + "group": "org.jboss.spec.javax.interceptor", + "bom-ref": "pkg:maven/org.jboss.spec.javax.interceptor/jboss-interceptors-api_1.2_spec@2.0.0.Final-redhat-00002?type=jar", + "version": "2.0.0.Final-redhat-00002", + "licenses": [ + { + "license": { + "id": "EPL-2.0" + } + }, + { + "license": { + "id": "GPL-2.0-with-classpath-exception" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Jakarta Interceptors defines a means of interposing on business method invocations and specific events—such as lifecycle events and timeout events—that occur on instances of Jakarta EE components and other managed classes.", + "externalReferences": [ + { + "url": "https://github.com/jboss/jboss-jakarta-interceptors-api_spec", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/projects/JBEE/issues", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "http://code.engineering.redhat.com/gerrit/jboss/jboss-jakarta-interceptors-api_spec.git", + "type": "vcs" + } + ] + }, + { + "name": "weld-api", + "purl": "pkg:maven/org.jboss.weld/weld-api@3.1.0.SP4-redhat-00001?type=jar", + "type": "library", + "group": "org.jboss.weld", + "bom-ref": "pkg:maven/org.jboss.weld/weld-api@3.1.0.SP4-redhat-00001?type=jar", + "version": "3.1.0.SP4-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Weld specifc extensions to the CDI API", + "externalReferences": [ + { + "url": "http://weld.cdi-spec.org", + "type": "website" + }, + { + "url": "http://hudson.jboss.org", + "type": "build-system" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "http://jira.jboss.org/browse/WELD", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "http://code.engineering.redhat.com/gerrit/weld/api.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-rest-client-jackson", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jackson@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-rest-client-jackson@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Jackson serialization support for the REST Client", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "resteasy-jackson2-provider", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-jackson2-provider@4.7.9.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.jboss.resteasy", + "bom-ref": "pkg:maven/org.jboss.resteasy/resteasy-jackson2-provider@4.7.9.Final-redhat-00001?type=jar", + "version": "4.7.9.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "77ccd9259e4f100da265462e32978bb7f31d0f70", + "url": "https://code.engineering.redhat.com/gerrit/resteasy.git#4.7.9.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "", + "externalReferences": [ + { + "url": "https://jboss.org/resteasy/providers-pom/resteasy-jackson2-provider", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.redhat.com/browse/RESTEASY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/resteasy.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AZGJZ46CUDAAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "jackson-jaxrs-json-provider", + "purl": "pkg:maven/com.fasterxml.jackson.jaxrs/jackson-jaxrs-json-provider@2.13.4.redhat-00004?type=jar", + "type": "library", + "group": "com.fasterxml.jackson.jaxrs", + "bom-ref": "pkg:maven/com.fasterxml.jackson.jaxrs/jackson-jaxrs-json-provider@2.13.4.redhat-00004?type=jar", + "version": "2.13.4.redhat-00004", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "baa78c49987e07a3741a1ca092b78c7d1fe0f3c5", + "url": "https://code.engineering.redhat.com/gerrit/FasterXML/jackson-jaxrs-providers.git#2.13.4.redhat-00004" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Functionality to handle JSON input/output for JAX-RS implementations (like Jersey and RESTeasy) using standard Jackson data binding.", + "externalReferences": [ + { + "url": "http://github.com/FasterXML/jackson-jaxrs-providers/jackson-jaxrs-json-provider", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/FasterXML/jackson-jaxrs-json-provider/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/FasterXML/jackson-jaxrs-providers.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AVFSODCF7CAAM", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "jackson-jaxrs-base", + "purl": "pkg:maven/com.fasterxml.jackson.jaxrs/jackson-jaxrs-base@2.13.4.redhat-00004?type=jar", + "type": "library", + "group": "com.fasterxml.jackson.jaxrs", + "bom-ref": "pkg:maven/com.fasterxml.jackson.jaxrs/jackson-jaxrs-base@2.13.4.redhat-00004?type=jar", + "version": "2.13.4.redhat-00004", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "baa78c49987e07a3741a1ca092b78c7d1fe0f3c5", + "url": "https://code.engineering.redhat.com/gerrit/FasterXML/jackson-jaxrs-providers.git#2.13.4.redhat-00004" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Pile of code that is shared by all Jackson-based JAX-RS providers.", + "externalReferences": [ + { + "url": "http://github.com/FasterXML/jackson-jaxrs-providers/jackson-jaxrs-base", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/FasterXML/jackson-jaxrs-base/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/FasterXML/jackson-jaxrs-providers.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AVFSODCF7CAAM", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "jackson-module-jaxb-annotations", + "purl": "pkg:maven/com.fasterxml.jackson.module/jackson-module-jaxb-annotations@2.13.4.redhat-00004?type=jar", + "type": "library", + "group": "com.fasterxml.jackson.module", + "bom-ref": "pkg:maven/com.fasterxml.jackson.module/jackson-module-jaxb-annotations@2.13.4.redhat-00004?type=jar", + "version": "2.13.4.redhat-00004", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "701b9fab159ff67df08d9a3f922c1130264845bc", + "url": "https://code.engineering.redhat.com/gerrit/FasterXML/jackson-modules-base.git#2.13.4.redhat-00004" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Support for using JAXB annotations as an alternative to \"native\" Jackson annotations, for configuring data-binding.", + "externalReferences": [ + { + "url": "https://github.com/FasterXML/jackson-modules-base", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/FasterXML/jackson-modules-base/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/FasterXML/jackson-modules-base.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AVFSODCF7CAAG", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "jakarta.activation-api", + "purl": "pkg:maven/jakarta.activation/jakarta.activation-api@1.2.1.redhat-00005?type=jar", + "type": "library", + "group": "jakarta.activation", + "bom-ref": "pkg:maven/jakarta.activation/jakarta.activation-api@1.2.1.redhat-00005?type=jar", + "version": "1.2.1.redhat-00005", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "ac1068032a48dd7cdb5b9430a5649e39f0f4dde0", + "url": "https://code.engineering.redhat.com/gerrit/eclipse-ee4j/jaf.git#1.2.1.redhat-00005" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "JavaBeans Activation Framework API jar", + "externalReferences": [ + { + "url": "https://github.com/eclipse-ee4j/jaf/jakarta.activation-api", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/eclipse-ee4j/jaf/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/eclipse-ee4j/jaf.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AYQU55M3LRQBC", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.3.9:1.0.5", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "json-patch", + "purl": "pkg:maven/com.github.java-json-tools/json-patch@1.13.0.redhat-00007?type=jar", + "type": "library", + "group": "com.github.java-json-tools", + "bom-ref": "pkg:maven/com.github.java-json-tools/json-patch@1.13.0.redhat-00007?type=jar", + "version": "1.13.0.redhat-00007", + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "externalReferences": [ + { + "url": "https://code.engineering.redhat.com/gerrit/java-json-tools/json-patch.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + } + ] + }, + { + "name": "jackson-coreutils", + "purl": "pkg:maven/com.github.java-json-tools/jackson-coreutils@2.0.0.redhat-00005?type=jar", + "type": "library", + "group": "com.github.java-json-tools", + "bom-ref": "pkg:maven/com.github.java-json-tools/jackson-coreutils@2.0.0.redhat-00005?type=jar", + "version": "2.0.0.redhat-00005", + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "externalReferences": [ + { + "url": "http://code.engineering.redhat.com/gerrit/java-json-tools/jackson-coreutils.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + } + ] + }, + { + "name": "msg-simple", + "purl": "pkg:maven/com.github.java-json-tools/msg-simple@1.2.0.redhat-00002?type=jar", + "type": "library", + "group": "com.github.java-json-tools", + "bom-ref": "pkg:maven/com.github.java-json-tools/msg-simple@1.2.0.redhat-00002?type=jar", + "version": "1.2.0.redhat-00002", + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "externalReferences": [ + { + "url": "https://code.engineering.redhat.com/gerrit/java-json-tools/msg-simple.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + } + ] + }, + { + "name": "btf", + "purl": "pkg:maven/com.github.java-json-tools/btf@1.3.0.redhat-00003?type=jar", + "type": "library", + "group": "com.github.java-json-tools", + "bom-ref": "pkg:maven/com.github.java-json-tools/btf@1.3.0.redhat-00003?type=jar", + "version": "1.3.0.redhat-00003", + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "externalReferences": [ + { + "url": "http://code.engineering.redhat.com/gerrit/java-json-tools/btf.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + } + ] + }, + { + "name": "quarkus-rest-client-jackson-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jackson-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-rest-client-jackson-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-rest-client-jackson", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jackson@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-rest-client-jackson:2.13.9.Final-redhat-00003#1", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Jackson serialization support for the REST Client", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "resteasy-jackson2-provider", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-jackson2-provider@4.7.9.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.jboss.resteasy", + "bom-ref": "o.j.r:resteasy-jackson2-provider:4.7.9.Final-redhat-00001#1", + "version": "4.7.9.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "77ccd9259e4f100da265462e32978bb7f31d0f70", + "url": "https://code.engineering.redhat.com/gerrit/resteasy.git#4.7.9.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "", + "externalReferences": [ + { + "url": "https://jboss.org/resteasy/providers-pom/resteasy-jackson2-provider", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.redhat.com/browse/RESTEASY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/resteasy.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AZGJZ46CUDAAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "jackson-jaxrs-json-provider", + "purl": "pkg:maven/com.fasterxml.jackson.jaxrs/jackson-jaxrs-json-provider@2.13.4.redhat-00004?type=jar", + "type": "library", + "group": "com.fasterxml.jackson.jaxrs", + "bom-ref": "c.f.j.j:jackson-jaxrs-json-provider:2.13.4.redhat-00004#1", + "version": "2.13.4.redhat-00004", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "baa78c49987e07a3741a1ca092b78c7d1fe0f3c5", + "url": "https://code.engineering.redhat.com/gerrit/FasterXML/jackson-jaxrs-providers.git#2.13.4.redhat-00004" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Functionality to handle JSON input/output for JAX-RS implementations (like Jersey and RESTeasy) using standard Jackson data binding.", + "externalReferences": [ + { + "url": "http://github.com/FasterXML/jackson-jaxrs-providers/jackson-jaxrs-json-provider", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/FasterXML/jackson-jaxrs-json-provider/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/FasterXML/jackson-jaxrs-providers.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AVFSODCF7CAAM", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "jackson-module-jaxb-annotations", + "purl": "pkg:maven/com.fasterxml.jackson.module/jackson-module-jaxb-annotations@2.13.4.redhat-00004?type=jar", + "type": "library", + "group": "com.fasterxml.jackson.module", + "bom-ref": "c.f.j.m:jackson-module-jaxb-annotations:2.13.4.redhat-00004#1", + "version": "2.13.4.redhat-00004", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "701b9fab159ff67df08d9a3f922c1130264845bc", + "url": "https://code.engineering.redhat.com/gerrit/FasterXML/jackson-modules-base.git#2.13.4.redhat-00004" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Support for using JAXB annotations as an alternative to \"native\" Jackson annotations, for configuring data-binding.", + "externalReferences": [ + { + "url": "https://github.com/FasterXML/jackson-modules-base", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/FasterXML/jackson-modules-base/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/FasterXML/jackson-modules-base.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AVFSODCF7CAAG", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-rest-client-jaxb", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jaxb@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-rest-client-jaxb@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "XML serialization support for the REST Client", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "resteasy-jaxb-provider", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-jaxb-provider@4.7.9.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.jboss.resteasy", + "bom-ref": "pkg:maven/org.jboss.resteasy/resteasy-jaxb-provider@4.7.9.Final-redhat-00001?type=jar", + "version": "4.7.9.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "77ccd9259e4f100da265462e32978bb7f31d0f70", + "url": "https://code.engineering.redhat.com/gerrit/resteasy.git#4.7.9.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "", + "externalReferences": [ + { + "url": "https://jboss.org/resteasy/providers-pom/resteasy-jaxb-provider", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.redhat.com/browse/RESTEASY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/resteasy.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AZGJZ46CUDAAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-rest-client-jaxb-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jaxb-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-rest-client-jaxb-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-rest-client-jsonb", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jsonb@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-rest-client-jsonb@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "JSON-B serialization support for the REST client", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "resteasy-json-binding-provider", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-json-binding-provider@4.7.9.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.jboss.resteasy", + "bom-ref": "pkg:maven/org.jboss.resteasy/resteasy-json-binding-provider@4.7.9.Final-redhat-00001?type=jar", + "version": "4.7.9.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "77ccd9259e4f100da265462e32978bb7f31d0f70", + "url": "https://code.engineering.redhat.com/gerrit/resteasy.git#4.7.9.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "", + "externalReferences": [ + { + "url": "https://jboss.org/resteasy/providers-pom/resteasy-json-binding-provider", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.redhat.com/browse/RESTEASY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/resteasy.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AZGJZ46CUDAAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "resteasy-json-p-provider", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-json-p-provider@4.7.9.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.jboss.resteasy", + "bom-ref": "pkg:maven/org.jboss.resteasy/resteasy-json-p-provider@4.7.9.Final-redhat-00001?type=jar", + "version": "4.7.9.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "77ccd9259e4f100da265462e32978bb7f31d0f70", + "url": "https://code.engineering.redhat.com/gerrit/resteasy.git#4.7.9.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "", + "externalReferences": [ + { + "url": "https://jboss.org/resteasy/providers-pom/resteasy-json-p-provider", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.redhat.com/browse/RESTEASY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/resteasy.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AZGJZ46CUDAAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-rest-client-jsonb-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jsonb-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-rest-client-jsonb-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-rest-client-jsonb", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jsonb@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-rest-client-jsonb:2.13.9.Final-redhat-00003#1", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "JSON-B serialization support for the REST client", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "resteasy-json-binding-provider", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-json-binding-provider@4.7.9.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.jboss.resteasy", + "bom-ref": "o.j.r:resteasy-json-binding-provider:4.7.9.Final-redhat-00001#1", + "version": "4.7.9.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "77ccd9259e4f100da265462e32978bb7f31d0f70", + "url": "https://code.engineering.redhat.com/gerrit/resteasy.git#4.7.9.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "", + "externalReferences": [ + { + "url": "https://jboss.org/resteasy/providers-pom/resteasy-json-binding-provider", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.redhat.com/browse/RESTEASY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/resteasy.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AZGJZ46CUDAAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-rest-client-reactive-jackson", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-reactive-jackson@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-rest-client-reactive-jackson@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Jackson serialization support for REST Client Reactive", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-resteasy-reactive-jackson-common", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson-common@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson-common@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Common classes for Jackson serialization support for RESTEasy Reactive", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "resteasy-reactive-jackson", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-jackson@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus.resteasy.reactive", + "bom-ref": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-jackson@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Provides, via submodules, a base configuration for JBoss project builds, as well as a derived configuration supporting multi-release JARs", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.redhat.com/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-rest-client-reactive-jackson-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-reactive-jackson-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-rest-client-reactive-jackson-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-resteasy-reactive-jackson-common-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson-common-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson-common-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-resteasy", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-resteasy@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "REST endpoint framework implementing JAX-RS and more", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-resteasy-server-common", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-server-common@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-resteasy-server-common@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "RESTEasy Server common", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-resteasy-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-resteasy-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-resteasy-server-common-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-server-common-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-resteasy-server-common-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-resteasy-jackson", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jackson@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-resteasy-jackson@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Jackson serialization support for RESTEasy Classic", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-resteasy-jackson-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jackson-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-resteasy-jackson-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-resteasy-jackson", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jackson@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-resteasy-jackson:2.13.9.Final-redhat-00003#1", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Jackson serialization support for RESTEasy Classic", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-resteasy-jaxb", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jaxb@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-resteasy-jaxb@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "XML serialization support for RESTEasy Classic", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-resteasy-jaxb-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jaxb-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-resteasy-jaxb-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-resteasy-jsonb", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jsonb@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-resteasy-jsonb@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "JSON-B serialization support for RESTEasy Classic", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-resteasy-jsonb-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jsonb-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-resteasy-jsonb-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-resteasy-jsonb", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jsonb@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-resteasy-jsonb:2.13.9.Final-redhat-00003#1", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "JSON-B serialization support for RESTEasy Classic", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-resteasy-multipart", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-multipart@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-resteasy-multipart@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Multipart support for RESTEasy Classic", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-resteasy", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-resteasy:2.13.9.Final-redhat-00003#1", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "REST endpoint framework implementing JAX-RS and more", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-resteasy-server-common", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-server-common@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-resteasy-server-common:2.13.9.Final-redhat-00003#1", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "RESTEasy Server common", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-resteasy-common", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-common@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-resteasy-common:2.13.9.Final-redhat-00003#1", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Components common to the RESTEasy server and the REST Client", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "resteasy-core", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-core@4.7.9.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.jboss.resteasy", + "bom-ref": "o.j.r:resteasy-core:4.7.9.Final-redhat-00001#1", + "version": "4.7.9.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "77ccd9259e4f100da265462e32978bb7f31d0f70", + "url": "https://code.engineering.redhat.com/gerrit/resteasy.git#4.7.9.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "", + "externalReferences": [ + { + "url": "https://jboss.org/resteasy/resteasy-core", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.redhat.com/browse/RESTEASY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/resteasy.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AZGJZ46CUDAAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "resteasy-multipart-provider", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-multipart-provider@4.7.9.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.jboss.resteasy", + "bom-ref": "pkg:maven/org.jboss.resteasy/resteasy-multipart-provider@4.7.9.Final-redhat-00001?type=jar", + "version": "4.7.9.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "77ccd9259e4f100da265462e32978bb7f31d0f70", + "url": "https://code.engineering.redhat.com/gerrit/resteasy.git#4.7.9.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "", + "externalReferences": [ + { + "url": "https://jboss.org/resteasy/providers-pom/resteasy-multipart-provider", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.redhat.com/browse/RESTEASY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/resteasy.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AZGJZ46CUDAAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "jakarta.mail", + "purl": "pkg:maven/com.sun.mail/jakarta.mail@1.6.7.redhat-00005?type=jar", + "type": "library", + "group": "com.sun.mail", + "bom-ref": "pkg:maven/com.sun.mail/jakarta.mail@1.6.7.redhat-00005?type=jar", + "version": "1.6.7.redhat-00005", + "licenses": [ + { + "license": { + "id": "EPL-2.0" + } + }, + { + "license": { + "id": "GPL-2.0-with-classpath-exception" + } + }, + { + "license": { + "id": "BSD-3-Clause" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c2f65bdf238d5fda8a0d8d9a6b3241e1954d8caa", + "url": "https://code.engineering.redhat.com/gerrit/eclipse-ee4j/mail.git#1.6.7.redhat-00005" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Jakarta Mail API", + "externalReferences": [ + { + "url": "http://eclipse-ee4j.github.io/mail/jakarta.mail", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/eclipse-ee4j/mail/issues", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/eclipse-ee4j/mail.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AYQU55M3LRQAK", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.3.9:1.0.5", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "apache-mime4j-dom", + "purl": "pkg:maven/org.apache.james/apache-mime4j-dom@0.8.9.redhat-00001?type=jar", + "type": "library", + "group": "org.apache.james", + "bom-ref": "pkg:maven/org.apache.james/apache-mime4j-dom@0.8.9.redhat-00001?type=jar", + "version": "0.8.9.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "f2481a365446573f199686bf7b528555e079d079", + "url": "https://code.engineering.redhat.com/gerrit/apache/james-mime4j.git#0.8.9.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Java MIME Document Object Model", + "externalReferences": [ + { + "url": "http://james.apache.org/mime4j/apache-mime4j-dom", + "type": "website" + }, + { + "url": "http://issues.apache.org/jira/browse/MIME4J", + "type": "issue-tracker" + }, + { + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/apache/james-mime4j.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AWUQKPUWS3QAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.6", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "apache-mime4j-core", + "purl": "pkg:maven/org.apache.james/apache-mime4j-core@0.8.9.redhat-00001?type=jar", + "type": "library", + "group": "org.apache.james", + "bom-ref": "pkg:maven/org.apache.james/apache-mime4j-core@0.8.9.redhat-00001?type=jar", + "version": "0.8.9.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "f2481a365446573f199686bf7b528555e079d079", + "url": "https://code.engineering.redhat.com/gerrit/apache/james-mime4j.git#0.8.9.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Java stream based MIME message parser", + "externalReferences": [ + { + "url": "http://james.apache.org/mime4j/apache-mime4j-core", + "type": "website" + }, + { + "url": "http://issues.apache.org/jira/browse/MIME4J", + "type": "issue-tracker" + }, + { + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/apache/james-mime4j.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AWUQKPUWS3QAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.6", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "apache-mime4j-storage", + "purl": "pkg:maven/org.apache.james/apache-mime4j-storage@0.8.9.redhat-00001?type=jar", + "type": "library", + "group": "org.apache.james", + "bom-ref": "pkg:maven/org.apache.james/apache-mime4j-storage@0.8.9.redhat-00001?type=jar", + "version": "0.8.9.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "f2481a365446573f199686bf7b528555e079d079", + "url": "https://code.engineering.redhat.com/gerrit/apache/james-mime4j.git#0.8.9.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Java MIME Document Object Model Storage", + "externalReferences": [ + { + "url": "http://james.apache.org/mime4j/apache-mime4j-storage", + "type": "website" + }, + { + "url": "http://issues.apache.org/jira/browse/MIME4J", + "type": "issue-tracker" + }, + { + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/apache/james-mime4j.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AWUQKPUWS3QAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.6", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-resteasy-multipart-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-multipart-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-resteasy-multipart-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-resteasy-multipart", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-multipart@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-resteasy-multipart:2.13.9.Final-redhat-00003#1", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Multipart support for RESTEasy Classic", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "resteasy-multipart-provider", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-multipart-provider@4.7.9.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.jboss.resteasy", + "bom-ref": "o.j.r:resteasy-multipart-provider:4.7.9.Final-redhat-00001#1", + "version": "4.7.9.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "77ccd9259e4f100da265462e32978bb7f31d0f70", + "url": "https://code.engineering.redhat.com/gerrit/resteasy.git#4.7.9.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "", + "externalReferences": [ + { + "url": "https://jboss.org/resteasy/providers-pom/resteasy-multipart-provider", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.redhat.com/browse/RESTEASY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/resteasy.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AZGJZ46CUDAAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "jakarta.mail", + "purl": "pkg:maven/com.sun.mail/jakarta.mail@1.6.7.redhat-00005?type=jar", + "type": "library", + "group": "com.sun.mail", + "bom-ref": "c.s.m:jakarta.mail:1.6.7.redhat-00005#1", + "version": "1.6.7.redhat-00005", + "licenses": [ + { + "license": { + "id": "EPL-2.0" + } + }, + { + "license": { + "id": "GPL-2.0-with-classpath-exception" + } + }, + { + "license": { + "id": "BSD-3-Clause" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c2f65bdf238d5fda8a0d8d9a6b3241e1954d8caa", + "url": "https://code.engineering.redhat.com/gerrit/eclipse-ee4j/mail.git#1.6.7.redhat-00005" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Jakarta Mail API", + "externalReferences": [ + { + "url": "http://eclipse-ee4j.github.io/mail/jakarta.mail", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/eclipse-ee4j/mail/issues", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/eclipse-ee4j/mail.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AYQU55M3LRQAK", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.3.9:1.0.5", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "resteasy-jaxb-provider", + "purl": "pkg:maven/org.jboss.resteasy/resteasy-jaxb-provider@4.7.9.Final-redhat-00001?type=jar", + "type": "library", + "group": "org.jboss.resteasy", + "bom-ref": "o.j.r:resteasy-jaxb-provider:4.7.9.Final-redhat-00001#1", + "version": "4.7.9.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "77ccd9259e4f100da265462e32978bb7f31d0f70", + "url": "https://code.engineering.redhat.com/gerrit/resteasy.git#4.7.9.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "", + "externalReferences": [ + { + "url": "https://jboss.org/resteasy/providers-pom/resteasy-jaxb-provider", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.redhat.com/browse/RESTEASY", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/resteasy.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AZGJZ46CUDAAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "jaxb-runtime", + "purl": "pkg:maven/org.glassfish.jaxb/jaxb-runtime@2.3.3.b02-redhat-00004?type=jar", + "type": "library", + "group": "org.glassfish.jaxb", + "bom-ref": "o.g.j:jaxb-runtime:2.3.3.b02-redhat-00004#2", + "version": "2.3.3.b02-redhat-00004", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "2c42db09964ddfcff0862f2ccd39b4c443ff89b4", + "url": "https://code.engineering.redhat.com/gerrit/eclipse-ee4j/jaxb-ri.git#2.3.3.b02-redhat-00004" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "JAXB (JSR 222) Reference Implementation", + "externalReferences": [ + { + "url": "https://javaee.github.io/jaxb-v2/jaxb-runtime-parent/jaxb-runtime/", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/eclipse-ee4j/jaxb-ri/issues", + "type": "issue-tracker" + }, + { + "url": "https://dev.eclipse.org/mhonarc/lists/jaxb-dev", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/eclipse-ee4j/jaxb-ri.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AYQR7DK2TRQBI", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-resteasy-qute", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-qute@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-resteasy-qute@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Qute Templating integration for RESTEasy", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-resteasy-qute-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-qute-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-resteasy-qute-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-resteasy-reactive", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-resteasy-reactive@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "A JAX-RS implementation utilizing build time processing and Vert.x. This extension is not compatible with the quarkus-resteasy extension, or any of the extensions that depend on it.", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "resteasy-reactive-vertx", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-vertx@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus.resteasy.reactive", + "bom-ref": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-vertx@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Provides, via submodules, a base configuration for JBoss project builds, as well as a derived configuration supporting multi-release JARs", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.redhat.com/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-resteasy-reactive-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-resteasy-reactive-jackson", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Jackson serialization support for RESTEasy Reactive. This extension is not compatible with the quarkus-resteasy extension, or any of the extensions that depend on it", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-resteasy-reactive-jackson-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-resteasy-reactive-jaxb", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jaxb@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jaxb@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "JAXB serialization support for RESTEasy Reactive. This extension is not compatible with the quarkus-resteasy extension, or any of the extensions that depend on it.", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-resteasy-reactive-jaxb-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jaxb-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jaxb-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-resteasy-reactive-jsonb", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "JSON-B serialization support for RESTEasy Reactive. This extension is not compatible with the quarkus-resteasy extension, or any of the extensions that depend on it.", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-resteasy-reactive-jsonb-common", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb-common@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb-common@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Common classes for JSON-B serialization support for RESTEasy Reactive", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "resteasy-reactive-jsonb", + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-jsonb@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus.resteasy.reactive", + "bom-ref": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-jsonb@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Provides, via submodules, a base configuration for JBoss project builds, as well as a derived configuration supporting multi-release JARs", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.redhat.com/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-resteasy-reactive-jsonb-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-resteasy-reactive-jsonb-common-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb-common-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb-common-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-resteasy-reactive-qute", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-qute@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-qute@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Qute integration for RESTEasy Reactive. This extension is not compatible with the quarkus-resteasy extension, or any of the extensions that depend on it.", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-resteasy-reactive-qute-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-qute-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-qute-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-smallrye-fault-tolerance", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-fault-tolerance@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-smallrye-fault-tolerance@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build fault-tolerant network services", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-fault-tolerance", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance@5.5.0.redhat-00002?type=jar", + "type": "library", + "group": "io.smallrye", + "bom-ref": "pkg:maven/io.smallrye/smallrye-fault-tolerance@5.5.0.redhat-00002?type=jar", + "version": "5.5.0.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "dc7f47e955424d789a4c7435724bd36670c1390d", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-fault-tolerance.git#5.5.0.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "SmallRye Build Parent POM", + "externalReferences": [ + { + "url": "http://smallrye.io/smallrye-fault-tolerance-implementation-parent/smallrye-fault-tolerance", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-fault-tolerance/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-fault-tolerance.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUOPPWKP3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.3", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-fault-tolerance-api", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-api@5.5.0.redhat-00002?type=jar", + "type": "library", + "group": "io.smallrye", + "bom-ref": "pkg:maven/io.smallrye/smallrye-fault-tolerance-api@5.5.0.redhat-00002?type=jar", + "version": "5.5.0.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "dc7f47e955424d789a4c7435724bd36670c1390d", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-fault-tolerance.git#5.5.0.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "SmallRye Build Parent POM", + "externalReferences": [ + { + "url": "http://smallrye.io/smallrye-fault-tolerance-api", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-fault-tolerance/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-fault-tolerance.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUOPPWKP3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.3", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "microprofile-fault-tolerance-api", + "purl": "pkg:maven/org.eclipse.microprofile.fault-tolerance/microprofile-fault-tolerance-api@3.0.0.redhat-00002?type=jar", + "type": "library", + "group": "org.eclipse.microprofile.fault-tolerance", + "bom-ref": "pkg:maven/org.eclipse.microprofile.fault-tolerance/microprofile-fault-tolerance-api@3.0.0.redhat-00002?type=jar", + "version": "3.0.0.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "1c16b4fcf8746728698985081c2fefd70aa6c9fc", + "url": "http://code.engineering.redhat.com/gerrit/eclipse/microprofile-fault-tolerance.git#3.0.0.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Fault Tolerance APIs for MicroProfile :: API", + "externalReferences": [ + { + "url": "https://microprofile.io/microprofile-fault-tolerance-api", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/eclipse/microprofile-fault-tolerance/issues", + "type": "issue-tracker" + }, + { + "url": "http://code.engineering.redhat.com/gerrit/eclipse/microprofile-fault-tolerance.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/90434", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.1", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-fault-tolerance-autoconfig-core", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-autoconfig-core@5.5.0.redhat-00002?type=jar", + "type": "library", + "group": "io.smallrye", + "bom-ref": "pkg:maven/io.smallrye/smallrye-fault-tolerance-autoconfig-core@5.5.0.redhat-00002?type=jar", + "version": "5.5.0.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "dc7f47e955424d789a4c7435724bd36670c1390d", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-fault-tolerance.git#5.5.0.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "SmallRye Build Parent POM", + "externalReferences": [ + { + "url": "http://smallrye.io/smallrye-fault-tolerance-implementation-parent/smallrye-fault-tolerance-autoconfig-parent/smallrye-fault-tolerance-autoconfig-core", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-fault-tolerance/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-fault-tolerance.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUOPPWKP3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.3", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-fault-tolerance-core", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-core@5.5.0.redhat-00002?type=jar", + "type": "library", + "group": "io.smallrye", + "bom-ref": "pkg:maven/io.smallrye/smallrye-fault-tolerance-core@5.5.0.redhat-00002?type=jar", + "version": "5.5.0.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "dc7f47e955424d789a4c7435724bd36670c1390d", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-fault-tolerance.git#5.5.0.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "SmallRye Build Parent POM", + "externalReferences": [ + { + "url": "http://smallrye.io/smallrye-fault-tolerance-implementation-parent/smallrye-fault-tolerance-core", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-fault-tolerance/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-fault-tolerance.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUOPPWKP3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.3", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-fault-tolerance-context-propagation", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-context-propagation@5.5.0.redhat-00002?type=jar", + "type": "library", + "group": "io.smallrye", + "bom-ref": "pkg:maven/io.smallrye/smallrye-fault-tolerance-context-propagation@5.5.0.redhat-00002?type=jar", + "version": "5.5.0.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "dc7f47e955424d789a4c7435724bd36670c1390d", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-fault-tolerance.git#5.5.0.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "SmallRye Build Parent POM", + "externalReferences": [ + { + "url": "http://smallrye.io/smallrye-fault-tolerance-implementation-parent/smallrye-fault-tolerance-context-propagation", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-fault-tolerance/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-fault-tolerance.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUOPPWKP3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.3", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-fault-tolerance-mutiny", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-mutiny@5.5.0.redhat-00002?type=jar", + "type": "library", + "group": "io.smallrye", + "bom-ref": "pkg:maven/io.smallrye/smallrye-fault-tolerance-mutiny@5.5.0.redhat-00002?type=jar", + "version": "5.5.0.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "dc7f47e955424d789a4c7435724bd36670c1390d", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-fault-tolerance.git#5.5.0.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "SmallRye Build Parent POM", + "externalReferences": [ + { + "url": "http://smallrye.io/smallrye-fault-tolerance-implementation-parent/smallrye-fault-tolerance-mutiny", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-fault-tolerance/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-fault-tolerance.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUOPPWKP3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.3", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-smallrye-fault-tolerance-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-fault-tolerance-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-smallrye-fault-tolerance-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-smallrye-graphql", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-graphql@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-smallrye-graphql@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Create GraphQL Endpoints using the code-first approach from MicroProfile GraphQL", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-graphql-cdi", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-cdi@1.7.3.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye", + "bom-ref": "pkg:maven/io.smallrye/smallrye-graphql-cdi@1.7.3.redhat-00001?type=jar", + "version": "1.7.3.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "10df7649b41b9c006c78eeee3c88733bd8d5c609", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-graphql.git#1.7.3.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Allow lookup up of GraphQL Beans via CDI", + "externalReferences": [ + { + "url": "http://smallrye.io/smallrye-graphql-server-parent/smallrye-graphql-cdi", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-graphql/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-graphql.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A4TTNLPVFVIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.14.1-1-mx-mvn3.6.3:1.0.1", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-graphql", + "purl": "pkg:maven/io.smallrye/smallrye-graphql@1.7.3.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye", + "bom-ref": "pkg:maven/io.smallrye/smallrye-graphql@1.7.3.redhat-00001?type=jar", + "version": "1.7.3.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "10df7649b41b9c006c78eeee3c88733bd8d5c609", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-graphql.git#1.7.3.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Implementation of the server side of the spec", + "externalReferences": [ + { + "url": "http://smallrye.io/smallrye-graphql-server-parent/smallrye-graphql", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-graphql/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-graphql.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A4TTNLPVFVIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.14.1-1-mx-mvn3.6.3:1.0.1", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "graphql-java", + "purl": "pkg:maven/com.graphql-java/graphql-java@19.4.0.redhat-00001?type=jar", + "type": "library", + "group": "com.graphql-java", + "bom-ref": "pkg:maven/com.graphql-java/graphql-java@19.4.0.redhat-00001?type=jar", + "version": "19.4.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "bbb51591788de39254db08c8d688a4b2c458dedb", + "url": "https://code.engineering.redhat.com/gerrit/graphql-java/graphql-java.git#19.4.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "GraphqL Java", + "externalReferences": [ + { + "url": "https://github.com/graphql-java/graphql-java", + "type": "website" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/graphql-java/graphql-java.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AZGKSUADUDAAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3-gradle7.1.1:1.0.3", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "java-dataloader", + "purl": "pkg:maven/com.graphql-java/java-dataloader@3.2.0.redhat-00001?type=jar", + "type": "library", + "group": "com.graphql-java", + "bom-ref": "pkg:maven/com.graphql-java/java-dataloader@3.2.0.redhat-00001?type=jar", + "version": "3.2.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "0db08478c11a59d3ae1484e1c8ede83e9a5e77e9", + "url": "https://code.engineering.redhat.com/gerrit/graphql-java/java-dataloader.git#3.2.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "A pure Java 8 port of Facebook Dataloader", + "externalReferences": [ + { + "url": "https://github.com/graphql-java/java-dataloader", + "type": "website" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/graphql-java/java-dataloader.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/ATSYUQMG3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.3.9-gradle6.7:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-graphql-api", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-api@1.7.3.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye", + "bom-ref": "pkg:maven/io.smallrye/smallrye-graphql-api@1.7.3.redhat-00001?type=jar", + "version": "1.7.3.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "10df7649b41b9c006c78eeee3c88733bd8d5c609", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-graphql.git#1.7.3.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "SmallRye specific API, extending the MicroProfile api, allowing us to play with the api first before we move it to the spec", + "externalReferences": [ + { + "url": "http://smallrye.io/smallrye-graphql-server-parent/smallrye-graphql-api", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-graphql/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-graphql.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A4TTNLPVFVIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.14.1-1-mx-mvn3.6.3:1.0.1", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "microprofile-graphql-api", + "purl": "pkg:maven/org.eclipse.microprofile.graphql/microprofile-graphql-api@1.1.0.redhat-00010?type=jar", + "type": "library", + "group": "org.eclipse.microprofile.graphql", + "bom-ref": "pkg:maven/org.eclipse.microprofile.graphql/microprofile-graphql-api@1.1.0.redhat-00010?type=jar", + "version": "1.1.0.redhat-00010", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Code-first GraphQL APIs for MicroProfile :: API", + "externalReferences": [ + { + "url": "http://microprofile.io/microprofile-graphql-api", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/eclipse/microprofile-graphql/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/eclipse/microprofile-graphql.git", + "type": "vcs" + } + ] + }, + { + "name": "smallrye-graphql-schema-model", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-schema-model@1.7.3.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye", + "bom-ref": "pkg:maven/io.smallrye/smallrye-graphql-schema-model@1.7.3.redhat-00001?type=jar", + "version": "1.7.3.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "10df7649b41b9c006c78eeee3c88733bd8d5c609", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-graphql.git#1.7.3.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "A model that represents the schema", + "externalReferences": [ + { + "url": "http://smallrye.io/smallrye-graphql-common-parent/smallrye-graphql-schema-model", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-graphql/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-graphql.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A4TTNLPVFVIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.14.1-1-mx-mvn3.6.3:1.0.1", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-graphql-schema-builder", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-schema-builder@1.7.3.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye", + "bom-ref": "pkg:maven/io.smallrye/smallrye-graphql-schema-builder@1.7.3.redhat-00001?type=jar", + "version": "1.7.3.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "10df7649b41b9c006c78eeee3c88733bd8d5c609", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-graphql.git#1.7.3.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Creates the model from a Jandex index", + "externalReferences": [ + { + "url": "http://smallrye.io/smallrye-graphql-common-parent/smallrye-graphql-schema-builder", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-graphql/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-graphql.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A4TTNLPVFVIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.14.1-1-mx-mvn3.6.3:1.0.1", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-smallrye-graphql-client", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-graphql-client@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-smallrye-graphql-client@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Create GraphQL Clients", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-graphql-client-implementation-vertx", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-client-implementation-vertx@1.7.3.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye", + "bom-ref": "pkg:maven/io.smallrye/smallrye-graphql-client-implementation-vertx@1.7.3.redhat-00001?type=jar", + "version": "1.7.3.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "10df7649b41b9c006c78eeee3c88733bd8d5c609", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-graphql.git#1.7.3.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Client side of the GraphQL Implementation", + "externalReferences": [ + { + "url": "http://smallrye.io/smallrye-graphql-client-parent/smallrye-graphql-client-implementation-vertx", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-graphql/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-graphql.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A4TTNLPVFVIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.14.1-1-mx-mvn3.6.3:1.0.1", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-graphql-client", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-client@1.7.3.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye", + "bom-ref": "pkg:maven/io.smallrye/smallrye-graphql-client@1.7.3.redhat-00001?type=jar", + "version": "1.7.3.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "10df7649b41b9c006c78eeee3c88733bd8d5c609", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-graphql.git#1.7.3.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Client side of the GraphQL Implementation", + "externalReferences": [ + { + "url": "http://smallrye.io/smallrye-graphql-client-parent/smallrye-graphql-client", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-graphql/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-graphql.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A4TTNLPVFVIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.14.1-1-mx-mvn3.6.3:1.0.1", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-graphql-client-api", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-client-api@1.7.3.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye", + "bom-ref": "pkg:maven/io.smallrye/smallrye-graphql-client-api@1.7.3.redhat-00001?type=jar", + "version": "1.7.3.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "10df7649b41b9c006c78eeee3c88733bd8d5c609", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-graphql.git#1.7.3.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "SmallRye specific Client API, extending the MicroProfile client api, allowing us to play with the api first before we move it to the spec", + "externalReferences": [ + { + "url": "http://smallrye.io/smallrye-graphql-client-parent/smallrye-graphql-client-api", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-graphql/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-graphql.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A4TTNLPVFVIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.14.1-1-mx-mvn3.6.3:1.0.1", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-smallrye-graphql-client-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-graphql-client-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-smallrye-graphql-client-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-smallrye-graphql-client", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-graphql-client@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-smallrye-graphql-client:2.13.9.Final-redhat-00003#1", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Create GraphQL Clients", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-graphql-client-implementation-vertx", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-client-implementation-vertx@1.7.3.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye", + "bom-ref": "i.s:smallrye-graphql-client-implementation-vertx:1.7.3.redhat-00001#1", + "version": "1.7.3.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "10df7649b41b9c006c78eeee3c88733bd8d5c609", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-graphql.git#1.7.3.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Client side of the GraphQL Implementation", + "externalReferences": [ + { + "url": "http://smallrye.io/smallrye-graphql-client-parent/smallrye-graphql-client-implementation-vertx", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-graphql/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-graphql.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A4TTNLPVFVIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.14.1-1-mx-mvn3.6.3:1.0.1", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-graphql-client", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-client@1.7.3.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye", + "bom-ref": "i.s:smallrye-graphql-client:1.7.3.redhat-00001#1", + "version": "1.7.3.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "10df7649b41b9c006c78eeee3c88733bd8d5c609", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-graphql.git#1.7.3.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Client side of the GraphQL Implementation", + "externalReferences": [ + { + "url": "http://smallrye.io/smallrye-graphql-client-parent/smallrye-graphql-client", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-graphql/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-graphql.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A4TTNLPVFVIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.14.1-1-mx-mvn3.6.3:1.0.1", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-smallrye-graphql-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-graphql-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-smallrye-graphql-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "smallrye-graphql-ui-graphiql", + "purl": "pkg:maven/io.smallrye/smallrye-graphql-ui-graphiql@1.7.3?type=jar", + "type": "library", + "group": "io.smallrye", + "bom-ref": "pkg:maven/io.smallrye/smallrye-graphql-ui-graphiql@1.7.3?type=jar", + "version": "1.7.3", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "publisher": "central", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "UI Tools effectivly repackaged", + "externalReferences": [ + { + "url": "http://smallrye.io/smallrye-graphql-ui-parent/smallrye-graphql-ui-graphiql", + "type": "website" + }, + { + "url": "https://oss.sonatype.org/service/local/staging/deploy/maven2/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-graphql/issues", + "type": "issue-tracker" + }, + { + "url": "https://github.com/smallrye/smallrye-graphql", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-smallrye-health", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-health@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-smallrye-health@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Monitor service health", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-health", + "purl": "pkg:maven/io.smallrye/smallrye-health@3.3.0.redhat-00002?type=jar", + "type": "library", + "group": "io.smallrye", + "bom-ref": "pkg:maven/io.smallrye/smallrye-health@3.3.0.redhat-00002?type=jar", + "version": "3.3.0.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "7294aa9755ae959af28993fb3b666dd3ae67246c", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-health.git#3.3.0.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "SmallRye Parent POM", + "externalReferences": [ + { + "url": "http://smallrye.io/smallrye-health", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-health/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-health.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUOPX36Q3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.5", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-health-api", + "purl": "pkg:maven/io.smallrye/smallrye-health-api@3.3.0.redhat-00002?type=jar", + "type": "library", + "group": "io.smallrye", + "bom-ref": "pkg:maven/io.smallrye/smallrye-health-api@3.3.0.redhat-00002?type=jar", + "version": "3.3.0.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "7294aa9755ae959af28993fb3b666dd3ae67246c", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-health.git#3.3.0.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The feature API for the testing of features to be included in the specification.", + "externalReferences": [ + { + "url": "http://smallrye.io/smallrye-health-api", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-health/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-health.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUOPX36Q3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.5", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "microprofile-health-api", + "purl": "pkg:maven/org.eclipse.microprofile.health/microprofile-health-api@3.1.0.redhat-00002?type=jar", + "type": "library", + "group": "org.eclipse.microprofile.health", + "bom-ref": "pkg:maven/org.eclipse.microprofile.health/microprofile-health-api@3.1.0.redhat-00002?type=jar", + "version": "3.1.0.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "d90393a31c9ef720f265cd9b78316afe9f05ecd5", + "url": "http://code.engineering.redhat.com/gerrit/eclipse/microprofile-health.git#3.1.0.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "MicroProfile Health :: API", + "externalReferences": [ + { + "url": "https://microprofile.io/project/eclipse/microprofile-health/microprofile-health-api", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/eclipse/microprofile-health/issues", + "type": "issue-tracker" + }, + { + "url": "http://code.engineering.redhat.com/gerrit/eclipse/microprofile-health.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/APBHDNDJEPIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-health-provided-checks", + "purl": "pkg:maven/io.smallrye/smallrye-health-provided-checks@3.3.0.redhat-00002?type=jar", + "type": "library", + "group": "io.smallrye", + "bom-ref": "pkg:maven/io.smallrye/smallrye-health-provided-checks@3.3.0.redhat-00002?type=jar", + "version": "3.3.0.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "7294aa9755ae959af28993fb3b666dd3ae67246c", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-health.git#3.3.0.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "SmallRye Parent POM", + "externalReferences": [ + { + "url": "http://smallrye.io/smallrye-health-provided-checks", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-health/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-health.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUOPX36Q3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.5", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-smallrye-health-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-health-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-smallrye-health-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-smallrye-health", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-health@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-smallrye-health:2.13.9.Final-redhat-00003#1", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Monitor service health", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-health", + "purl": "pkg:maven/io.smallrye/smallrye-health@3.3.0.redhat-00002?type=jar", + "type": "library", + "group": "io.smallrye", + "bom-ref": "i.s:smallrye-health:3.3.0.redhat-00002#1", + "version": "3.3.0.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "7294aa9755ae959af28993fb3b666dd3ae67246c", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-health.git#3.3.0.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "SmallRye Parent POM", + "externalReferences": [ + { + "url": "http://smallrye.io/smallrye-health", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-health/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-health.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUOPX36Q3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.5", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-health-provided-checks", + "purl": "pkg:maven/io.smallrye/smallrye-health-provided-checks@3.3.0.redhat-00002?type=jar", + "type": "library", + "group": "io.smallrye", + "bom-ref": "i.s:smallrye-health-provided-checks:3.3.0.redhat-00002#1", + "version": "3.3.0.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "7294aa9755ae959af28993fb3b666dd3ae67246c", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-health.git#3.3.0.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "SmallRye Parent POM", + "externalReferences": [ + { + "url": "http://smallrye.io/smallrye-health-provided-checks", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-health/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-health.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUOPX36Q3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.5", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-smallrye-openapi-spi", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-openapi-spi@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-smallrye-openapi-spi@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-open-api-core", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-core@2.2.1.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye", + "bom-ref": "pkg:maven/io.smallrye/smallrye-open-api-core@2.2.1.redhat-00001?type=jar", + "version": "2.2.1.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "634a5b5dafd188a34e4ed6737fde8600138f5c5a", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-open-api.git#2.2.1.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "SmallRye Parent POM", + "externalReferences": [ + { + "url": "http://smallrye.io/smallrye-open-api-core", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-open-api/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-open-api.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUOOMUQO3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-nodejs16-npm8:1.0.3", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "microprofile-openapi-api", + "purl": "pkg:maven/org.eclipse.microprofile.openapi/microprofile-openapi-api@2.0.1.redhat-00001?type=jar", + "type": "library", + "group": "org.eclipse.microprofile.openapi", + "bom-ref": "pkg:maven/org.eclipse.microprofile.openapi/microprofile-openapi-api@2.0.1.redhat-00001?type=jar", + "version": "2.0.1.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "e205d09ab82490b32c95ee470b712c53a62f152b", + "url": "https://code.engineering.redhat.com/gerrit/eclipse/microprofile-open-api.git#2.0.1.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "MicroProfile OpenAPI API :: API", + "externalReferences": [ + { + "url": "http://microprofile.io/microprofile-openapi-api", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/eclipse/microprofile-open-api/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/eclipse/microprofile-open-api.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AQF3JTX46HAAC", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.3", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-health-ui", + "purl": "pkg:maven/io.smallrye/smallrye-health-ui@3.3.0.redhat-00002?type=jar", + "type": "library", + "group": "io.smallrye", + "bom-ref": "pkg:maven/io.smallrye/smallrye-health-ui@3.3.0.redhat-00002?type=jar", + "version": "3.3.0.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "7294aa9755ae959af28993fb3b666dd3ae67246c", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-health.git#3.3.0.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "SmallRye Parent POM", + "externalReferences": [ + { + "url": "http://smallrye.io/smallrye-health-ui", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-health/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-health.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUOPX36Q3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.5", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-smallrye-jwt", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-jwt@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-smallrye-jwt@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Secure your applications with JSON Web Token", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-smallrye-jwt-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-jwt-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-smallrye-jwt-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-smallrye-metrics", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-metrics@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-smallrye-metrics@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Expose metrics for your services", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-metrics", + "purl": "pkg:maven/io.smallrye/smallrye-metrics@3.0.5.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye", + "bom-ref": "pkg:maven/io.smallrye/smallrye-metrics@3.0.5.redhat-00001?type=jar", + "version": "3.0.5.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c70f1c231469dcecc716b764eb5bac8c8d92a11b", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-metrics.git#3.0.5.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "SmallRye Parent POM", + "externalReferences": [ + { + "url": "http://smallrye.io/smallrye-metrics", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-metrics/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-metrics.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/ARYXZY2YLVYAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.3", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-smallrye-metrics-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-metrics-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-smallrye-metrics-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-smallrye-metrics-spi", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-metrics-spi@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-smallrye-metrics-spi@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-smallrye-openapi", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-openapi@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-smallrye-openapi@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Document your REST APIs with OpenAPI - comes with Swagger UI", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-swagger-ui", + "purl": "pkg:maven/io.quarkus/quarkus-swagger-ui@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-swagger-ui@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Swagger UI", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-smallrye-openapi-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-openapi-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-smallrye-openapi-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-smallrye-openapi-common-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-openapi-common-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-smallrye-openapi-common-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-swagger-ui-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-swagger-ui-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-swagger-ui-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-open-api-ui", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-ui@2.2.1.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye", + "bom-ref": "pkg:maven/io.smallrye/smallrye-open-api-ui@2.2.1.redhat-00001?type=jar", + "version": "2.2.1.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "634a5b5dafd188a34e4ed6737fde8600138f5c5a", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-open-api.git#2.2.1.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "SmallRye Parent POM", + "externalReferences": [ + { + "url": "http://smallrye.io/smallrye-open-api-ui-parent/smallrye-open-api-ui", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-open-api/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-open-api.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUOOMUQO3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-nodejs16-npm8:1.0.3", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-open-api-jaxrs", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-jaxrs@2.2.1.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye", + "bom-ref": "pkg:maven/io.smallrye/smallrye-open-api-jaxrs@2.2.1.redhat-00001?type=jar", + "version": "2.2.1.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "634a5b5dafd188a34e4ed6737fde8600138f5c5a", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-open-api.git#2.2.1.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "SmallRye Parent POM", + "externalReferences": [ + { + "url": "http://smallrye.io/smallrye-open-api-jaxrs", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-open-api/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-open-api.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUOOMUQO3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-nodejs16-npm8:1.0.3", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-open-api-spring", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-spring@2.2.1.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye", + "bom-ref": "pkg:maven/io.smallrye/smallrye-open-api-spring@2.2.1.redhat-00001?type=jar", + "version": "2.2.1.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "634a5b5dafd188a34e4ed6737fde8600138f5c5a", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-open-api.git#2.2.1.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "SmallRye Parent POM", + "externalReferences": [ + { + "url": "http://smallrye.io/smallrye-open-api-spring", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-open-api/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-open-api.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUOOMUQO3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-nodejs16-npm8:1.0.3", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-open-api-vertx", + "purl": "pkg:maven/io.smallrye/smallrye-open-api-vertx@2.2.1.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye", + "bom-ref": "pkg:maven/io.smallrye/smallrye-open-api-vertx@2.2.1.redhat-00001?type=jar", + "version": "2.2.1.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "634a5b5dafd188a34e4ed6737fde8600138f5c5a", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-open-api.git#2.2.1.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "SmallRye Parent POM", + "externalReferences": [ + { + "url": "http://smallrye.io/smallrye-open-api-vertx", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-open-api/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-open-api.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUOOMUQO3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-nodejs16-npm8:1.0.3", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-smallrye-opentracing", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-opentracing@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-smallrye-opentracing@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Trace your services with SmallRye OpenTracing", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-arc", + "purl": "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-arc:2.13.9.Final-redhat-00003#1", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build time CDI dependency injection", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-core", + "purl": "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-core:2.13.9.Final-redhat-00003#1", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Quarkus core components", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "jakarta.enterprise.cdi-api", + "purl": "pkg:maven/jakarta.enterprise/jakarta.enterprise.cdi-api@2.0.2.redhat-00005?type=jar", + "type": "library", + "group": "jakarta.enterprise", + "bom-ref": "j.e:jakarta.enterprise.cdi-api:2.0.2.redhat-00005#1", + "version": "2.0.2.redhat-00005", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "11d3841d1308bd6695a3ddeb7c9babae8b699218", + "url": "https://code.engineering.redhat.com/gerrit/eclipse-ee4j/cdi.git#2.0.2.redhat-00005" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "APIs for Jakarta CDI (Contexts and Dependency Injection)", + "externalReferences": [ + { + "url": "http://cdi-spec.org", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/eclipse-ee4j/cdi/issues", + "type": "issue-tracker" + }, + { + "url": "https://dev.eclipse.org/mhonarc/lists/jakarta.ee-community/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/eclipse-ee4j/cdi.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A3Y4TMIOKMYAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.3", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "arc", + "purl": "pkg:maven/io.quarkus.arc/arc@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus.arc", + "bom-ref": "i.q.a:arc:2.13.9.Final-redhat-00003#1", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Provides, via submodules, a base configuration for JBoss project builds, as well as a derived configuration supporting multi-release JARs", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.redhat.com/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-jaeger", + "purl": "pkg:maven/io.quarkus/quarkus-jaeger@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-jaeger@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Trace your services with Jaeger", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "jaeger-core", + "purl": "pkg:maven/io.jaegertracing/jaeger-core@1.8.1.redhat-00002?type=jar", + "type": "library", + "group": "io.jaegertracing", + "bom-ref": "pkg:maven/io.jaegertracing/jaeger-core@1.8.1.redhat-00002?type=jar", + "version": "1.8.1.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "260e299ca8b5fa1b4fae73ed0a7569d54103da10", + "url": "https://code.engineering.redhat.com/gerrit/jaegertracing/jaeger-client-java.git#1.8.1.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Jaeger Java bindings for OpenTracing API", + "externalReferences": [ + { + "url": "https://github.com/jaegertracing/jaeger-client-java", + "type": "website" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/jaegertracing/jaeger-client-java.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AVQN5RXLS3YAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.0-gradle5.6.2:1.0.7", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "opentracing-api", + "purl": "pkg:maven/io.opentracing/opentracing-api@0.33.0.redhat-00001?type=jar", + "type": "library", + "group": "io.opentracing", + "bom-ref": "pkg:maven/io.opentracing/opentracing-api@0.33.0.redhat-00001?type=jar", + "version": "0.33.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "ca54cd393a3d63b1c5e3176487730188e8d4c278", + "url": "http://code.engineering.redhat.com/gerrit/opentracing/opentracing-java.git#0.33.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "OpenTracing Java API", + "externalReferences": [ + { + "url": "https://github.com/opentracing/opentracing-java/opentracing-api", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/opentracing/opentracing-java/issues", + "type": "issue-tracker" + }, + { + "url": "http://code.engineering.redhat.com/gerrit/opentracing/opentracing-java.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/26055", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.3.9:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "opentracing-util", + "purl": "pkg:maven/io.opentracing/opentracing-util@0.33.0.redhat-00001?type=jar", + "type": "library", + "group": "io.opentracing", + "bom-ref": "pkg:maven/io.opentracing/opentracing-util@0.33.0.redhat-00001?type=jar", + "version": "0.33.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "ca54cd393a3d63b1c5e3176487730188e8d4c278", + "url": "http://code.engineering.redhat.com/gerrit/opentracing/opentracing-java.git#0.33.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "OpenTracing utilities", + "externalReferences": [ + { + "url": "https://github.com/opentracing/opentracing-java/opentracing-util", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/opentracing/opentracing-java/issues", + "type": "issue-tracker" + }, + { + "url": "http://code.engineering.redhat.com/gerrit/opentracing/opentracing-java.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/26055", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.3.9:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "opentracing-noop", + "purl": "pkg:maven/io.opentracing/opentracing-noop@0.33.0.redhat-00001?type=jar", + "type": "library", + "group": "io.opentracing", + "bom-ref": "pkg:maven/io.opentracing/opentracing-noop@0.33.0.redhat-00001?type=jar", + "version": "0.33.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "ca54cd393a3d63b1c5e3176487730188e8d4c278", + "url": "http://code.engineering.redhat.com/gerrit/opentracing/opentracing-java.git#0.33.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "OpenTracing NoOp", + "externalReferences": [ + { + "url": "https://github.com/opentracing/opentracing-java/opentracing-noop", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/opentracing/opentracing-java/issues", + "type": "issue-tracker" + }, + { + "url": "http://code.engineering.redhat.com/gerrit/opentracing/opentracing-java.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/26055", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.3.9:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "jaeger-thrift", + "purl": "pkg:maven/io.jaegertracing/jaeger-thrift@1.8.1.redhat-00002?type=jar", + "type": "library", + "group": "io.jaegertracing", + "bom-ref": "pkg:maven/io.jaegertracing/jaeger-thrift@1.8.1.redhat-00002?type=jar", + "version": "1.8.1.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "260e299ca8b5fa1b4fae73ed0a7569d54103da10", + "url": "https://code.engineering.redhat.com/gerrit/jaegertracing/jaeger-client-java.git#1.8.1.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Jaeger Java bindings for OpenTracing API", + "externalReferences": [ + { + "url": "https://github.com/jaegertracing/jaeger-client-java", + "type": "website" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/jaegertracing/jaeger-client-java.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AVQN5RXLS3YAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.0-gradle5.6.2:1.0.7", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "libthrift", + "purl": "pkg:maven/org.apache.thrift/libthrift@0.15.0.redhat-00001?type=jar", + "type": "library", + "group": "org.apache.thrift", + "bom-ref": "pkg:maven/org.apache.thrift/libthrift@0.15.0.redhat-00001?type=jar", + "version": "0.15.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "5e30e2cd7b813a58d34fc13b57b445f25d2b19e3", + "url": "https://code.engineering.redhat.com/gerrit/apache/thrift.git#0.15.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Thrift is a software framework for scalable cross-language services development.", + "externalReferences": [ + { + "url": "http://thrift.apache.org", + "type": "website" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/apache/thrift.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU36EA6JDVQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.0-gradle5.6.2:1.0.5", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-jsonp", + "purl": "pkg:maven/io.quarkus/quarkus-jsonp@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-jsonp:2.13.9.Final-redhat-00003#2", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "JSON Processing support", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-fault-tolerance-tracing-propagation", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-tracing-propagation@5.5.0.redhat-00002?type=jar", + "type": "library", + "group": "io.smallrye", + "bom-ref": "pkg:maven/io.smallrye/smallrye-fault-tolerance-tracing-propagation@5.5.0.redhat-00002?type=jar", + "version": "5.5.0.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "dc7f47e955424d789a4c7435724bd36670c1390d", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-fault-tolerance.git#5.5.0.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "SmallRye Build Parent POM", + "externalReferences": [ + { + "url": "http://smallrye.io/smallrye-fault-tolerance-implementation-parent/smallrye-fault-tolerance-tracing-propagation", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-fault-tolerance/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-fault-tolerance.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUOPPWKP3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.3", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-fault-tolerance", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance@5.5.0.redhat-00002?type=jar", + "type": "library", + "group": "io.smallrye", + "bom-ref": "i.s:smallrye-fault-tolerance:5.5.0.redhat-00002#1", + "version": "5.5.0.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "dc7f47e955424d789a4c7435724bd36670c1390d", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-fault-tolerance.git#5.5.0.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "SmallRye Build Parent POM", + "externalReferences": [ + { + "url": "http://smallrye.io/smallrye-fault-tolerance-implementation-parent/smallrye-fault-tolerance", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-fault-tolerance/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-fault-tolerance.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUOPPWKP3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.3", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-fault-tolerance-api", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-api@5.5.0.redhat-00002?type=jar", + "type": "library", + "group": "io.smallrye", + "bom-ref": "i.s:smallrye-fault-tolerance-api:5.5.0.redhat-00002#1", + "version": "5.5.0.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "dc7f47e955424d789a4c7435724bd36670c1390d", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-fault-tolerance.git#5.5.0.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "SmallRye Build Parent POM", + "externalReferences": [ + { + "url": "http://smallrye.io/smallrye-fault-tolerance-api", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-fault-tolerance/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-fault-tolerance.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUOPPWKP3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.3", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-fault-tolerance-autoconfig-core", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-autoconfig-core@5.5.0.redhat-00002?type=jar", + "type": "library", + "group": "io.smallrye", + "bom-ref": "i.s:smallrye-fault-tolerance-autoconfig-core:5.5.0.redhat-00002#1", + "version": "5.5.0.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "dc7f47e955424d789a4c7435724bd36670c1390d", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-fault-tolerance.git#5.5.0.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "SmallRye Build Parent POM", + "externalReferences": [ + { + "url": "http://smallrye.io/smallrye-fault-tolerance-implementation-parent/smallrye-fault-tolerance-autoconfig-parent/smallrye-fault-tolerance-autoconfig-core", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-fault-tolerance/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-fault-tolerance.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUOPPWKP3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.3", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-fault-tolerance-core", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-core@5.5.0.redhat-00002?type=jar", + "type": "library", + "group": "io.smallrye", + "bom-ref": "i.s:smallrye-fault-tolerance-core:5.5.0.redhat-00002#1", + "version": "5.5.0.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "dc7f47e955424d789a4c7435724bd36670c1390d", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-fault-tolerance.git#5.5.0.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "SmallRye Build Parent POM", + "externalReferences": [ + { + "url": "http://smallrye.io/smallrye-fault-tolerance-implementation-parent/smallrye-fault-tolerance-core", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-fault-tolerance/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-fault-tolerance.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUOPPWKP3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.3", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-fault-tolerance-context-propagation", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-context-propagation@5.5.0.redhat-00002?type=jar", + "type": "library", + "group": "io.smallrye", + "bom-ref": "i.s:smallrye-fault-tolerance-context-propagation:5.5.0.redhat-00002#1", + "version": "5.5.0.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "dc7f47e955424d789a4c7435724bd36670c1390d", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-fault-tolerance.git#5.5.0.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "SmallRye Build Parent POM", + "externalReferences": [ + { + "url": "http://smallrye.io/smallrye-fault-tolerance-implementation-parent/smallrye-fault-tolerance-context-propagation", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-fault-tolerance/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-fault-tolerance.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUOPPWKP3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.3", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-opentracing", + "purl": "pkg:maven/io.smallrye/smallrye-opentracing@2.1.1.redhat-00002?type=jar", + "type": "library", + "group": "io.smallrye", + "bom-ref": "pkg:maven/io.smallrye/smallrye-opentracing@2.1.1.redhat-00002?type=jar", + "version": "2.1.1.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c5f48f465842364365e726bd26ddbc02ba79b128", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-opentracing.git#2.1.1.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "SmallRye Parent POM", + "externalReferences": [ + { + "url": "http://smallrye.io/smallrye-opentracing", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-opentracing/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-opentracing.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUOQFJJW3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-opentracing-contrib", + "purl": "pkg:maven/io.smallrye/smallrye-opentracing-contrib@2.1.1.redhat-00002?type=jar", + "type": "library", + "group": "io.smallrye", + "bom-ref": "pkg:maven/io.smallrye/smallrye-opentracing-contrib@2.1.1.redhat-00002?type=jar", + "version": "2.1.1.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c5f48f465842364365e726bd26ddbc02ba79b128", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-opentracing.git#2.1.1.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Fork of io.opentracing.contrib projects", + "externalReferences": [ + { + "url": "http://smallrye.io/smallrye-opentracing-contrib", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-opentracing/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-opentracing.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUOQFJJW3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "opentracing-concurrent", + "purl": "pkg:maven/io.opentracing.contrib/opentracing-concurrent@0.4.0.redhat-00002?type=jar", + "type": "library", + "group": "io.opentracing.contrib", + "bom-ref": "pkg:maven/io.opentracing.contrib/opentracing-concurrent@0.4.0.redhat-00002?type=jar", + "version": "0.4.0.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "f81a56fe012c8e8ed4dd40c75e4d67df1221180a", + "url": "http://code.engineering.redhat.com/gerrit/opentracing-contrib/java-concurrent.git#0.4.0.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "OpenTracing instrumentation for JDK concurrent package", + "externalReferences": [ + { + "url": "https://github.com/opentracing-contrib/java-concurrent", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "http://code.engineering.redhat.com/gerrit/opentracing-contrib/java-concurrent.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/90437", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.1", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "microprofile-opentracing-api", + "purl": "pkg:maven/org.eclipse.microprofile.opentracing/microprofile-opentracing-api@2.0.0.redhat-00002?type=jar", + "type": "library", + "group": "org.eclipse.microprofile.opentracing", + "bom-ref": "pkg:maven/org.eclipse.microprofile.opentracing/microprofile-opentracing-api@2.0.0.redhat-00002?type=jar", + "version": "2.0.0.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "48e70e3b26632a216fe17a6394f84fcc27f42e95", + "url": "http://code.engineering.redhat.com/gerrit/eclipse/microprofile-opentracing.git#2.0.0.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "OpenTracing behaviors and APIs for MicroProfile :: API", + "externalReferences": [ + { + "url": "http://microprofile.io/microprofile-opentracing-api", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/eclipse/microprofile-opentracing/issues", + "type": "issue-tracker" + }, + { + "url": "http://code.engineering.redhat.com/gerrit/eclipse/microprofile-opentracing.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/90438", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.1", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-smallrye-opentracing-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-opentracing-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-smallrye-opentracing-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-jaeger-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-jaeger-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-jaeger-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-jaeger", + "purl": "pkg:maven/io.quarkus/quarkus-jaeger@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-jaeger:2.13.9.Final-redhat-00003#1", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Trace your services with Jaeger", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-smallrye-opentracing", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-opentracing@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-smallrye-opentracing:2.13.9.Final-redhat-00003#1", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Trace your services with SmallRye OpenTracing", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-fault-tolerance-tracing-propagation", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-tracing-propagation@5.5.0.redhat-00002?type=jar", + "type": "library", + "group": "io.smallrye", + "bom-ref": "i.s:smallrye-fault-tolerance-tracing-propagation:5.5.0.redhat-00002#1", + "version": "5.5.0.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "dc7f47e955424d789a4c7435724bd36670c1390d", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-fault-tolerance.git#5.5.0.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "SmallRye Build Parent POM", + "externalReferences": [ + { + "url": "http://smallrye.io/smallrye-fault-tolerance-implementation-parent/smallrye-fault-tolerance-tracing-propagation", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-fault-tolerance/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-fault-tolerance.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUOPPWKP3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.3", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-smallrye-reactive-messaging", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Produce and consume messages and implement event driven and data streaming applications", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-smallrye-reactive-messaging-kotlin", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-kotlin@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-kotlin@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-reactive-messaging-api", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-api@3.21.0.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye.reactive", + "bom-ref": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-api@3.21.0.redhat-00001?type=jar", + "version": "3.21.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "d8d06a0ec78562137902c3430452506842621372", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-reactive-messaging.git#3.21.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "An implementation of the MicroProfile Reactive Streams Messaging specification", + "externalReferences": [ + { + "url": "https://smallrye.io/smallrye-reactive-messaging-api", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-reactive-messaging/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-reactive-messaging.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU3MXWTMTVQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.14.1-1-mx-mvn3.6.3:1.0.1", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-reactive-messaging-health", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-health@3.21.0.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye.reactive", + "bom-ref": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-health@3.21.0.redhat-00001?type=jar", + "version": "3.21.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "d8d06a0ec78562137902c3430452506842621372", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-reactive-messaging.git#3.21.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "An implementation of the MicroProfile Reactive Streams Messaging specification", + "externalReferences": [ + { + "url": "https://smallrye.io/smallrye-reactive-messaging-health", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-reactive-messaging/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-reactive-messaging.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU3MXWTMTVQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.14.1-1-mx-mvn3.6.3:1.0.1", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-reactive-messaging-provider", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-provider@3.21.0.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye.reactive", + "bom-ref": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-provider@3.21.0.redhat-00001?type=jar", + "version": "3.21.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "d8d06a0ec78562137902c3430452506842621372", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-reactive-messaging.git#3.21.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "An implementation of the MicroProfile Reactive Streams Messaging specification", + "externalReferences": [ + { + "url": "https://smallrye.io/smallrye-reactive-messaging-provider", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-reactive-messaging/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-reactive-messaging.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU3MXWTMTVQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.14.1-1-mx-mvn3.6.3:1.0.1", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-smallrye-reactive-messaging-amqp", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-amqp@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-amqp@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Connect to AMQP with Reactive Messaging", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-smallrye-reactive-messaging", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-smallrye-reactive-messaging:2.13.9.Final-redhat-00003#1", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Produce and consume messages and implement event driven and data streaming applications", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-smallrye-reactive-messaging-kotlin", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-kotlin@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-smallrye-reactive-messaging-kotlin:2.13.9.Final-redhat-00003#1", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "vertx-web", + "purl": "pkg:maven/io.vertx/vertx-web@4.3.4.redhat-00008?type=jar", + "type": "library", + "group": "io.vertx", + "bom-ref": "i.v:vertx-web:4.3.4.redhat-00008#1", + "version": "4.3.4.redhat-00008", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + }, + { + "license": { + "id": "EPL-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "08d85a10f9bb1681f542692bf3c66b66deb069e7", + "url": "https://code.engineering.redhat.com/gerrit/vert-x3/vertx-web.git#vertx-4.3.4.GA-1" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Sonatype helps open source projects to set up Maven repositories on https://oss.sonatype.org/", + "externalReferences": [ + { + "url": "http://nexus.sonatype.org/oss-repository-hosting.html/vertx-parent/vertx-ext/vertx-ext-parent/vertx-web-parent/vertx-web", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/vert-x3/vertx-web.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AZB7PSY53RQBW", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "vertx-auth-common", + "purl": "pkg:maven/io.vertx/vertx-auth-common@4.3.4.redhat-00008?type=jar", + "type": "library", + "group": "io.vertx", + "bom-ref": "i.v:vertx-auth-common:4.3.4.redhat-00008#1", + "version": "4.3.4.redhat-00008", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + }, + { + "license": { + "id": "EPL-1.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "589f0d4b30490077a4cfbbf79f9dcd1e16e28f61", + "url": "https://code.engineering.redhat.com/gerrit/vert-x3/vertx-auth.git#vertx-4.3.4.GA-1" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Sonatype helps open source projects to set up Maven repositories on https://oss.sonatype.org/", + "externalReferences": [ + { + "url": "http://nexus.sonatype.org/oss-repository-hosting.html/vertx-parent/vertx-ext/vertx-ext-parent/vertx-auth/vertx-auth-common", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/vert-x3/vertx-auth.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AZB7PSY53RQAO", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "vertx-core", + "purl": "pkg:maven/io.vertx/vertx-core@4.3.4.redhat-00008?type=jar", + "type": "library", + "group": "io.vertx", + "bom-ref": "i.v:vertx-core:4.3.4.redhat-00008#1", + "version": "4.3.4.redhat-00008", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + }, + { + "license": { + "id": "EPL-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "857cbc1fe49f191d749bd88d9955b41bc170a80d", + "url": "https://code.engineering.redhat.com/gerrit/eclipse/vert.x.git#vertx-4.3.4.GA-1" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Sonatype helps open source projects to set up Maven repositories on https://oss.sonatype.org/", + "externalReferences": [ + { + "url": "http://nexus.sonatype.org/oss-repository-hosting.html/vertx-parent/vertx-core", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/eclipse/vert.x.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AZB7PSY53RQBE", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "vertx-bridge-common", + "purl": "pkg:maven/io.vertx/vertx-bridge-common@4.3.4.redhat-00008?type=jar", + "type": "library", + "group": "io.vertx", + "bom-ref": "i.v:vertx-bridge-common:4.3.4.redhat-00008#1", + "version": "4.3.4.redhat-00008", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + }, + { + "license": { + "id": "EPL-1.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "989b6b5a1d210402674bb372747b96e716701e0a", + "url": "https://code.engineering.redhat.com/gerrit/vert-x3/vertx-bridge-common.git#vertx-4.3.4.GA-1" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Vert.x 3 eventbus bridge common configuration", + "externalReferences": [ + { + "url": "http://nexus.sonatype.org/oss-repository-hosting.html/vertx-parent/vertx-ext/vertx-ext-parent/vertx-bridge-common", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/vert-x3/vertx-bridge-common.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AZB7PSY53RQAE", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "vertx-web-common", + "purl": "pkg:maven/io.vertx/vertx-web-common@4.3.4.redhat-00008?type=jar", + "type": "library", + "group": "io.vertx", + "bom-ref": "i.v:vertx-web-common:4.3.4.redhat-00008#1", + "version": "4.3.4.redhat-00008", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + }, + { + "license": { + "id": "EPL-1.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "08d85a10f9bb1681f542692bf3c66b66deb069e7", + "url": "https://code.engineering.redhat.com/gerrit/vert-x3/vertx-web.git#vertx-4.3.4.GA-1" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Sonatype helps open source projects to set up Maven repositories on https://oss.sonatype.org/", + "externalReferences": [ + { + "url": "http://nexus.sonatype.org/oss-repository-hosting.html/vertx-parent/vertx-ext/vertx-ext-parent/vertx-web-parent/vertx-web-common", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/vert-x3/vertx-web.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AZB7PSY53RQBW", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-vertx", + "purl": "pkg:maven/io.quarkus/quarkus-vertx@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-vertx:2.13.9.Final-redhat-00003#1", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Write reactive applications with the Vert.x API", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-common-vertx-context", + "purl": "pkg:maven/io.smallrye.common/smallrye-common-vertx-context@1.13.1.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye.common", + "bom-ref": "i.s.c:smallrye-common-vertx-context:1.13.1.redhat-00001#1", + "version": "1.13.1.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "8a344873dd02ed0f6205dd90eab71ddfc5ef7c6d", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-common.git#1.13.1.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "A set of utility classes to ease the usage of Vert.x context locals and duplicated contexts.", + "externalReferences": [ + { + "url": "http://smallrye.io/smallrye-common-vertx-context", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-common/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-common.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/ATTXFTRCLVQAK", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-mutiny-vertx-core", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-core@2.27.0.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye.reactive", + "bom-ref": "i.s.r:smallrye-mutiny-vertx-core:2.27.0.redhat-00001#1", + "version": "2.27.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "109a2da366d4e52568be8ecbeafd802e9d1091fa", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-mutiny-vertx-bindings.git#2.27.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "SmallRye Build Parent POM", + "externalReferences": [ + { + "url": "https://smallrye.io/smallrye-mutiny-vertx-bindings/vertx-mutiny-clients/smallrye-mutiny-vertx-core", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-mutiny-vertx-bindings/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-mutiny-vertx-bindings.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU3MITW53VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-mutiny-vertx-runtime", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-runtime@2.27.0.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye.reactive", + "bom-ref": "i.s.r:smallrye-mutiny-vertx-runtime:2.27.0.redhat-00001#1", + "version": "2.27.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "109a2da366d4e52568be8ecbeafd802e9d1091fa", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-mutiny-vertx-bindings.git#2.27.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "SmallRye Build Parent POM", + "externalReferences": [ + { + "url": "https://smallrye.io/smallrye-mutiny-vertx-bindings/vertx-mutiny-clients/smallrye-mutiny-vertx-runtime", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-mutiny-vertx-bindings/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-mutiny-vertx-bindings.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU3MITW53VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "vertx-mutiny-generator", + "purl": "pkg:maven/io.smallrye.reactive/vertx-mutiny-generator@2.27.0.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye.reactive", + "bom-ref": "i.s.r:vertx-mutiny-generator:2.27.0.redhat-00001#1", + "version": "2.27.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "109a2da366d4e52568be8ecbeafd802e9d1091fa", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-mutiny-vertx-bindings.git#2.27.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "SmallRye Build Parent POM", + "externalReferences": [ + { + "url": "https://smallrye.io/smallrye-mutiny-vertx-bindings/vertx-mutiny-generator", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-mutiny-vertx-bindings/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-mutiny-vertx-bindings.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU3MITW53VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-reactive-messaging-health", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-health@3.21.0.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye.reactive", + "bom-ref": "i.s.r:smallrye-reactive-messaging-health:3.21.0.redhat-00001#1", + "version": "3.21.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "d8d06a0ec78562137902c3430452506842621372", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-reactive-messaging.git#3.21.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "An implementation of the MicroProfile Reactive Streams Messaging specification", + "externalReferences": [ + { + "url": "https://smallrye.io/smallrye-reactive-messaging-health", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-reactive-messaging/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-reactive-messaging.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU3MXWTMTVQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.14.1-1-mx-mvn3.6.3:1.0.1", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-reactive-messaging-provider", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-provider@3.21.0.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye.reactive", + "bom-ref": "i.s.r:smallrye-reactive-messaging-provider:3.21.0.redhat-00001#1", + "version": "3.21.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "d8d06a0ec78562137902c3430452506842621372", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-reactive-messaging.git#3.21.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "An implementation of the MicroProfile Reactive Streams Messaging specification", + "externalReferences": [ + { + "url": "https://smallrye.io/smallrye-reactive-messaging-provider", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-reactive-messaging/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-reactive-messaging.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU3MXWTMTVQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.14.1-1-mx-mvn3.6.3:1.0.1", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-reactive-messaging-amqp", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-amqp@3.21.0.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye.reactive", + "bom-ref": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-amqp@3.21.0.redhat-00001?type=jar", + "version": "3.21.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "d8d06a0ec78562137902c3430452506842621372", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-reactive-messaging.git#3.21.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "An implementation of the MicroProfile Reactive Streams Messaging specification", + "externalReferences": [ + { + "url": "https://smallrye.io/smallrye-reactive-messaging-amqp", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-reactive-messaging/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-reactive-messaging.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU3MXWTMTVQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.14.1-1-mx-mvn3.6.3:1.0.1", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-mutiny-vertx-amqp-client", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-amqp-client@2.27.0.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye.reactive", + "bom-ref": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-amqp-client@2.27.0.redhat-00001?type=jar", + "version": "2.27.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "109a2da366d4e52568be8ecbeafd802e9d1091fa", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-mutiny-vertx-bindings.git#2.27.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "SmallRye Build Parent POM", + "externalReferences": [ + { + "url": "https://smallrye.io/smallrye-mutiny-vertx-bindings/vertx-mutiny-clients/smallrye-mutiny-vertx-amqp-client", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-mutiny-vertx-bindings/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-mutiny-vertx-bindings.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU3MITW53VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "vertx-amqp-client", + "purl": "pkg:maven/io.vertx/vertx-amqp-client@4.3.4.redhat-00008?type=jar", + "type": "library", + "group": "io.vertx", + "bom-ref": "pkg:maven/io.vertx/vertx-amqp-client@4.3.4.redhat-00008?type=jar", + "version": "4.3.4.redhat-00008", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + }, + { + "license": { + "id": "EPL-1.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "a1b1e6cbae3a352b1d11d3fa1d90857e2c7c414f", + "url": "https://code.engineering.redhat.com/gerrit/vert-x3/vertx-amqp-client.git#vertx-4.3.4.GA-1" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Sonatype helps open source projects to set up Maven repositories on https://oss.sonatype.org/", + "externalReferences": [ + { + "url": "http://nexus.sonatype.org/oss-repository-hosting.html/vertx-parent/vertx-ext/vertx-ext-parent/vertx-amqp-client", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/vert-x3/vertx-amqp-client.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AZB7PSY53RQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "vertx-proton", + "purl": "pkg:maven/io.vertx/vertx-proton@4.3.4.redhat-00008?type=jar", + "type": "library", + "group": "io.vertx", + "bom-ref": "pkg:maven/io.vertx/vertx-proton@4.3.4.redhat-00008?type=jar", + "version": "4.3.4.redhat-00008", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "dc5c2154709ad1012bd62db0347074fa05bbbbeb", + "url": "https://code.engineering.redhat.com/gerrit/vert-x3/vertx-proton.git#vertx-4.3.4.GA-1" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Sonatype helps open source projects to set up Maven repositories on https://oss.sonatype.org/", + "externalReferences": [ + { + "url": "http://nexus.sonatype.org/oss-repository-hosting.html/vertx-parent/vertx-ext/vertx-ext-parent/vertx-proton", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/vert-x3/vertx-proton.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AZB7PSY53RQBO", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "proton-j", + "purl": "pkg:maven/org.apache.qpid/proton-j@0.34.0.redhat-00001?type=jar", + "type": "library", + "group": "org.apache.qpid", + "bom-ref": "pkg:maven/org.apache.qpid/proton-j@0.34.0.redhat-00001?type=jar", + "version": "0.34.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "3e784b9ca84ef1d050fd7254894d0382bbbce25f", + "url": "https://code.engineering.redhat.com/gerrit/rh-qpid-proton-j.git#0.34.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Proton is a library for speaking AMQP.", + "externalReferences": [ + { + "url": "https://qpid.apache.org/proton/proton-j", + "type": "website" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUND2GTJ3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.apache.org/jira/browse/PROTON", + "type": "issue-tracker" + }, + { + "url": "https://mail-archives.apache.org/mod_mbox/www-announce/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/rh-qpid-proton-j.git", + "type": "vcs" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.6.3-dotnet-doxygen:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-smallrye-reactive-messaging-amqp-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-amqp-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-amqp-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-devservices-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-devservices-deployment:2.13.9.Final-redhat-00003#3", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "DevServices allows Quarkus to automatically configure and start databases and other containers in dev and test mode.", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-arc-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-arc-deployment:2.13.9.Final-redhat-00003#2", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-vertx-http-dev-console-spi", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http-dev-console-spi@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-vertx-http-dev-console-spi:2.13.9.Final-redhat-00003#2", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-vertx-http-dev-console-runtime-spi", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http-dev-console-runtime-spi@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-vertx-http-dev-console-runtime-spi:2.13.9.Final-redhat-00003#1", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-jackson-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-jackson-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-jackson-deployment:2.13.9.Final-redhat-00003#2", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-mutiny-reactive-streams-operators-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-mutiny-reactive-streams-operators-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-mutiny-reactive-streams-operators-deployment:2.13.9.Final-redhat-00003#1", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-mutiny-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-mutiny-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-mutiny-deployment:2.13.9.Final-redhat-00003#2", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-smallrye-context-propagation-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-context-propagation-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-smallrye-context-propagation-deployment:2.13.9.Final-redhat-00003#2", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-smallrye-reactive-messaging-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-vertx-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-vertx-deployment:2.13.9.Final-redhat-00003#1", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-netty-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-netty-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-netty-deployment:2.13.9.Final-redhat-00003#1", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "commonmark", + "purl": "pkg:maven/org.commonmark/commonmark@0.19.0.redhat-00002?type=jar", + "type": "library", + "group": "org.commonmark", + "bom-ref": "pkg:maven/org.commonmark/commonmark@0.19.0.redhat-00002?type=jar", + "version": "0.19.0.redhat-00002", + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "e236f5504243482c7010b5bc61333cb48b60ab77", + "url": "https://code.engineering.redhat.com/gerrit/commonmark/commonmark-java.git#0.19.0.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Core of commonmark-java (implementation of CommonMark for parsing markdown and rendering to HTML)", + "externalReferences": [ + { + "url": "https://github.com/commonmark/commonmark-java/commonmark", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/commonmark/commonmark-java.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AZHWPJTBWKIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.5.4:1.0.5", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-smallrye-reactive-messaging-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-smallrye-reactive-messaging-deployment:2.13.9.Final-redhat-00003#1", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-smallrye-reactive-messaging-kafka", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-kafka@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-kafka@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Connect to Kafka with Reactive Messaging", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-kafka-client", + "purl": "pkg:maven/io.quarkus/quarkus-kafka-client@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-kafka-client:2.13.9.Final-redhat-00003#1", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Connect to Apache Kafka with its native API", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-reactive-messaging-kafka", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-kafka@3.21.0.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye.reactive", + "bom-ref": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-kafka@3.21.0.redhat-00001?type=jar", + "version": "3.21.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "d8d06a0ec78562137902c3430452506842621372", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-reactive-messaging.git#3.21.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "An implementation of the MicroProfile Reactive Streams Messaging specification", + "externalReferences": [ + { + "url": "https://smallrye.io/smallrye-reactive-messaging-kafka", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-reactive-messaging/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-reactive-messaging.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU3MXWTMTVQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.14.1-1-mx-mvn3.6.3:1.0.1", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-reactive-messaging-kafka-api", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-kafka-api@3.21.0.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye.reactive", + "bom-ref": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-kafka-api@3.21.0.redhat-00001?type=jar", + "version": "3.21.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "d8d06a0ec78562137902c3430452506842621372", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-reactive-messaging.git#3.21.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "An implementation of the MicroProfile Reactive Streams Messaging specification", + "externalReferences": [ + { + "url": "https://smallrye.io/smallrye-reactive-messaging-kafka-api", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-reactive-messaging/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-reactive-messaging.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU3MXWTMTVQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.14.1-1-mx-mvn3.6.3:1.0.1", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "vertx-kafka-client", + "purl": "pkg:maven/io.vertx/vertx-kafka-client@4.3.4.redhat-00008?type=jar", + "type": "library", + "group": "io.vertx", + "bom-ref": "pkg:maven/io.vertx/vertx-kafka-client@4.3.4.redhat-00008?type=jar", + "version": "4.3.4.redhat-00008", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + }, + { + "license": { + "id": "EPL-1.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "77d9f5e4122c4a7d5b28d9006946587356caebe9", + "url": "https://code.engineering.redhat.com/gerrit/vert-x3/vertx-kafka-client.git#vertx-4.3.4.GA-1" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Sonatype helps open source projects to set up Maven repositories on https://oss.sonatype.org/", + "externalReferences": [ + { + "url": "http://nexus.sonatype.org/oss-repository-hosting.html/vertx-parent/vertx-ext/vertx-ext-parent/vertx-kafka-client", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/vert-x3/vertx-kafka-client.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AZB7PSY53RQAW", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-smallrye-reactive-messaging-kafka-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-kafka-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-kafka-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-kafka-client-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-kafka-client-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-kafka-client-deployment:2.13.9.Final-redhat-00003#2", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-devservices-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-devservices-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-devservices-deployment:2.13.9.Final-redhat-00003#4", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "DevServices allows Quarkus to automatically configure and start databases and other containers in dev and test mode.", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-smallrye-reactive-messaging-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-smallrye-reactive-messaging-deployment:2.13.9.Final-redhat-00003#2", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-smallrye-reactive-messaging", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-smallrye-reactive-messaging:2.13.9.Final-redhat-00003#2", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Produce and consume messages and implement event driven and data streaming applications", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-vertx", + "purl": "pkg:maven/io.quarkus/quarkus-vertx@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-vertx:2.13.9.Final-redhat-00003#2", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Write reactive applications with the Vert.x API", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-mutiny-vertx-core", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-core@2.27.0.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye.reactive", + "bom-ref": "i.s.r:smallrye-mutiny-vertx-core:2.27.0.redhat-00001#2", + "version": "2.27.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "109a2da366d4e52568be8ecbeafd802e9d1091fa", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-mutiny-vertx-bindings.git#2.27.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "SmallRye Build Parent POM", + "externalReferences": [ + { + "url": "https://smallrye.io/smallrye-mutiny-vertx-bindings/vertx-mutiny-clients/smallrye-mutiny-vertx-core", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-mutiny-vertx-bindings/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-mutiny-vertx-bindings.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU3MITW53VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "vertx-mutiny-generator", + "purl": "pkg:maven/io.smallrye.reactive/vertx-mutiny-generator@2.27.0.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye.reactive", + "bom-ref": "i.s.r:vertx-mutiny-generator:2.27.0.redhat-00001#2", + "version": "2.27.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "109a2da366d4e52568be8ecbeafd802e9d1091fa", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-mutiny-vertx-bindings.git#2.27.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "SmallRye Build Parent POM", + "externalReferences": [ + { + "url": "https://smallrye.io/smallrye-mutiny-vertx-bindings/vertx-mutiny-generator", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-mutiny-vertx-bindings/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-mutiny-vertx-bindings.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU3MITW53VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "vertx-codegen", + "purl": "pkg:maven/io.vertx/vertx-codegen@4.3.4.redhat-00008?type=jar", + "type": "library", + "group": "io.vertx", + "bom-ref": "i.v:vertx-codegen:4.3.4.redhat-00008#1", + "version": "4.3.4.redhat-00008", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + }, + { + "license": { + "id": "EPL-1.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c2450d18983da45006f7983c37aaff8cd55d2589", + "url": "https://code.engineering.redhat.com/gerrit/vert-x3/vertx-codegen.git#vertx-4.3.4.GA-1" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Sonatype helps open source projects to set up Maven repositories on https://oss.sonatype.org/", + "externalReferences": [ + { + "url": "http://nexus.sonatype.org/oss-repository-hosting.html/vertx-parent/vertx-codegen", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/vert-x3/vertx-codegen.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AZB7PSY53RQAI", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-reactive-messaging-health", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-health@3.21.0.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye.reactive", + "bom-ref": "i.s.r:smallrye-reactive-messaging-health:3.21.0.redhat-00001#2", + "version": "3.21.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "d8d06a0ec78562137902c3430452506842621372", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-reactive-messaging.git#3.21.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "An implementation of the MicroProfile Reactive Streams Messaging specification", + "externalReferences": [ + { + "url": "https://smallrye.io/smallrye-reactive-messaging-health", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-reactive-messaging/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-reactive-messaging.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU3MXWTMTVQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.14.1-1-mx-mvn3.6.3:1.0.1", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-reactive-messaging-provider", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-provider@3.21.0.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye.reactive", + "bom-ref": "i.s.r:smallrye-reactive-messaging-provider:3.21.0.redhat-00001#2", + "version": "3.21.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "d8d06a0ec78562137902c3430452506842621372", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-reactive-messaging.git#3.21.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "An implementation of the MicroProfile Reactive Streams Messaging specification", + "externalReferences": [ + { + "url": "https://smallrye.io/smallrye-reactive-messaging-provider", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-reactive-messaging/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-reactive-messaging.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU3MXWTMTVQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.14.1-1-mx-mvn3.6.3:1.0.1", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-vertx-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-vertx-deployment:2.13.9.Final-redhat-00003#2", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-smallrye-reactive-messaging-kafka", + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-kafka@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-smallrye-reactive-messaging-kafka:2.13.9.Final-redhat-00003#1", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Connect to Kafka with Reactive Messaging", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-reactive-messaging-kafka", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-kafka@3.21.0.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye.reactive", + "bom-ref": "i.s.r:smallrye-reactive-messaging-kafka:3.21.0.redhat-00001#1", + "version": "3.21.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "d8d06a0ec78562137902c3430452506842621372", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-reactive-messaging.git#3.21.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "An implementation of the MicroProfile Reactive Streams Messaging specification", + "externalReferences": [ + { + "url": "https://smallrye.io/smallrye-reactive-messaging-kafka", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-reactive-messaging/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-reactive-messaging.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU3MXWTMTVQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.14.1-1-mx-mvn3.6.3:1.0.1", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-spring-boot-properties", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-properties@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-spring-boot-properties@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Use Spring Boot properties annotations to configure your application", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-spring-boot-properties-api", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-properties-api@2.1.0.SP1-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-spring-boot-properties-api@2.1.0.SP1-redhat-00003?type=jar", + "version": "2.1.0.SP1-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "7a942d67fc91dc29fee2893334154e40abca427d", + "url": "http://code.engineering.redhat.com/gerrit/quarkusio/quarkus-spring-boot-api.git#2.1.0.SP1-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The minimum dependencies to reduce the footprint of Quarkus applications using the Spring Boot Properties classes", + "externalReferences": [ + { + "url": "https://quarkus.io/quarkus-spring-boot-properties-api/", + "type": "website" + }, + { + "url": "http://code.engineering.redhat.com/gerrit/quarkusio/quarkus-spring-boot-api.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/50890", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-spring-core-api", + "purl": "pkg:maven/io.quarkus/quarkus-spring-core-api@5.2.0.SP7-redhat-00001?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-spring-core-api@5.2.0.SP7-redhat-00001?type=jar", + "version": "5.2.0.SP7-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "17ddfdbb49b9159cb23ab88cd927dd6bb09b78b5", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus-spring-api.git#5.2.0.SP7-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The minimum dependencies to reduce the footprint of Quarkus applications using the Spring DI extension", + "externalReferences": [ + { + "url": "https://quarkus.io/quarkus-spring-core-api/", + "type": "website" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus-spring-api.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUNWNUPBTVQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.11-9-mvn3.8.1-gradle7.0.2:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-spring-boot-properties-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-properties-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-spring-boot-properties-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-spring-cache", + "purl": "pkg:maven/io.quarkus/quarkus-spring-cache@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-spring-cache@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Use Spring Cache annotations", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-spring-context-api", + "purl": "pkg:maven/io.quarkus/quarkus-spring-context-api@5.2.0.SP7-redhat-00001?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-spring-context-api@5.2.0.SP7-redhat-00001?type=jar", + "version": "5.2.0.SP7-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "17ddfdbb49b9159cb23ab88cd927dd6bb09b78b5", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus-spring-api.git#5.2.0.SP7-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The minimum dependencies to reduce the footprint of Quarkus applications using the Spring DI extension", + "externalReferences": [ + { + "url": "https://quarkus.io/quarkus-spring-context-api/", + "type": "website" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus-spring-api.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUNWNUPBTVQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.11-9-mvn3.8.1-gradle7.0.2:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-spring-cache-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-spring-cache-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-spring-cache-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-spring-cloud-config-client", + "purl": "pkg:maven/io.quarkus/quarkus-spring-cloud-config-client@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-spring-cloud-config-client@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Use properties from Spring Cloud Config as bootstrap properties sources", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-spring-cloud-config-client-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-spring-cloud-config-client-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-spring-cloud-config-client-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-spring-data-jpa", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-jpa@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-spring-data-jpa@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Use Spring Data JPA annotations to create your data access layer", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-spring-boot-orm-api", + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-orm-api@2.1.0.SP1-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-spring-boot-orm-api@2.1.0.SP1-redhat-00003?type=jar", + "version": "2.1.0.SP1-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "7a942d67fc91dc29fee2893334154e40abca427d", + "url": "http://code.engineering.redhat.com/gerrit/quarkusio/quarkus-spring-boot-api.git#2.1.0.SP1-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The minimum dependencies to reduce the footprint of Quarkus applications using the Spring Boot ORM classes", + "externalReferences": [ + { + "url": "https://quarkus.io/quarkus-spring-boot-orm-api/", + "type": "website" + }, + { + "url": "http://code.engineering.redhat.com/gerrit/quarkusio/quarkus-spring-boot-api.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/50890", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-spring-data-commons-api", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-commons-api@2.1.0.SP2-redhat-00002?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-spring-data-commons-api@2.1.0.SP2-redhat-00002?type=jar", + "version": "2.1.0.SP2-redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "56fd61895a0de1bec14184205d5f413ea3b50e33", + "url": "http://code.engineering.redhat.com/gerrit/quarkusio/quarkus-spring-data-api.git#2.1.0.SP2-redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The minimum dependencies to reduce the footprint of Quarkus applications using the Spring Data JPA extension", + "externalReferences": [ + { + "url": "https://quarkus.io/quarkus-spring-data-commons-api/", + "type": "website" + }, + { + "url": "http://code.engineering.redhat.com/gerrit/quarkusio/quarkus-spring-data-api.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/85362", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-spring-data-jpa-api", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-jpa-api@2.1.0.SP2-redhat-00002?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-spring-data-jpa-api@2.1.0.SP2-redhat-00002?type=jar", + "version": "2.1.0.SP2-redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "56fd61895a0de1bec14184205d5f413ea3b50e33", + "url": "http://code.engineering.redhat.com/gerrit/quarkusio/quarkus-spring-data-api.git#2.1.0.SP2-redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The minimum dependencies to reduce the footprint of Quarkus applications using the Spring Data JPA extension", + "externalReferences": [ + { + "url": "https://quarkus.io/quarkus-spring-data-jpa-api/", + "type": "website" + }, + { + "url": "http://code.engineering.redhat.com/gerrit/quarkusio/quarkus-spring-data-api.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/85362", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-spring-di", + "purl": "pkg:maven/io.quarkus/quarkus-spring-di@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-spring-di@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Define your dependency injection with Spring DI", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-spring-beans-api", + "purl": "pkg:maven/io.quarkus/quarkus-spring-beans-api@5.2.0.SP7-redhat-00001?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-spring-beans-api@5.2.0.SP7-redhat-00001?type=jar", + "version": "5.2.0.SP7-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "17ddfdbb49b9159cb23ab88cd927dd6bb09b78b5", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus-spring-api.git#5.2.0.SP7-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The minimum dependencies to reduce the footprint of Quarkus applications using the Spring DI extension", + "externalReferences": [ + { + "url": "https://quarkus.io/quarkus-spring-beans-api/", + "type": "website" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus-spring-api.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUNWNUPBTVQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.11-9-mvn3.8.1-gradle7.0.2:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-spring-data-jpa-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-jpa-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-spring-data-jpa-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-spring-di-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-spring-di-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-spring-di-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-spring-data-rest", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-rest@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-spring-data-rest@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Generate JAX-RS resources for a Spring Data application", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-spring-data-rest-api", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-rest-api@2.1.0.SP2-redhat-00002?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-spring-data-rest-api@2.1.0.SP2-redhat-00002?type=jar", + "version": "2.1.0.SP2-redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "56fd61895a0de1bec14184205d5f413ea3b50e33", + "url": "http://code.engineering.redhat.com/gerrit/quarkusio/quarkus-spring-data-api.git#2.1.0.SP2-redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The minimum dependencies to reduce the footprint of Quarkus applications using the Spring Data JPA extension", + "externalReferences": [ + { + "url": "https://quarkus.io/quarkus-spring-data-rest-api/", + "type": "website" + }, + { + "url": "http://code.engineering.redhat.com/gerrit/quarkusio/quarkus-spring-data-api.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/85362", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-spring-data-rest-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-rest-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-spring-data-rest-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-spring-scheduled", + "purl": "pkg:maven/io.quarkus/quarkus-spring-scheduled@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-spring-scheduled@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Schedule tasks with Spring Scheduling", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-spring-scheduled-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-spring-scheduled-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-spring-scheduled-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-spring-security", + "purl": "pkg:maven/io.quarkus/quarkus-spring-security@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-spring-security@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Secure your application with Spring Security annotations", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-spring-security-core-api", + "purl": "pkg:maven/io.quarkus/quarkus-spring-security-core-api@5.3.0.Final-redhat-00001?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-spring-security-core-api@5.3.0.Final-redhat-00001?type=jar", + "version": "5.3.0.Final-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "6703ee6c823cc10956741d2ec4b0dd3f823b573d", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus-spring-security-api.git#5.3.0.Final-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The minimum dependencies to reduce the footprint of Quarkus applications using the Spring Security extension", + "externalReferences": [ + { + "url": "https://quarkus.io/quarkus-spring-security-core-api/", + "type": "website" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus-spring-security-api.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AQFGRUJAOHAAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-spring-web-api", + "purl": "pkg:maven/io.quarkus/quarkus-spring-web-api@5.2.0.SP7-redhat-00001?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-spring-web-api@5.2.0.SP7-redhat-00001?type=jar", + "version": "5.2.0.SP7-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "17ddfdbb49b9159cb23ab88cd927dd6bb09b78b5", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus-spring-api.git#5.2.0.SP7-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The minimum dependencies to reduce the footprint of Quarkus applications using the Spring DI extension", + "externalReferences": [ + { + "url": "https://quarkus.io/quarkus-spring-web-api/", + "type": "website" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus-spring-api.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUNWNUPBTVQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.11-9-mvn3.8.1-gradle7.0.2:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-spring-security-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-spring-security-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-spring-security-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-spring-web", + "purl": "pkg:maven/io.quarkus/quarkus-spring-web@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-spring-web@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Use Spring Web annotations to create your REST services", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-spring-webmvc-api", + "purl": "pkg:maven/io.quarkus/quarkus-spring-webmvc-api@5.2.0.SP7-redhat-00001?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-spring-webmvc-api@5.2.0.SP7-redhat-00001?type=jar", + "version": "5.2.0.SP7-redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "17ddfdbb49b9159cb23ab88cd927dd6bb09b78b5", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus-spring-api.git#5.2.0.SP7-redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "The minimum dependencies to reduce the footprint of Quarkus applications using the Spring DI extension", + "externalReferences": [ + { + "url": "https://quarkus.io/quarkus-spring-webmvc-api/", + "type": "website" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus-spring-api.git", + "type": "vcs" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUNWNUPBTVQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.11-9-mvn3.8.1-gradle7.0.2:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-spring-web-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-spring-web-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-spring-web-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-undertow", + "purl": "pkg:maven/io.quarkus/quarkus-undertow@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-undertow@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Support for servlets", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-vertx-http", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-vertx-http:2.13.9.Final-redhat-00003#1", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Vert.x HTTP", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-mutiny-vertx-web", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web@2.27.0.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye.reactive", + "bom-ref": "i.s.r:smallrye-mutiny-vertx-web:2.27.0.redhat-00001#1", + "version": "2.27.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "109a2da366d4e52568be8ecbeafd802e9d1091fa", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-mutiny-vertx-bindings.git#2.27.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "SmallRye Build Parent POM", + "externalReferences": [ + { + "url": "https://smallrye.io/smallrye-mutiny-vertx-bindings/vertx-mutiny-clients/smallrye-mutiny-vertx-web", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-mutiny-vertx-bindings/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-mutiny-vertx-bindings.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU3MITW53VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-mutiny-vertx-auth-common", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-auth-common@2.27.0.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye.reactive", + "bom-ref": "i.s.r:smallrye-mutiny-vertx-auth-common:2.27.0.redhat-00001#1", + "version": "2.27.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "109a2da366d4e52568be8ecbeafd802e9d1091fa", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-mutiny-vertx-bindings.git#2.27.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "SmallRye Build Parent POM", + "externalReferences": [ + { + "url": "https://smallrye.io/smallrye-mutiny-vertx-bindings/vertx-mutiny-clients/smallrye-mutiny-vertx-auth-common", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-mutiny-vertx-bindings/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-mutiny-vertx-bindings.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU3MITW53VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-mutiny-vertx-bridge-common", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-bridge-common@2.27.0.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye.reactive", + "bom-ref": "i.s.r:smallrye-mutiny-vertx-bridge-common:2.27.0.redhat-00001#1", + "version": "2.27.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "109a2da366d4e52568be8ecbeafd802e9d1091fa", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-mutiny-vertx-bindings.git#2.27.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "SmallRye Build Parent POM", + "externalReferences": [ + { + "url": "https://smallrye.io/smallrye-mutiny-vertx-bindings/vertx-mutiny-clients/smallrye-mutiny-vertx-bridge-common", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-mutiny-vertx-bindings/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-mutiny-vertx-bindings.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU3MITW53VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-mutiny-vertx-uri-template", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-uri-template@2.27.0.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye.reactive", + "bom-ref": "i.s.r:smallrye-mutiny-vertx-uri-template:2.27.0.redhat-00001#1", + "version": "2.27.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "109a2da366d4e52568be8ecbeafd802e9d1091fa", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-mutiny-vertx-bindings.git#2.27.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "SmallRye Build Parent POM", + "externalReferences": [ + { + "url": "https://smallrye.io/smallrye-mutiny-vertx-bindings/vertx-mutiny-clients/smallrye-mutiny-vertx-uri-template", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-mutiny-vertx-bindings/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-mutiny-vertx-bindings.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU3MITW53VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "vertx-uri-template", + "purl": "pkg:maven/io.vertx/vertx-uri-template@4.3.4.redhat-00008?type=jar", + "type": "library", + "group": "io.vertx", + "bom-ref": "i.v:vertx-uri-template:4.3.4.redhat-00008#1", + "version": "4.3.4.redhat-00008", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + }, + { + "license": { + "id": "EPL-1.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "8b149fe810e39024789d04ecdb2daea3a63e148a", + "url": "https://code.engineering.redhat.com/gerrit/eclipse-vertx/vertx-uri-template.git#vertx-4.3.4.GA-1" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Sonatype helps open source projects to set up Maven repositories on https://oss.sonatype.org/", + "externalReferences": [ + { + "url": "http://nexus.sonatype.org/oss-repository-hosting.html/vertx-parent/vertx-ext/vertx-ext-parent/vertx-uri-template", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/eclipse-vertx/vertx-uri-template.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AZB7PSY53RQAU", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-mutiny-vertx-web-common", + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web-common@2.27.0.redhat-00001?type=jar", + "type": "library", + "group": "io.smallrye.reactive", + "bom-ref": "i.s.r:smallrye-mutiny-vertx-web-common:2.27.0.redhat-00001#1", + "version": "2.27.0.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "109a2da366d4e52568be8ecbeafd802e9d1091fa", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-mutiny-vertx-bindings.git#2.27.0.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "SmallRye Build Parent POM", + "externalReferences": [ + { + "url": "https://smallrye.io/smallrye-mutiny-vertx-bindings/vertx-mutiny-clients/smallrye-mutiny-vertx-web-common", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-mutiny-vertx-bindings/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-mutiny-vertx-bindings.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AU3MITW53VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11-mvn3.6.3:1.0.4", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-http-vertx-backend", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-vertx-backend@4.1.9.redhat-00001?type=jar", + "type": "library", + "group": "io.quarkus.http", + "bom-ref": "pkg:maven/io.quarkus.http/quarkus-http-vertx-backend@4.1.9.redhat-00001?type=jar", + "version": "4.1.9.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b726ee23ff8d684daa9b61074ce5e64d2af8cff9", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus-http.git#4.1.9.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Quarkus HTTP", + "externalReferences": [ + { + "url": "http://www.jboss.org/quarkus-http-parent/quarkus-http-vertx-backend", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus-http.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/ARCTT7S6FCIAC", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-undertow-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-undertow-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-undertow-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-vertx-http-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-vertx-http-deployment:2.13.9.Final-redhat-00003#1", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-vertx", + "purl": "pkg:maven/io.quarkus/quarkus-vertx@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "i.q:quarkus-vertx:2.13.9.Final-redhat-00003#3", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Write reactive applications with the Vert.x API", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "smallrye-fault-tolerance-vertx", + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-vertx@5.5.0.redhat-00002?type=jar", + "type": "library", + "group": "io.smallrye", + "bom-ref": "i.s:smallrye-fault-tolerance-vertx:5.5.0.redhat-00002#1", + "version": "5.5.0.redhat-00002", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "dc7f47e955424d789a4c7435724bd36670c1390d", + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-fault-tolerance.git#5.5.0.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "SmallRye Build Parent POM", + "externalReferences": [ + { + "url": "http://smallrye.io/smallrye-fault-tolerance-implementation-parent/smallrye-fault-tolerance-vertx", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/smallrye/smallrye-fault-tolerance/issues", + "type": "issue-tracker" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/smallrye/smallrye-fault-tolerance.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/AUOPPWKP3VQAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j11.0.9-11-mvn3.6.3:1.0.3", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-websockets", + "purl": "pkg:maven/io.quarkus/quarkus-websockets@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-websockets@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "WebSocket communication channel support", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-websockets-client", + "purl": "pkg:maven/io.quarkus/quarkus-websockets-client@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-websockets-client@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "c3f82aab8cac7cf775fe2f3e5806528a2d87de6e", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git#2.13.9.Final-redhat-00003" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Client for WebSocket communication channel", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/A5WQUN4XTAIAA", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-8-j11-mvn3.8.6-gradle7.5.1-gcc-cpp-make:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-http-websocket-core", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-websocket-core@4.1.9.redhat-00001?type=jar", + "type": "library", + "group": "io.quarkus.http", + "bom-ref": "pkg:maven/io.quarkus.http/quarkus-http-websocket-core@4.1.9.redhat-00001?type=jar", + "version": "4.1.9.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b726ee23ff8d684daa9b61074ce5e64d2af8cff9", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus-http.git#4.1.9.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "WebSocket Parent", + "externalReferences": [ + { + "url": "http://www.jboss.org/quarkus-http-parent/quarkus-http-websocket-parent/quarkus-http-websocket-core", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus-http.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/ARCTT7S6FCIAC", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "jakarta.websocket-api", + "purl": "pkg:maven/jakarta.websocket/jakarta.websocket-api@1.1.2.redhat-00002?type=jar", + "type": "library", + "group": "jakarta.websocket", + "bom-ref": "pkg:maven/jakarta.websocket/jakarta.websocket-api@1.1.2.redhat-00002?type=jar", + "version": "1.1.2.redhat-00002", + "licenses": [ + { + "license": { + "id": "EPL-2.0", + "url": "https://www.eclipse.org/legal/epl-2.0" + } + }, + { + "license": { + "url": "https://projects.eclipse.org/license/secondary-gpl-2.0-cp", + "name": "GNU General Public License, version 2 with the GNU Classpath Exception" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "66a30b0083625b6a58735a2b25df6669c711841a", + "url": "http://code.engineering.redhat.com/gerrit/eclipse-ee4j/websocket-api.git#1.1.2.redhat-00002" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Jakarta WebSocket - Server API", + "externalReferences": [ + { + "url": "https://projects.eclipse.org/projects/ee4j.websocket", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/eclipse-ee4j/ee4j/issues", + "type": "issue-tracker" + }, + { + "url": "https://dev.eclipse.org/mhonarc/lists/jakarta.ee-community/", + "type": "mailing-list" + }, + { + "url": "http://code.engineering.redhat.com/gerrit/eclipse-ee4j/websocket-api.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/45363", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-http-websocket-vertx", + "purl": "pkg:maven/io.quarkus.http/quarkus-http-websocket-vertx@4.1.9.redhat-00001?type=jar", + "type": "library", + "group": "io.quarkus.http", + "bom-ref": "pkg:maven/io.quarkus.http/quarkus-http-websocket-vertx@4.1.9.redhat-00001?type=jar", + "version": "4.1.9.redhat-00001", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "pedigree": { + "commits": [ + { + "uid": "b726ee23ff8d684daa9b61074ce5e64d2af8cff9", + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus-http.git#4.1.9.redhat-00001" + } + ] + }, + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "WebSocket Parent", + "externalReferences": [ + { + "url": "http://www.jboss.org/quarkus-http-parent/quarkus-http-websocket-parent/quarkus-http-websocket-vertx", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://issues.jboss.org/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus-http.git", + "type": "vcs" + }, + { + "url": "https://orch.psi.redhat.com/pnc-rest/v2/builds/ARCTT7S6FCIAC", + "type": "build-system", + "comment": "pnc-build-id" + }, + { + "url": "quay.io/rh-newcastle/builder-rhel-7-j8-mvn3.6.3:1.0.0", + "type": "build-meta", + "comment": "pnc-environment-image" + } + ] + }, + { + "name": "quarkus-websockets-client-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-websockets-client-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-websockets-client-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + }, + { + "name": "quarkus-websockets-deployment", + "purl": "pkg:maven/io.quarkus/quarkus-websockets-deployment@2.13.9.Final-redhat-00003?type=jar", + "type": "library", + "group": "io.quarkus", + "bom-ref": "pkg:maven/io.quarkus/quarkus-websockets-deployment@2.13.9.Final-redhat-00003?type=jar", + "version": "2.13.9.Final-redhat-00003", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "supplier": { + "url": [ + "https://www.redhat.com" + ], + "name": "Red Hat" + }, + "publisher": "Red Hat", + "properties": [ + { + "name": "package:type", + "value": "maven" + }, + { + "name": "package:language", + "value": "java" + } + ], + "description": "Build parent to bring in required dependencies", + "externalReferences": [ + { + "url": "https://github.com/quarkusio/quarkus", + "type": "website" + }, + { + "url": "https://maven.repository.redhat.com/ga/", + "type": "distribution" + }, + { + "url": "https://github.com/quarkusio/quarkus/issues/", + "type": "issue-tracker" + }, + { + "url": "http://lists.jboss.org/pipermail/jboss-user/", + "type": "mailing-list" + }, + { + "url": "https://code.engineering.redhat.com/gerrit/quarkusio/quarkus.git", + "type": "vcs" + } + ] + } + ], + "specVersion": "1.4", + "dependencies": [ + { + "ref": "pkg:maven/org.jboss/jboss-transaction-spi@7.6.0.Final-redhat-1?type=jar", + "dependsOn": [ + "pkg:maven/org.jboss.spec.javax.resource/jboss-connector-api_1.7_spec@1.0.0.Final?type=jar", + "pkg:maven/org.jboss.spec.javax.transaction/jboss-transaction-api_1.2_spec@1.0.0.Alpha3?type=jar" + ] + }, + { + "ref": "pkg:maven/io.agroal/agroal-narayana@1.17.0.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.agroal/agroal-api@1.17.0.redhat-00001?type=jar", + "pkg:maven/org.jboss/jboss-transaction-spi@7.6.0.Final-redhat-1?type=jar" + ] + }, + { + "ref": "pkg:maven/io.agroal/agroal-pool@1.17.0.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.agroal/agroal-api@1.17.0.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/org.jboss.logmanager/jboss-logmanager-embedded@1.0.10.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-bootstrap-runner@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.github.crac/org-crac@0.1.1.redhat-00002?type=jar", + "pkg:maven/io.smallrye.common/smallrye-common-io@1.13.1.redhat-00001?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar", + "pkg:maven/org.jboss.logmanager/jboss-logmanager-embedded@1.0.10.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.smallrye.common/smallrye-common-constraint@1.13.1.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.smallrye.common/smallrye-common-function@1.13.1.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.smallrye.common/smallrye-common-constraint@1.13.1.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.smallrye.common/smallrye-common-expression@1.13.1.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.smallrye.common/smallrye-common-function@1.13.1.redhat-00001?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.smallrye.config/smallrye-config-common@2.12.3.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.smallrye.common/smallrye-common-classloader@1.13.1.redhat-00001?type=jar", + "pkg:maven/org.eclipse.microprofile.config/microprofile-config-api@2.0.1.redhat-00001?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.smallrye.config/smallrye-config-core@2.12.3.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.smallrye.common/smallrye-common-annotation@1.13.1.redhat-00001?type=jar", + "pkg:maven/io.smallrye.common/smallrye-common-classloader@1.13.1.redhat-00001?type=jar", + "pkg:maven/io.smallrye.common/smallrye-common-constraint@1.13.1.redhat-00001?type=jar", + "pkg:maven/io.smallrye.common/smallrye-common-expression@1.13.1.redhat-00001?type=jar", + "pkg:maven/io.smallrye.config/smallrye-config-common@2.12.3.redhat-00001?type=jar", + "pkg:maven/org.eclipse.microprofile.config/microprofile-config-api@2.0.1.redhat-00001?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.smallrye.config/smallrye-config@2.12.3.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.smallrye.config/smallrye-config-core@2.12.3.redhat-00001?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/jakarta.interceptor/jakarta.interceptor-api@1.2.5.redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5.redhat-00008?type=jar" + ] + }, + { + "ref": "pkg:maven/jakarta.enterprise/jakarta.enterprise.cdi-api@2.0.2.redhat-00005?type=jar", + "dependsOn": [ + "pkg:maven/jakarta.el/jakarta.el-api@3.0.3.redhat-00003?type=jar", + "pkg:maven/jakarta.inject/jakarta.inject-api@1.0.0.redhat-00002?type=jar", + "pkg:maven/jakarta.interceptor/jakarta.interceptor-api@1.2.5.redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/org.jboss.threads/jboss-threads@3.4.3.Final-redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar", + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-bootstrap-runner@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-development-mode-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-fs-util@0.0.9.redhat-00005?type=jar", + "pkg:maven/io.quarkus/quarkus-ide-launcher@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.smallrye.config/smallrye-config@2.12.3.redhat-00001?type=jar", + "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5.redhat-00008?type=jar", + "pkg:maven/jakarta.enterprise/jakarta.enterprise.cdi-api@2.0.2.redhat-00005?type=jar", + "pkg:maven/jakarta.inject/jakarta.inject-api@1.0.0.redhat-00002?type=jar", + "pkg:maven/org.graalvm.sdk/graal-sdk@22.3.4.0-1-redhat-00001?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging-annotations@2.2.1.Final-redhat-00002?type=jar", + "pkg:maven/org.jboss.logmanager/jboss-logmanager-embedded@1.0.10.redhat-00001?type=jar", + "pkg:maven/org.jboss.slf4j/slf4j-jboss-logmanager@1.2.0.Final-redhat-00001?type=jar", + "pkg:maven/org.jboss.threads/jboss-threads@3.4.3.Final-redhat-00001?type=jar", + "pkg:maven/org.slf4j/slf4j-api@1.7.36.redhat-00005?type=jar", + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/io.smallrye.reactive/mutiny@1.7.0.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.smallrye.common/smallrye-common-annotation@1.13.1.redhat-00001?type=jar", + "pkg:maven/org.reactivestreams/reactive-streams@1.0.3.redhat-00006?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus.arc/arc@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.smallrye.reactive/mutiny@1.7.0.redhat-00001?type=jar", + "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5.redhat-00008?type=jar", + "pkg:maven/jakarta.enterprise/jakarta.enterprise.cdi-api@2.0.2.redhat-00005?type=jar", + "pkg:maven/jakarta.transaction/jakarta.transaction-api@1.3.3.redhat-00004?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus.arc/arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/org.eclipse.microprofile.context-propagation/microprofile-context-propagation-api@1.2.0.redhat-00012?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-credentials@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus.arc/arc@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-datasource@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-credentials@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-datasource-common@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.smallrye/smallrye-context-propagation-api@1.2.2.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/jakarta.enterprise/jakarta.enterprise.cdi-api@2.0.2.redhat-00005?type=jar", + "pkg:maven/org.eclipse.microprofile.context-propagation/microprofile-context-propagation-api@1.2.0.redhat-00012?type=jar" + ] + }, + { + "ref": "pkg:maven/io.smallrye/smallrye-context-propagation@1.2.2.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.smallrye/smallrye-context-propagation-api@1.2.2.redhat-00001?type=jar", + "pkg:maven/io.smallrye/smallrye-context-propagation-storage@1.2.2.redhat-00001?type=jar", + "pkg:maven/org.eclipse.microprofile.config/microprofile-config-api@2.0.1.redhat-00001?type=jar", + "pkg:maven/org.eclipse.microprofile.context-propagation/microprofile-context-propagation-api@1.2.0.redhat-00012?type=jar", + "pkg:maven/org.jboss.threads/jboss-threads@3.4.3.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-smallrye-context-propagation@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.smallrye/smallrye-context-propagation@1.2.2.redhat-00001?type=jar", + "pkg:maven/jakarta.enterprise/jakarta.enterprise.cdi-api@2.0.2.redhat-00005?type=jar" + ] + }, + { + "ref": "pkg:maven/io.smallrye.reactive/mutiny-smallrye-context-propagation@1.7.0.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.smallrye/smallrye-context-propagation@1.2.2.redhat-00001?type=jar", + "pkg:maven/io.smallrye.reactive/mutiny@1.7.0.redhat-00001?type=jar", + "pkg:maven/org.eclipse.microprofile.context-propagation/microprofile-context-propagation-api@1.2.0.redhat-00012?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-mutiny@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-smallrye-context-propagation@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.smallrye.reactive/mutiny@1.7.0.redhat-00001?type=jar", + "pkg:maven/io.smallrye.reactive/mutiny-smallrye-context-propagation@1.7.0.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.smallrye/smallrye-context-propagation-jta@1.2.2.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/org.eclipse.microprofile.context-propagation/microprofile-context-propagation-api@1.2.0.redhat-00012?type=jar" + ] + }, + { + "ref": "pkg:maven/io.smallrye.reactive/smallrye-reactive-converter-api@2.7.0.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/org.reactivestreams/reactive-streams@1.0.3.redhat-00006?type=jar" + ] + }, + { + "ref": "pkg:maven/io.smallrye.reactive/smallrye-reactive-converter-mutiny@2.7.0.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.smallrye.reactive/mutiny@1.7.0.redhat-00001?type=jar", + "pkg:maven/io.smallrye.reactive/smallrye-reactive-converter-api@2.7.0.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/org.jboss.narayana.jta/narayana-jta@5.13.1.Final-redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/org.jboss/jboss-transaction-spi@7.6.0.Final-redhat-1?type=jar", + "pkg:maven/org.jboss.spec.javax.resource/jboss-connector-api_1.7_spec@1.0.0.Final?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-narayana-jta@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-mutiny@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-transaction-annotations@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.smallrye/smallrye-context-propagation-jta@1.2.2.redhat-00001?type=jar", + "pkg:maven/io.smallrye.reactive/smallrye-reactive-converter-api@2.7.0.redhat-00001?type=jar", + "pkg:maven/io.smallrye.reactive/smallrye-reactive-converter-mutiny@2.7.0.redhat-00001?type=jar", + "pkg:maven/jakarta.transaction/jakarta.transaction-api@1.3.3.redhat-00004?type=jar", + "pkg:maven/org.jboss.narayana.jta/narayana-jta@5.13.1.Final-redhat-00001?type=jar", + "pkg:maven/org.jboss.narayana.jts/narayana-jts-integration@5.13.1.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-agroal@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.agroal/agroal-api@1.17.0.redhat-00001?type=jar", + "pkg:maven/io.agroal/agroal-narayana@1.17.0.redhat-00001?type=jar", + "pkg:maven/io.agroal/agroal-pool@1.17.0.redhat-00001?type=jar", + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-credentials@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-datasource@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-narayana-jta@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "o.j:jboss-transaction-spi:7.6.0.Final-redhat-1#1", + "dependsOn": [ + "pkg:maven/org.jboss.spec.javax.resource/jboss-connector-api_1.7_spec@1.0.0.Final?type=jar" + ] + }, + { + "ref": "i.a:agroal-narayana:1.17.0.redhat-00001#1", + "dependsOn": [ + "pkg:maven/io.agroal/agroal-api@1.17.0.redhat-00001?type=jar", + "o.j:jboss-transaction-spi:7.6.0.Final-redhat-1#1" + ] + }, + { + "ref": "o.j.n.j:narayana-jta:5.13.1.Final-redhat-00001#1", + "dependsOn": [ + "o.j:jboss-transaction-spi:7.6.0.Final-redhat-1#1", + "pkg:maven/org.jboss.spec.javax.resource/jboss-connector-api_1.7_spec@1.0.0.Final?type=jar" + ] + }, + { + "ref": "i.q:quarkus-narayana-jta:2.13.9.Final-redhat-00003#1", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-mutiny@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-transaction-annotations@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.smallrye/smallrye-context-propagation-jta@1.2.2.redhat-00001?type=jar", + "pkg:maven/io.smallrye.reactive/smallrye-reactive-converter-api@2.7.0.redhat-00001?type=jar", + "pkg:maven/io.smallrye.reactive/smallrye-reactive-converter-mutiny@2.7.0.redhat-00001?type=jar", + "pkg:maven/jakarta.transaction/jakarta.transaction-api@1.3.3.redhat-00004?type=jar", + "o.j.n.j:narayana-jta:5.13.1.Final-redhat-00001#1", + "pkg:maven/org.jboss.narayana.jts/narayana-jts-integration@5.13.1.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "i.q:quarkus-agroal:2.13.9.Final-redhat-00003#1", + "dependsOn": [ + "pkg:maven/io.agroal/agroal-api@1.17.0.redhat-00001?type=jar", + "i.a:agroal-narayana:1.17.0.redhat-00001#1", + "pkg:maven/io.agroal/agroal-pool@1.17.0.redhat-00001?type=jar", + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-credentials@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-datasource@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-narayana-jta:2.13.9.Final-redhat-00003#1" + ] + }, + { + "ref": "pkg:maven/org.jboss.logging/commons-logging-jboss-logging@1.0.0.Final-redhat-1?type=jar", + "dependsOn": [ + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-bootstrap-app-model@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-fs-util@0.0.9.redhat-00005?type=jar", + "pkg:maven/org.jboss.logging/commons-logging-jboss-logging@1.0.0.Final-redhat-1?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-bootstrap-core@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-bootstrap-app-model@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.smallrye.common/smallrye-common-io@1.13.1.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-builder@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar", + "pkg:maven/org.jboss.threads/jboss-threads@3.4.3.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/org.ow2.asm/asm-tree@9.3.0.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/org.ow2.asm/asm@9.3.0.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/org.ow2.asm/asm-analysis@9.3.0.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/org.ow2.asm/asm-tree@9.3.0.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/org.ow2.asm/asm-util@9.3.0.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/org.ow2.asm/asm@9.3.0.redhat-00001?type=jar", + "pkg:maven/org.ow2.asm/asm-analysis@9.3.0.redhat-00001?type=jar", + "pkg:maven/org.ow2.asm/asm-tree@9.3.0.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus.gizmo/gizmo@1.1.1.Final-redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/org.jboss/jandex@2.4.3.Final-redhat-00001?type=jar", + "pkg:maven/org.ow2.asm/asm@9.3.0.redhat-00001?type=jar", + "pkg:maven/org.ow2.asm/asm-util@9.3.0.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/org.aesh/readline@2.2.0.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/org.fusesource.jansi/jansi@1.18?type=jar" + ] + }, + { + "ref": "pkg:maven/org.aesh/aesh@2.6.0.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/org.aesh/readline@2.2.0.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/org.junit.platform/junit-platform-commons@1.9.1?type=jar", + "dependsOn": [ + "pkg:maven/org.apiguardian/apiguardian-api@1.1.2?type=jar" + ] + }, + { + "ref": "pkg:maven/org.junit.jupiter/junit-jupiter-api@5.9.1?type=jar", + "dependsOn": [ + "pkg:maven/org.apiguardian/apiguardian-api@1.1.2?type=jar", + "pkg:maven/org.junit.platform/junit-platform-commons@1.9.1?type=jar", + "pkg:maven/org.opentest4j/opentest4j@1.2.0?type=jar" + ] + }, + { + "ref": "pkg:maven/org.junit.platform/junit-platform-engine@1.9.1?type=jar", + "dependsOn": [ + "pkg:maven/org.apiguardian/apiguardian-api@1.1.2?type=jar", + "pkg:maven/org.junit.platform/junit-platform-commons@1.9.1?type=jar", + "pkg:maven/org.opentest4j/opentest4j@1.2.0?type=jar" + ] + }, + { + "ref": "pkg:maven/org.junit.jupiter/junit-jupiter-engine@5.9.1?type=jar", + "dependsOn": [ + "pkg:maven/org.apiguardian/apiguardian-api@1.1.2?type=jar", + "pkg:maven/org.junit.jupiter/junit-jupiter-api@5.9.1?type=jar", + "pkg:maven/org.junit.platform/junit-platform-engine@1.9.1?type=jar" + ] + }, + { + "ref": "pkg:maven/org.junit.jupiter/junit-jupiter-params@5.9.1?type=jar", + "dependsOn": [ + "pkg:maven/org.apiguardian/apiguardian-api@1.1.2?type=jar", + "pkg:maven/org.junit.jupiter/junit-jupiter-api@5.9.1?type=jar" + ] + }, + { + "ref": "pkg:maven/org.junit.jupiter/junit-jupiter@5.9.1?type=jar", + "dependsOn": [ + "pkg:maven/org.junit.jupiter/junit-jupiter-api@5.9.1?type=jar", + "pkg:maven/org.junit.jupiter/junit-jupiter-engine@5.9.1?type=jar", + "pkg:maven/org.junit.jupiter/junit-jupiter-params@5.9.1?type=jar" + ] + }, + { + "ref": "pkg:maven/org.junit.platform/junit-platform-launcher@1.9.1?type=jar", + "dependsOn": [ + "pkg:maven/org.apiguardian/apiguardian-api@1.1.2?type=jar", + "pkg:maven/org.junit.platform/junit-platform-engine@1.9.1?type=jar" + ] + }, + { + "ref": "pkg:maven/org.ow2.asm/asm-commons@9.3.0.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/org.ow2.asm/asm@9.3.0.redhat-00001?type=jar", + "pkg:maven/org.ow2.asm/asm-analysis@9.3.0.redhat-00001?type=jar", + "pkg:maven/org.ow2.asm/asm-tree@9.3.0.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-bootstrap-core@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-builder@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-class-change-agent@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-development-mode-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-devtools-utilities@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus.gizmo/gizmo@1.1.1.Final-redhat-00001?type=jar", + "pkg:maven/org.aesh/aesh@2.6.0.redhat-00001?type=jar", + "pkg:maven/org.aesh/readline@2.2.0.redhat-00001?type=jar", + "pkg:maven/org.apache.commons/commons-lang3@3.12.0.redhat-00001?type=jar", + "pkg:maven/org.eclipse.sisu/org.eclipse.sisu.inject@0.3.5.redhat-00001?type=jar", + "pkg:maven/org.graalvm.sdk/graal-sdk@22.3.4.0-1-redhat-00001?type=jar", + "pkg:maven/org.jboss/jandex@2.4.3.Final-redhat-00001?type=jar", + "pkg:maven/org.junit.jupiter/junit-jupiter@5.9.1?type=jar", + "pkg:maven/org.junit.platform/junit-platform-launcher@1.9.1?type=jar", + "pkg:maven/org.ow2.asm/asm@9.3.0.redhat-00001?type=jar", + "pkg:maven/org.ow2.asm/asm-commons@9.3.0.redhat-00001?type=jar", + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-agroal-spi@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-datasource-common@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-smallrye-context-propagation-spi@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/org.eclipse.microprofile.context-propagation/microprofile-context-propagation-api@1.2.0.redhat-00012?type=jar" + ] + }, + { + "ref": "pkg:maven/io.netty/netty-buffer@4.1.100.Final-redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.netty/netty-common@4.1.100.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.netty/netty-resolver@4.1.100.Final-redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.netty/netty-common@4.1.100.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.netty/netty-transport@4.1.100.Final-redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.netty/netty-buffer@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-common@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-resolver@4.1.100.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.netty/netty-codec@4.1.100.Final-redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.netty/netty-buffer@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-common@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport@4.1.100.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.netty/netty-transport-native-unix-common@4.1.100.Final-redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.netty/netty-buffer@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-common@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport@4.1.100.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.netty/netty-handler@4.1.100.Final-redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.netty/netty-buffer@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-codec@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-common@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-resolver@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport-native-unix-common@4.1.100.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.netty/netty-codec-http@4.1.100.Final-redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.netty/netty-buffer@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-codec@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-common@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-handler@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport@4.1.100.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.netty/netty-codec-http2@4.1.100.Final-redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.netty/netty-buffer@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-codec@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-codec-http@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-common@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-handler@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport@4.1.100.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.netty/netty-codec-socks@4.1.100.Final-redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.netty/netty-buffer@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-codec@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-common@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport@4.1.100.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.netty/netty-handler-proxy@4.1.100.Final-redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.netty/netty-buffer@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-codec@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-codec-http@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-codec-socks@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-common@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport@4.1.100.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.netty/netty-codec-dns@4.1.100.Final-redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.netty/netty-buffer@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-codec@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-common@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport@4.1.100.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.netty/netty-resolver-dns@4.1.100.Final-redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.netty/netty-buffer@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-codec@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-codec-dns@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-common@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-handler@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-resolver@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport@4.1.100.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.vertx/vertx-core@4.3.4.redhat-00008?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.13.4.redhat-00004?type=jar", + "pkg:maven/io.netty/netty-buffer@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-codec-http@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-codec-http2@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-common@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-handler@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-handler-proxy@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-resolver@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-resolver-dns@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport@4.1.100.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.vertx/vertx-auth-common@4.3.4.redhat-00008?type=jar", + "dependsOn": [ + "pkg:maven/io.vertx/vertx-core@4.3.4.redhat-00008?type=jar" + ] + }, + { + "ref": "pkg:maven/io.vertx/vertx-bridge-common@4.3.4.redhat-00008?type=jar", + "dependsOn": [ + "pkg:maven/io.vertx/vertx-core@4.3.4.redhat-00008?type=jar" + ] + }, + { + "ref": "pkg:maven/io.vertx/vertx-web-common@4.3.4.redhat-00008?type=jar", + "dependsOn": [ + "pkg:maven/io.vertx/vertx-core@4.3.4.redhat-00008?type=jar" + ] + }, + { + "ref": "pkg:maven/io.vertx/vertx-web@4.3.4.redhat-00008?type=jar", + "dependsOn": [ + "pkg:maven/io.vertx/vertx-auth-common@4.3.4.redhat-00008?type=jar", + "pkg:maven/io.vertx/vertx-bridge-common@4.3.4.redhat-00008?type=jar", + "pkg:maven/io.vertx/vertx-core@4.3.4.redhat-00008?type=jar", + "pkg:maven/io.vertx/vertx-web-common@4.3.4.redhat-00008?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-vertx-http-dev-console-runtime-spi@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus.arc/arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.vertx/vertx-web@4.3.4.redhat-00008?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-vertx-http-dev-console-spi@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx-http-dev-console-runtime-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus.arc/arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.vertx/vertx-web@4.3.4.redhat-00008?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus.arc/arc-processor@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus.arc/arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus.gizmo/gizmo@1.1.1.Final-redhat-00001?type=jar", + "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5.redhat-00008?type=jar", + "pkg:maven/jakarta.enterprise/jakarta.enterprise.cdi-api@2.0.2.redhat-00005?type=jar", + "pkg:maven/org.jboss/jandex@2.4.3.Final-redhat-00001?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-smallrye-context-propagation-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx-http-dev-console-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus.arc/arc-processor@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-credentials-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-credentials@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-datasource-deployment-spi@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-datasource-common@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/com.github.docker-java/docker-java-api@3.2.13?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4.redhat-00004?type=jar", + "pkg:maven/org.slf4j/slf4j-api@1.7.36.redhat-00005?type=jar" + ] + }, + { + "ref": "pkg:maven/com.github.docker-java/docker-java-transport-zerodep@3.2.13?type=jar", + "dependsOn": [ + "pkg:maven/com.github.docker-java/docker-java-transport@3.2.13?type=jar", + "pkg:maven/net.java.dev.jna/jna@5.8.0?type=jar", + "pkg:maven/org.slf4j/slf4j-api@1.7.36.redhat-00005?type=jar" + ] + }, + { + "ref": "pkg:maven/org.apache.commons/commons-compress@1.26.1.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/commons-codec/commons-codec@1.15.0.redhat-00014?type=jar", + "pkg:maven/commons-io/commons-io@2.15.1.redhat-00001?type=jar", + "pkg:maven/org.apache.commons/commons-lang3@3.12.0.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/org.rnorth.duct-tape/duct-tape@1.0.8?type=jar", + "dependsOn": [ + "pkg:maven/org.jetbrains/annotations@17.0.0?type=jar" + ] + }, + { + "ref": "pkg:maven/org.testcontainers/testcontainers@1.17.3?type=jar", + "dependsOn": [ + "pkg:maven/com.github.docker-java/docker-java-api@3.2.13?type=jar", + "pkg:maven/com.github.docker-java/docker-java-transport-zerodep@3.2.13?type=jar", + "pkg:maven/org.apache.commons/commons-compress@1.26.1.redhat-00001?type=jar", + "pkg:maven/org.rnorth.duct-tape/duct-tape@1.0.8?type=jar", + "pkg:maven/org.slf4j/slf4j-api@1.7.36.redhat-00005?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-devservices-common@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/com.github.docker-java/docker-java-api@3.2.13?type=jar", + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-junit4-mock@2.13.9.Final?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar", + "pkg:maven/org.testcontainers/testcontainers@1.17.3?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-devservices-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-devservices-common@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-kubernetes-service-binding-spi@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-datasource-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-datasource@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-datasource-deployment-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-devservices-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-kubernetes-service-binding-spi@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-smallrye-context-propagation-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-smallrye-context-propagation@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-smallrye-context-propagation-spi@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-mutiny-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-mutiny@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-smallrye-context-propagation-deployment@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-narayana-jta-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-mutiny-deployment@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-narayana-jta:2.13.9.Final-redhat-00003#1" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-smallrye-health-spi@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-agroal-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "i.q:quarkus-agroal:2.13.9.Final-redhat-00003#1", + "pkg:maven/io.quarkus/quarkus-agroal-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-credentials-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-datasource-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-narayana-jta-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-smallrye-health-spi@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2-redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.13.4.redhat-00004?type=jar" + ] + }, + { + "ref": "pkg:maven/org.apache.avro/avro@1.11.3.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.13.4.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2-redhat-00001?type=jar", + "pkg:maven/org.apache.commons/commons-compress@1.26.1.redhat-00001?type=jar", + "pkg:maven/org.slf4j/slf4j-api@1.7.36.redhat-00005?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-avro@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/org.apache.avro/avro@1.11.3.redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-jackson-spi@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/org.apache.commons/commons-text@1.10.0.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/org.apache.commons/commons-lang3@3.12.0.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/org.apache.velocity/velocity-engine-core@2.3.0.redhat-00008?type=jar", + "dependsOn": [ + "pkg:maven/org.apache.commons/commons-lang3@3.12.0.redhat-00001?type=jar", + "pkg:maven/org.slf4j/slf4j-api@1.7.36.redhat-00005?type=jar" + ] + }, + { + "ref": "pkg:maven/org.apache.avro/avro-compiler@1.11.3.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2-redhat-00001?type=jar", + "pkg:maven/org.apache.avro/avro@1.11.3.redhat-00002?type=jar", + "pkg:maven/org.apache.commons/commons-text@1.10.0.redhat-00002?type=jar", + "pkg:maven/org.apache.velocity/velocity-engine-core@2.3.0.redhat-00008?type=jar", + "pkg:maven/org.slf4j/slf4j-api@1.7.36.redhat-00005?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-avro-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-avro@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-jackson-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/org.apache.avro/avro-compiler@1.11.3.redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/com.github.ben-manes.caffeine/caffeine@2.9.3.redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/com.google.errorprone/error_prone_annotations@2.15.0.redhat-00004?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-caffeine@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/com.github.ben-manes.caffeine/caffeine@2.9.3.redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-cache@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-caffeine@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-mutiny@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-caffeine-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-caffeine@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-cache-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-cache@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-caffeine-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-mutiny-deployment@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.smallrye.config/smallrye-config-source-yaml@2.12.3.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.smallrye.common/smallrye-common-constraint@1.13.1.redhat-00001?type=jar", + "pkg:maven/io.smallrye.config/smallrye-config@2.12.3.redhat-00001?type=jar", + "pkg:maven/io.smallrye.config/smallrye-config-common@2.12.3.redhat-00001?type=jar", + "pkg:maven/org.yaml/snakeyaml@1.33.0.redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-config-yaml@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.smallrye.config/smallrye-config-source-yaml@2.12.3.redhat-00001?type=jar", + "pkg:maven/org.eclipse.microprofile.config/microprofile-config-api@2.0.1.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-config-yaml-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-config-yaml@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-container-image@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-kubernetes-client-internal@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-container-image-openshift@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-container-image@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-kubernetes-client-internal@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-properties@2.13.4.redhat-00004?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.13.4.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml@2.13.4.redhat-00004?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.13.4.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2-redhat-00001?type=jar", + "pkg:maven/org.yaml/snakeyaml@1.33.0.redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jsr310@2.13.4.redhat-00004?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.13.4.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/com.github.mifmif/generex@1.0.2.redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/dk.brics.automaton/automaton@1.11.8.redhat-1?type=jar" + ] + }, + { + "ref": "pkg:maven/com.squareup.okhttp3/okhttp@3.14.9.redhat-00010?type=jar", + "dependsOn": [ + "pkg:maven/com.squareup.okio/okio@1.17.2.redhat-00004?type=jar" + ] + }, + { + "ref": "pkg:maven/com.squareup.okhttp3/logging-interceptor@3.14.9.redhat-00010?type=jar", + "dependsOn": [ + "pkg:maven/com.squareup.okhttp3/okhttp@3.14.9.redhat-00010?type=jar" + ] + }, + { + "ref": "pkg:maven/io.fabric8/kubernetes-model-common@5.12.4.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.fabric8/kubernetes-model-core@5.12.4.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4.redhat-00004?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@5.12.4.redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/io.fabric8/kubernetes-model-admissionregistration@5.12.4.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4.redhat-00004?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-core@5.12.4.redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/io.fabric8/kubernetes-model-apiextensions@5.12.4.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4.redhat-00004?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-core@5.12.4.redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/io.fabric8/kubernetes-model-apps@5.12.4.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4.redhat-00004?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-core@5.12.4.redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/io.fabric8/kubernetes-model-autoscaling@5.12.4.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4.redhat-00004?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-core@5.12.4.redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/io.fabric8/kubernetes-model-batch@5.12.4.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4.redhat-00004?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-core@5.12.4.redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/io.fabric8/kubernetes-model-certificates@5.12.4.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4.redhat-00004?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-core@5.12.4.redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/io.fabric8/kubernetes-model-coordination@5.12.4.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4.redhat-00004?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-core@5.12.4.redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/io.fabric8/kubernetes-model-discovery@5.12.4.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4.redhat-00004?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-core@5.12.4.redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/io.fabric8/kubernetes-model-events@5.12.4.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4.redhat-00004?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-core@5.12.4.redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/io.fabric8/kubernetes-model-extensions@5.12.4.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4.redhat-00004?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-core@5.12.4.redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/io.fabric8/kubernetes-model-flowcontrol@5.12.4.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4.redhat-00004?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-core@5.12.4.redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/io.fabric8/kubernetes-model-metrics@5.12.4.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4.redhat-00004?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-core@5.12.4.redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/io.fabric8/kubernetes-model-networking@5.12.4.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4.redhat-00004?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-core@5.12.4.redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/io.fabric8/kubernetes-model-node@5.12.4.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4.redhat-00004?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-core@5.12.4.redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/io.fabric8/kubernetes-model-policy@5.12.4.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4.redhat-00004?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-core@5.12.4.redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/io.fabric8/kubernetes-model-rbac@5.12.4.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4.redhat-00004?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-core@5.12.4.redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/io.fabric8/kubernetes-model-scheduling@5.12.4.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4.redhat-00004?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-core@5.12.4.redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/io.fabric8/kubernetes-model-storageclass@5.12.4.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4.redhat-00004?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-core@5.12.4.redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/io.fabric8/zjsonpatch@0.3.0.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.13.4.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.fabric8/kubernetes-client@5.12.4.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.13.4.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2-redhat-00001?type=jar", + "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml@2.13.4.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jsr310@2.13.4.redhat-00004?type=jar", + "pkg:maven/com.github.mifmif/generex@1.0.2.redhat-00003?type=jar", + "pkg:maven/com.squareup.okhttp3/logging-interceptor@3.14.9.redhat-00010?type=jar", + "pkg:maven/com.squareup.okhttp3/okhttp@3.14.9.redhat-00010?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-admissionregistration@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-apiextensions@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-apps@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-autoscaling@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-batch@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-certificates@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-coordination@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-core@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-discovery@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-events@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-extensions@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-flowcontrol@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-metrics@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-networking@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-node@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-policy@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-rbac@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-scheduling@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-storageclass@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/zjsonpatch@0.3.0.redhat-00001?type=jar", + "pkg:maven/org.slf4j/slf4j-api@1.7.36.redhat-00005?type=jar" + ] + }, + { + "ref": "pkg:maven/io.dekorate/dekorate-core@2.11.3.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.13.4.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2-redhat-00001?type=jar", + "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-properties@2.13.4.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml@2.13.4.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jsr310@2.13.4.redhat-00004?type=jar", + "pkg:maven/commons-codec/commons-codec@1.15.0.redhat-00014?type=jar", + "pkg:maven/io.fabric8/kubernetes-client@5.12.4.redhat-00002?type=jar", + "pkg:maven/org.apache.commons/commons-compress@1.26.1.redhat-00001?type=jar", + "pkg:maven/org.fusesource.jansi/jansi@1.18.0.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.dekorate/option-annotations@2.11.3.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.dekorate/dekorate-core@2.11.3.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.fabric8/openshift-model@5.12.4.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4.redhat-00004?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-admissionregistration@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-core@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-rbac@5.12.4.redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/io.fabric8/openshift-model-clusterautoscaling@5.12.4.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4.redhat-00004?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-core@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/openshift-model@5.12.4.redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/io.fabric8/openshift-model-console@5.12.4.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4.redhat-00004?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-admissionregistration@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-core@5.12.4.redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/io.fabric8/openshift-model-hive@5.12.4.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4.redhat-00004?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-core@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-rbac@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/openshift-model@5.12.4.redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/io.fabric8/openshift-model-installer@5.12.4.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4.redhat-00004?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-admissionregistration@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-core@5.12.4.redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/io.fabric8/openshift-model-machine@5.12.4.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4.redhat-00004?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-core@5.12.4.redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/io.fabric8/openshift-model-machineconfig@5.12.4.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4.redhat-00004?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-core@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/openshift-model@5.12.4.redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/io.fabric8/openshift-model-operator@5.12.4.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4.redhat-00004?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-core@5.12.4.redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/io.fabric8/openshift-model-miscellaneous@5.12.4.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4.redhat-00004?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-core@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/openshift-model@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/openshift-model-operator@5.12.4.redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/io.fabric8/openshift-model-monitoring@5.12.4.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4.redhat-00004?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-core@5.12.4.redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/io.fabric8/openshift-model-operatorhub@5.12.4.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4.redhat-00004?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-apps@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/openshift-model@5.12.4.redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/io.fabric8/openshift-model-storageversionmigrator@5.12.4.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4.redhat-00004?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-core@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/openshift-model@5.12.4.redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/io.fabric8/openshift-model-tuned@5.12.4.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4.redhat-00004?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-core@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/openshift-model@5.12.4.redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/io.fabric8/openshift-model-whereabouts@5.12.4.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4.redhat-00004?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-common@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-model-core@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/openshift-model@5.12.4.redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/io.fabric8/openshift-client@5.12.4.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-client@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/openshift-model@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/openshift-model-clusterautoscaling@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/openshift-model-console@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/openshift-model-hive@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/openshift-model-installer@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/openshift-model-machine@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/openshift-model-machineconfig@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/openshift-model-miscellaneous@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/openshift-model-monitoring@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/openshift-model-operator@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/openshift-model-operatorhub@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/openshift-model-storageversionmigrator@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/openshift-model-tuned@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/openshift-model-whereabouts@5.12.4.redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/io.dekorate/s2i-annotations@2.11.3.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.dekorate/dekorate-core@2.11.3.redhat-00001?type=jar", + "pkg:maven/io.fabric8/openshift-client@5.12.4.redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/io.dekorate/openshift-annotations@2.11.3.redhat-00001?classifier=noapt&type=jar", + "dependsOn": [ + "pkg:maven/io.dekorate/dekorate-core@2.11.3.redhat-00001?type=jar", + "pkg:maven/io.dekorate/option-annotations@2.11.3.redhat-00001?type=jar", + "pkg:maven/io.dekorate/s2i-annotations@2.11.3.redhat-00001?type=jar" + ] + }, + { + "ref": "o.a:readline:2.2.0.redhat-00001#1", + "dependsOn": [ + "pkg:maven/org.fusesource.jansi/jansi@1.18.0.redhat-00001?type=jar" + ] + }, + { + "ref": "o.a:aesh:2.6.0.redhat-00001#1", + "dependsOn": [ + "o.a:readline:2.2.0.redhat-00001#1" + ] + }, + { + "ref": "i.q:quarkus-core-deployment:2.13.9.Final-redhat-00003#1", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-bootstrap-core@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-builder@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-class-change-agent@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-development-mode-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-devtools-utilities@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus.gizmo/gizmo@1.1.1.Final-redhat-00001?type=jar", + "o.a:aesh:2.6.0.redhat-00001#1", + "o.a:readline:2.2.0.redhat-00001#1", + "pkg:maven/org.apache.commons/commons-lang3@3.12.0.redhat-00001?type=jar", + "pkg:maven/org.eclipse.sisu/org.eclipse.sisu.inject@0.3.5.redhat-00001?type=jar", + "pkg:maven/org.graalvm.sdk/graal-sdk@22.3.4.0-1-redhat-00001?type=jar", + "pkg:maven/org.jboss/jandex@2.4.3.Final-redhat-00001?type=jar", + "pkg:maven/org.junit.jupiter/junit-jupiter@5.9.1?type=jar", + "pkg:maven/org.junit.platform/junit-platform-launcher@1.9.1?type=jar", + "pkg:maven/org.ow2.asm/asm@9.3.0.redhat-00001?type=jar", + "pkg:maven/org.ow2.asm/asm-commons@9.3.0.redhat-00001?type=jar", + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-container-image-spi@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "i.q:quarkus-core-deployment:2.13.9.Final-redhat-00003#1" + ] + }, + { + "ref": "i.q:quarkus-vertx-http-dev-console-spi:2.13.9.Final-redhat-00003#1", + "dependsOn": [ + "i.q:quarkus-core-deployment:2.13.9.Final-redhat-00003#1", + "pkg:maven/io.quarkus/quarkus-vertx-http-dev-console-runtime-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus.arc/arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.vertx/vertx-web@4.3.4.redhat-00008?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-container-image-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-container-image@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-container-image-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-container-image-util@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-core-deployment:2.13.9.Final-redhat-00003#1", + "i.q:quarkus-vertx-http-dev-console-spi:2.13.9.Final-redhat-00003#1" + ] + }, + { + "ref": "i.q:quarkus-smallrye-context-propagation-spi:2.13.9.Final-redhat-00003#1", + "dependsOn": [ + "i.q:quarkus-core-deployment:2.13.9.Final-redhat-00003#1", + "pkg:maven/org.eclipse.microprofile.context-propagation/microprofile-context-propagation-api@1.2.0.redhat-00012?type=jar" + ] + }, + { + "ref": "i.q:quarkus-arc-deployment:2.13.9.Final-redhat-00003#1", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-core-deployment:2.13.9.Final-redhat-00003#1", + "i.q:quarkus-smallrye-context-propagation-spi:2.13.9.Final-redhat-00003#1", + "i.q:quarkus-vertx-http-dev-console-spi:2.13.9.Final-redhat-00003#1", + "pkg:maven/io.quarkus.arc/arc-processor@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-kubernetes-client-spi@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-client@5.12.4.redhat-00002?type=jar", + "i.q:quarkus-core-deployment:2.13.9.Final-redhat-00003#1" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-kubernetes-spi@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "i.q:quarkus-core-deployment:2.13.9.Final-redhat-00003#1" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-kubernetes-client-internal-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-client@5.12.4.redhat-00002?type=jar", + "i.q:quarkus-arc-deployment:2.13.9.Final-redhat-00003#1", + "pkg:maven/io.quarkus/quarkus-kubernetes-client-internal@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-kubernetes-client-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-kubernetes-spi@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-container-image-openshift-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.dekorate/openshift-annotations@2.11.3.redhat-00001?classifier=noapt&type=jar", + "pkg:maven/io.quarkus/quarkus-container-image-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-container-image-openshift@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-kubernetes-client-internal-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-kubernetes-client-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-kubernetes-spi@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-vertx-http-dev-console-spi:2.13.9.Final-redhat-00003#1", + "pkg:maven/org.jboss.logging/commons-logging-jboss-logging@1.0.0.Final-redhat-1?type=jar" + ] + }, + { + "ref": "c.g.g:guava:32.0.1.jre-redhat-00001#1", + "dependsOn": [ + "pkg:maven/com.google.errorprone/error_prone_annotations@2.15.0.redhat-00004?type=jar", + "pkg:maven/com.google.guava/failureaccess@1.0.1.redhat-00012?type=jar" + ] + }, + { + "ref": "pkg:maven/com.google.inject/guice@4.0.0.redhat-00003?classifier=no_aop&type=jar", + "dependsOn": [ + "pkg:maven/aopalliance/aopalliance@1.0.0.redhat-00003?type=jar", + "c.g.g:guava:32.0.1.jre-redhat-00001#1" + ] + }, + { + "ref": "pkg:maven/org.apache.maven/maven-artifact@3.8.6.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/org.apache.commons/commons-lang3@3.12.0.redhat-00001?type=jar", + "pkg:maven/org.codehaus.plexus/plexus-utils@3.3.0.redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/org.apache.maven/maven-model@3.8.6.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/org.codehaus.plexus/plexus-utils@3.3.0.redhat-00003?type=jar" + ] + }, + { + "ref": "o.a.m:maven-model-builder:3.8.6.redhat-00002#1", + "dependsOn": [ + "pkg:maven/org.apache.maven/maven-artifact@3.8.6.redhat-00002?type=jar", + "pkg:maven/org.apache.maven/maven-builder-support@3.8.6.redhat-00002?type=jar", + "pkg:maven/org.apache.maven/maven-model@3.8.6.redhat-00002?type=jar", + "pkg:maven/org.codehaus.plexus/plexus-interpolation@1.26.0.redhat-00005?type=jar", + "pkg:maven/org.codehaus.plexus/plexus-utils@3.3.0.redhat-00003?type=jar", + "pkg:maven/org.eclipse.sisu/org.eclipse.sisu.inject@0.3.5.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/org.apache.maven/maven-plugin-api@3.8.6.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/org.apache.maven/maven-artifact@3.8.6.redhat-00002?type=jar", + "pkg:maven/org.apache.maven/maven-model@3.8.6.redhat-00002?type=jar", + "pkg:maven/org.codehaus.plexus/plexus-classworlds@2.6.0?type=jar", + "pkg:maven/org.codehaus.plexus/plexus-utils@3.3.0.redhat-00003?type=jar", + "pkg:maven/org.eclipse.sisu/org.eclipse.sisu.plexus@0.3.5?type=jar" + ] + }, + { + "ref": "pkg:maven/org.apache.maven/maven-repository-metadata@3.8.6.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/org.codehaus.plexus/plexus-utils@3.3.0.redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/org.apache.maven.resolver/maven-resolver-spi@1.6.3?type=jar", + "dependsOn": [ + "pkg:maven/org.apache.maven.resolver/maven-resolver-api@1.6.3?type=jar" + ] + }, + { + "ref": "pkg:maven/org.apache.maven.resolver/maven-resolver-util@1.6.3?type=jar", + "dependsOn": [ + "pkg:maven/org.apache.maven.resolver/maven-resolver-api@1.6.3?type=jar" + ] + }, + { + "ref": "o.a.m.r:maven-resolver-impl:1.6.3#1", + "dependsOn": [ + "pkg:maven/org.apache.commons/commons-lang3@3.12.0.redhat-00001?type=jar", + "pkg:maven/org.apache.maven.resolver/maven-resolver-api@1.6.3?type=jar", + "pkg:maven/org.apache.maven.resolver/maven-resolver-spi@1.6.3?type=jar", + "pkg:maven/org.apache.maven.resolver/maven-resolver-util@1.6.3?type=jar" + ] + }, + { + "ref": "o.a.m:maven-resolver-provider:3.8.6.redhat-00002#1", + "dependsOn": [ + "pkg:maven/org.apache.maven/maven-model@3.8.6.redhat-00002?type=jar", + "o.a.m:maven-model-builder:3.8.6.redhat-00002#1", + "pkg:maven/org.apache.maven/maven-repository-metadata@3.8.6.redhat-00002?type=jar", + "pkg:maven/org.apache.maven.resolver/maven-resolver-api@1.6.3?type=jar", + "o.a.m.r:maven-resolver-impl:1.6.3#1", + "pkg:maven/org.apache.maven.resolver/maven-resolver-spi@1.6.3?type=jar", + "pkg:maven/org.apache.maven.resolver/maven-resolver-util@1.6.3?type=jar", + "pkg:maven/org.codehaus.plexus/plexus-utils@3.3.0.redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/org.apache.maven/maven-settings@3.8.6.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/org.codehaus.plexus/plexus-utils@3.3.0.redhat-00003?type=jar" + ] + }, + { + "ref": "o.c.p:plexus-sec-dispatcher:2.0.0.redhat-00004#1", + "dependsOn": [ + "pkg:maven/org.codehaus.plexus/plexus-cipher@2.0.0.redhat-00004?type=jar" + ] + }, + { + "ref": "o.a.m:maven-settings-builder:3.8.6.redhat-00002#1", + "dependsOn": [ + "pkg:maven/org.apache.maven/maven-builder-support@3.8.6.redhat-00002?type=jar", + "pkg:maven/org.apache.maven/maven-settings@3.8.6.redhat-00002?type=jar", + "pkg:maven/org.codehaus.plexus/plexus-interpolation@1.26.0.redhat-00005?type=jar", + "o.c.p:plexus-sec-dispatcher:2.0.0.redhat-00004#1" + ] + }, + { + "ref": "pkg:maven/org.apache.maven.shared/maven-shared-utils@3.3.4?type=jar", + "dependsOn": [ + "pkg:maven/commons-io/commons-io@2.15.1.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/org.apache.maven/maven-core@3.8.6.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/com.google.inject/guice@4.0.0.redhat-00003?classifier=no_aop&type=jar", + "pkg:maven/org.apache.commons/commons-lang3@3.12.0.redhat-00001?type=jar", + "pkg:maven/org.apache.maven/maven-artifact@3.8.6.redhat-00002?type=jar", + "pkg:maven/org.apache.maven/maven-builder-support@3.8.6.redhat-00002?type=jar", + "pkg:maven/org.apache.maven/maven-model@3.8.6.redhat-00002?type=jar", + "o.a.m:maven-model-builder:3.8.6.redhat-00002#1", + "pkg:maven/org.apache.maven/maven-plugin-api@3.8.6.redhat-00002?type=jar", + "pkg:maven/org.apache.maven/maven-repository-metadata@3.8.6.redhat-00002?type=jar", + "o.a.m:maven-resolver-provider:3.8.6.redhat-00002#1", + "pkg:maven/org.apache.maven/maven-settings@3.8.6.redhat-00002?type=jar", + "o.a.m:maven-settings-builder:3.8.6.redhat-00002#1", + "pkg:maven/org.apache.maven.resolver/maven-resolver-api@1.6.3?type=jar", + "o.a.m.r:maven-resolver-impl:1.6.3#1", + "pkg:maven/org.apache.maven.resolver/maven-resolver-spi@1.6.3?type=jar", + "pkg:maven/org.apache.maven.resolver/maven-resolver-util@1.6.3?type=jar", + "pkg:maven/org.apache.maven.shared/maven-shared-utils@3.3.4?type=jar", + "pkg:maven/org.codehaus.plexus/plexus-classworlds@2.6.0?type=jar", + "pkg:maven/org.codehaus.plexus/plexus-component-annotations@2.1.0?type=jar", + "pkg:maven/org.codehaus.plexus/plexus-interpolation@1.26.0.redhat-00005?type=jar", + "pkg:maven/org.codehaus.plexus/plexus-utils@3.3.0.redhat-00003?type=jar", + "pkg:maven/org.eclipse.sisu/org.eclipse.sisu.inject@0.3.5.redhat-00001?type=jar", + "pkg:maven/org.eclipse.sisu/org.eclipse.sisu.plexus@0.3.5?type=jar" + ] + }, + { + "ref": "pkg:maven/org.apache.maven/maven-embedder@3.8.6.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/com.google.inject/guice@4.0.0.redhat-00003?classifier=no_aop&type=jar", + "pkg:maven/commons-cli/commons-cli@1.4.0.redhat-00001?type=jar", + "pkg:maven/org.apache.commons/commons-lang3@3.12.0.redhat-00001?type=jar", + "pkg:maven/org.apache.maven/maven-builder-support@3.8.6.redhat-00002?type=jar", + "pkg:maven/org.apache.maven/maven-core@3.8.6.redhat-00002?type=jar", + "pkg:maven/org.apache.maven/maven-model@3.8.6.redhat-00002?type=jar", + "o.a.m:maven-model-builder:3.8.6.redhat-00002#1", + "pkg:maven/org.apache.maven/maven-plugin-api@3.8.6.redhat-00002?type=jar", + "pkg:maven/org.apache.maven/maven-settings@3.8.6.redhat-00002?type=jar", + "o.a.m:maven-settings-builder:3.8.6.redhat-00002#1", + "pkg:maven/org.apache.maven.resolver/maven-resolver-api@1.6.3?type=jar", + "pkg:maven/org.apache.maven.resolver/maven-resolver-util@1.6.3?type=jar", + "pkg:maven/org.apache.maven.shared/maven-shared-utils@3.3.4?type=jar", + "pkg:maven/org.codehaus.plexus/plexus-cipher@2.0.0.redhat-00004?type=jar", + "pkg:maven/org.codehaus.plexus/plexus-classworlds@2.6.0?type=jar", + "o.c.p:plexus-sec-dispatcher:2.0.0.redhat-00004#1", + "pkg:maven/org.eclipse.sisu/org.eclipse.sisu.plexus@0.3.5?type=jar" + ] + }, + { + "ref": "pkg:maven/org.apache.maven.resolver/maven-resolver-connector-basic@1.6.3?type=jar", + "dependsOn": [ + "pkg:maven/org.apache.maven.resolver/maven-resolver-api@1.6.3?type=jar", + "pkg:maven/org.apache.maven.resolver/maven-resolver-spi@1.6.3?type=jar", + "pkg:maven/org.apache.maven.resolver/maven-resolver-util@1.6.3?type=jar" + ] + }, + { + "ref": "o.a.m.r:maven-resolver-transport-wagon:1.6.3#1", + "dependsOn": [ + "pkg:maven/org.apache.maven.resolver/maven-resolver-api@1.6.3?type=jar", + "pkg:maven/org.apache.maven.resolver/maven-resolver-spi@1.6.3?type=jar", + "pkg:maven/org.apache.maven.resolver/maven-resolver-util@1.6.3?type=jar" + ] + }, + { + "ref": "pkg:maven/org.apache.maven.wagon/wagon-file@3.5.1?type=jar", + "dependsOn": [ + "pkg:maven/org.apache.maven.wagon/wagon-provider-api@3.5.1?type=jar" + ] + }, + { + "ref": "o.a.h:httpclient:4.5.13.redhat-00006#1", + "dependsOn": [ + "pkg:maven/commons-codec/commons-codec@1.15.0.redhat-00014?type=jar", + "pkg:maven/org.apache.httpcomponents/httpcore@4.4.15.redhat-00008?type=jar" + ] + }, + { + "ref": "pkg:maven/org.apache.maven.wagon/wagon-http-shared@3.5.1?type=jar", + "dependsOn": [ + "o.a.h:httpclient:4.5.13.redhat-00006#1", + "pkg:maven/org.apache.httpcomponents/httpcore@4.4.15.redhat-00008?type=jar", + "pkg:maven/org.apache.maven.wagon/wagon-provider-api@3.5.1?type=jar" + ] + }, + { + "ref": "pkg:maven/org.apache.maven.wagon/wagon-http@3.5.1?type=jar", + "dependsOn": [ + "o.a.h:httpclient:4.5.13.redhat-00006#1", + "pkg:maven/org.apache.httpcomponents/httpcore@4.4.15.redhat-00008?type=jar", + "pkg:maven/org.apache.maven.wagon/wagon-http-shared@3.5.1?type=jar", + "pkg:maven/org.apache.maven.wagon/wagon-provider-api@3.5.1?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-bootstrap-maven-resolver@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-bootstrap-app-model@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-fs-util@0.0.9.redhat-00005?type=jar", + "pkg:maven/org.apache.maven/maven-embedder@3.8.6.redhat-00002?type=jar", + "o.a.m:maven-resolver-provider:3.8.6.redhat-00002#1", + "o.a.m:maven-settings-builder:3.8.6.redhat-00002#1", + "pkg:maven/org.apache.maven.resolver/maven-resolver-connector-basic@1.6.3?type=jar", + "o.a.m.r:maven-resolver-transport-wagon:1.6.3#1", + "pkg:maven/org.apache.maven.wagon/wagon-file@3.5.1?type=jar", + "pkg:maven/org.apache.maven.wagon/wagon-http@3.5.1?type=jar", + "pkg:maven/org.eclipse.sisu/org.eclipse.sisu.plexus@0.3.5?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar", + "pkg:maven/org.jboss.logmanager/jboss-logmanager-embedded@1.0.10.redhat-00001?type=jar", + "pkg:maven/org.jboss.slf4j/slf4j-jboss-logmanager@1.2.0.Final-redhat-00001?type=jar", + "pkg:maven/org.slf4j/slf4j-api@1.7.36.redhat-00005?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-extension-maven-plugin@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2-redhat-00001?type=jar", + "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml@2.13.4.redhat-00004?type=jar", + "pkg:maven/io.quarkus/quarkus-bootstrap-core@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-bootstrap-maven-resolver@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/jakarta.inject/jakarta.inject-api@1.0.0.redhat-00002?type=jar", + "pkg:maven/org.apache.maven/maven-core@3.8.6.redhat-00002?type=jar", + "pkg:maven/org.apache.maven/maven-plugin-api@3.8.6.redhat-00002?type=jar", + "pkg:maven/org.apache.maven.plugin-tools/maven-plugin-annotations@3.6.0.redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-extension-processor@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2-redhat-00001?type=jar", + "pkg:maven/com.github.javaparser/javaparser-core@3.24.2.redhat-00003?type=jar", + "pkg:maven/org.jboss.jdeparser/jdeparser@2.0.3.Final-redhat-00001?type=jar", + "pkg:maven/org.jsoup/jsoup@1.15.3.redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-funqy-server-common@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.smallrye.reactive/mutiny@1.7.0.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jdk8@2.13.4.redhat-00004?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.13.4.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/com.fasterxml.jackson.module/jackson-module-parameter-names@2.13.4.redhat-00004?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.13.4.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-jackson@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2-redhat-00001?type=jar", + "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jdk8@2.13.4.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jsr310@2.13.4.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.module/jackson-module-parameter-names@2.13.4.redhat-00004?type=jar", + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus.security/quarkus-security@1.1.4.Final-redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.smallrye.reactive/mutiny@1.7.0.redhat-00001?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-security-runtime-spi@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus.security/quarkus-security@1.1.4.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.netty/netty-codec-haproxy@4.1.100.Final-redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.netty/netty-buffer@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-codec@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport@4.1.100.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/com.aayushatharva.brotli4j/brotli4j@1.12.0.redhat-00005?type=jar", + "dependsOn": [ + "pkg:maven/com.aayushatharva.brotli4j/native-linux-x86_64@1.12.0.redhat-00005?type=jar", + "pkg:maven/com.aayushatharva.brotli4j/service@1.12.0.redhat-00005?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-netty@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/com.aayushatharva.brotli4j/brotli4j@1.12.0.redhat-00005?type=jar", + "pkg:maven/io.netty/netty-codec@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-codec-http@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-codec-http2@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-handler@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/jakarta.enterprise/jakarta.enterprise.cdi-api@2.0.2.redhat-00005?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-vertx-latebound-mdc-provider@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/org.jboss.logmanager/jboss-logmanager-embedded@1.0.10.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.smallrye.common/smallrye-common-vertx-context@1.13.1.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.smallrye.common/smallrye-common-constraint@1.13.1.redhat-00001?type=jar", + "pkg:maven/io.vertx/vertx-core@4.3.4.redhat-00008?type=jar" + ] + }, + { + "ref": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-runtime@2.27.0.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.smallrye.reactive/mutiny@1.7.0.redhat-00001?type=jar", + "pkg:maven/io.vertx/vertx-core@4.3.4.redhat-00008?type=jar" + ] + }, + { + "ref": "pkg:maven/io.vertx/vertx-codegen@4.3.4.redhat-00008?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.13.4.redhat-00004?type=jar" + ] + }, + { + "ref": "pkg:maven/io.smallrye.reactive/vertx-mutiny-generator@2.27.0.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.smallrye.common/smallrye-common-annotation@1.13.1.redhat-00001?type=jar", + "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-runtime@2.27.0.redhat-00001?type=jar", + "pkg:maven/io.vertx/vertx-codegen@4.3.4.redhat-00008?type=jar" + ] + }, + { + "ref": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-core@2.27.0.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.smallrye.reactive/mutiny@1.7.0.redhat-00001?type=jar", + "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-runtime@2.27.0.redhat-00001?type=jar", + "pkg:maven/io.smallrye.reactive/vertx-mutiny-generator@2.27.0.redhat-00001?type=jar", + "pkg:maven/io.vertx/vertx-core@4.3.4.redhat-00008?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-vertx@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.netty/netty-codec-haproxy@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-mutiny@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-netty@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx-latebound-mdc-provider@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.smallrye/smallrye-fault-tolerance-vertx@5.5.0.redhat-00002?type=jar", + "pkg:maven/io.smallrye.common/smallrye-common-annotation@1.13.1.redhat-00001?type=jar", + "pkg:maven/io.smallrye.common/smallrye-common-vertx-context@1.13.1.redhat-00001?type=jar", + "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-core@2.27.0.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-auth-common@2.27.0.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-core@2.27.0.redhat-00001?type=jar", + "pkg:maven/io.vertx/vertx-auth-common@4.3.4.redhat-00008?type=jar" + ] + }, + { + "ref": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-bridge-common@2.27.0.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-core@2.27.0.redhat-00001?type=jar", + "pkg:maven/io.vertx/vertx-bridge-common@4.3.4.redhat-00008?type=jar" + ] + }, + { + "ref": "pkg:maven/io.vertx/vertx-uri-template@4.3.4.redhat-00008?type=jar", + "dependsOn": [ + "pkg:maven/io.vertx/vertx-core@4.3.4.redhat-00008?type=jar" + ] + }, + { + "ref": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-uri-template@2.27.0.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-core@2.27.0.redhat-00001?type=jar", + "pkg:maven/io.vertx/vertx-uri-template@4.3.4.redhat-00008?type=jar" + ] + }, + { + "ref": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web-common@2.27.0.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-core@2.27.0.redhat-00001?type=jar", + "pkg:maven/io.vertx/vertx-web-common@4.3.4.redhat-00008?type=jar" + ] + }, + { + "ref": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web@2.27.0.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-auth-common@2.27.0.redhat-00001?type=jar", + "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-bridge-common@2.27.0.redhat-00001?type=jar", + "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-core@2.27.0.redhat-00001?type=jar", + "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-uri-template@2.27.0.redhat-00001?type=jar", + "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web-common@2.27.0.redhat-00001?type=jar", + "pkg:maven/io.vertx/vertx-web@4.3.4.redhat-00008?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-vertx-http@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.github.crac/org-crac@0.1.1.redhat-00002?type=jar", + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-credentials@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-mutiny@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-security-runtime-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx-http-dev-console-runtime-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus.security/quarkus-security@1.1.4.Final-redhat-00001?type=jar", + "pkg:maven/io.smallrye.common/smallrye-common-vertx-context@1.13.1.redhat-00001?type=jar", + "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web@2.27.0.redhat-00001?type=jar", + "pkg:maven/io.vertx/vertx-web@4.3.4.redhat-00008?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-funqy-knative-events@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-funqy-server-common@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-jackson@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx-http@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-funqy-server-common-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-funqy-server-common@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-jackson-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-jackson@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-jackson-spi@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "i.q:quarkus-kubernetes-spi:2.13.9.Final-redhat-00003#1", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-netty-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-netty@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-vertx-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-mutiny-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-netty-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-vertx-http-deployment-spi@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus.qute/qute-core@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.smallrye.reactive/mutiny@1.7.0.redhat-00001?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-vertx-http-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2-redhat-00001?type=jar", + "i.q:quarkus-kubernetes-spi:2.13.9.Final-redhat-00003#1", + "pkg:maven/io.quarkus/quarkus-mutiny-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx-http@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx-http-deployment-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus.qute/qute-core@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/org.yaml/snakeyaml@1.33.0.redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-funqy-knative-events-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-funqy-knative-events@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-funqy-server-common-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-jackson-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx-http-deployment@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/com.google.guava/guava@32.0.1.jre-redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/com.google.errorprone/error_prone_annotations@2.15.0.redhat-00004?type=jar", + "pkg:maven/com.google.guava/failureaccess@1.0.1.redhat-00012?type=jar", + "pkg:maven/org.checkerframework/checker-qual@3.25.0?type=jar" + ] + }, + { + "ref": "pkg:maven/io.grpc/grpc-api@1.49.0.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/com.google.code.findbugs/jsr305@3.0.2.redhat-00016?type=jar", + "pkg:maven/com.google.errorprone/error_prone_annotations@2.15.0.redhat-00004?type=jar", + "pkg:maven/com.google.guava/guava@32.0.1.jre-redhat-00001?type=jar", + "pkg:maven/io.grpc/grpc-context@1.49.0.redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/io.grpc/grpc-stub@1.49.0.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/com.google.errorprone/error_prone_annotations@2.15.0.redhat-00004?type=jar", + "pkg:maven/com.google.guava/guava@32.0.1.jre-redhat-00001?type=jar", + "pkg:maven/io.grpc/grpc-api@1.49.0.redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-grpc-api@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.grpc/grpc-stub@1.49.0.redhat-00002?type=jar", + "pkg:maven/jakarta.enterprise/jakarta.enterprise.cdi-api@2.0.2.redhat-00005?type=jar" + ] + }, + { + "ref": "pkg:maven/io.grpc/grpc-core@1.49.0.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/com.google.code.gson/gson@2.9.1.redhat-00003?type=jar", + "pkg:maven/io.grpc/grpc-api@1.49.0.redhat-00002?type=jar", + "pkg:maven/io.perfmark/perfmark-api@0.25.0?type=jar" + ] + }, + { + "ref": "pkg:maven/io.grpc/grpc-netty@1.49.0.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/io.grpc/grpc-core@1.49.0.redhat-00002?type=jar", + "pkg:maven/io.perfmark/perfmark-api@0.25.0?type=jar" + ] + }, + { + "ref": "pkg:maven/com.google.api.grpc/proto-google-common-protos@2.9.2.redhat-00004?type=jar", + "dependsOn": [ + "pkg:maven/com.google.protobuf/protobuf-java@3.19.6.redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.grpc/grpc-protobuf-lite@1.49.0.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/com.google.code.findbugs/jsr305@3.0.2.redhat-00016?type=jar", + "pkg:maven/io.grpc/grpc-api@1.49.0.redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/io.grpc/grpc-protobuf@1.49.0.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/com.google.api.grpc/proto-google-common-protos@2.9.2.redhat-00004?type=jar", + "pkg:maven/com.google.code.findbugs/jsr305@3.0.2.redhat-00016?type=jar", + "pkg:maven/com.google.protobuf/protobuf-java@3.19.6.redhat-00003?type=jar", + "pkg:maven/io.grpc/grpc-api@1.49.0.redhat-00002?type=jar", + "pkg:maven/io.grpc/grpc-protobuf-lite@1.49.0.redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/io.vertx/vertx-grpc@4.3.4.redhat-00008?type=jar", + "dependsOn": [ + "pkg:maven/com.google.guava/guava@32.0.1.jre-redhat-00001?type=jar", + "pkg:maven/io.grpc/grpc-netty@1.49.0.redhat-00002?type=jar", + "pkg:maven/io.grpc/grpc-protobuf@1.49.0.redhat-00002?type=jar", + "pkg:maven/io.grpc/grpc-stub@1.49.0.redhat-00002?type=jar", + "pkg:maven/io.vertx/vertx-core@4.3.4.redhat-00008?type=jar", + "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5.redhat-00008?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-grpc-common@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/com.google.code.findbugs/jsr305@3.0.2.redhat-00016?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.vertx/vertx-grpc@4.3.4.redhat-00008?type=jar" + ] + }, + { + "ref": "pkg:maven/com.google.protobuf/protobuf-java-util@3.19.6.redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/com.google.code.findbugs/jsr305@3.0.2.redhat-00016?type=jar", + "pkg:maven/com.google.code.gson/gson@2.9.1.redhat-00003?type=jar", + "pkg:maven/com.google.errorprone/error_prone_annotations@2.15.0.redhat-00004?type=jar", + "pkg:maven/com.google.guava/guava@32.0.1.jre-redhat-00001?type=jar", + "pkg:maven/com.google.j2objc/j2objc-annotations@2.8.0.redhat-00002?type=jar", + "pkg:maven/com.google.protobuf/protobuf-java@3.19.6.redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-grpc-codegen@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/com.github.javaparser/javaparser-core@3.24.2.redhat-00003?type=jar", + "pkg:maven/com.google.protobuf/protobuf-java-util@3.19.6.redhat-00003?type=jar", + "pkg:maven/com.google.protobuf/protoc@3.19.6?classifier=linux-aarch_64&type=exe", + "pkg:maven/com.google.protobuf/protoc@3.19.6?classifier=linux-x86_32&type=exe", + "pkg:maven/com.google.protobuf/protoc@3.19.6?classifier=linux-x86_64&type=exe", + "pkg:maven/com.google.protobuf/protoc@3.19.6?classifier=osx-aarch_64&type=exe", + "pkg:maven/com.google.protobuf/protoc@3.19.6?classifier=osx-x86_64&type=exe", + "pkg:maven/com.google.protobuf/protoc@3.19.6?classifier=windows-x86_32&type=exe", + "pkg:maven/com.google.protobuf/protoc@3.19.6?classifier=windows-x86_64&type=exe", + "pkg:maven/io.grpc/protoc-gen-grpc-java@1.49.0?classifier=linux-aarch_64&type=exe", + "pkg:maven/io.grpc/protoc-gen-grpc-java@1.49.0?classifier=linux-x86_32&type=exe", + "pkg:maven/io.grpc/protoc-gen-grpc-java@1.49.0?classifier=linux-x86_64&type=exe", + "pkg:maven/io.grpc/protoc-gen-grpc-java@1.49.0?classifier=osx-aarch_64&type=exe", + "pkg:maven/io.grpc/protoc-gen-grpc-java@1.49.0?classifier=osx-x86_64&type=exe", + "pkg:maven/io.grpc/protoc-gen-grpc-java@1.49.0?classifier=windows-x86_32&type=exe", + "pkg:maven/io.grpc/protoc-gen-grpc-java@1.49.0?classifier=windows-x86_64&type=exe", + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-devtools-utilities@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-grpc-protoc-plugin@2.13.9.Final?classifier=shaded&type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-grpc-stubs@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.grpc/grpc-protobuf@1.49.0.redhat-00002?type=jar", + "pkg:maven/io.grpc/grpc-stub@1.49.0.redhat-00002?type=jar", + "pkg:maven/io.quarkus/quarkus-grpc-api@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-grpc-codegen@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-mutiny@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.smallrye.stork/stork-api@1.1.2.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/io.smallrye.reactive/mutiny@1.7.0.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.smallrye.stork/stork-core@1.1.2.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/io.smallrye.stork/stork-api@1.1.2.redhat-00002?type=jar", + "pkg:maven/org.slf4j/slf4j-api@1.7.36.redhat-00005?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-smallrye-stork@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.smallrye.stork/stork-api@1.1.2.redhat-00002?type=jar", + "pkg:maven/io.smallrye.stork/stork-core@1.1.2.redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-grpc@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.grpc/grpc-stub@1.49.0.redhat-00002?type=jar", + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-grpc-api@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-grpc-common@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-grpc-stubs@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-mutiny@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-smallrye-stork@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus.security/quarkus-security@1.1.4.Final-redhat-00001?type=jar", + "pkg:maven/io.smallrye.common/smallrye-common-annotation@1.13.1.redhat-00001?type=jar", + "pkg:maven/io.smallrye.common/smallrye-common-vertx-context@1.13.1.redhat-00001?type=jar", + "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5.redhat-00008?type=jar" + ] + }, + { + "ref": "i.g:grpc-api:1.49.0.redhat-00002#1", + "dependsOn": [ + "pkg:maven/com.google.errorprone/error_prone_annotations@2.15.0.redhat-00004?type=jar", + "c.g.g:guava:32.0.1.jre-redhat-00001#1", + "pkg:maven/io.grpc/grpc-context@1.49.0.redhat-00002?type=jar" + ] + }, + { + "ref": "i.g:grpc-stub:1.49.0.redhat-00002#1", + "dependsOn": [ + "pkg:maven/com.google.errorprone/error_prone_annotations@2.15.0.redhat-00004?type=jar", + "c.g.g:guava:32.0.1.jre-redhat-00001#1", + "i.g:grpc-api:1.49.0.redhat-00002#1" + ] + }, + { + "ref": "i.q:quarkus-grpc-api:2.13.9.Final-redhat-00003#1", + "dependsOn": [ + "i.g:grpc-stub:1.49.0.redhat-00002#1", + "pkg:maven/jakarta.enterprise/jakarta.enterprise.cdi-api@2.0.2.redhat-00005?type=jar" + ] + }, + { + "ref": "i.g:grpc-core:1.49.0.redhat-00002#1", + "dependsOn": [ + "pkg:maven/com.google.code.gson/gson@2.9.1.redhat-00003?type=jar", + "i.g:grpc-api:1.49.0.redhat-00002#1", + "pkg:maven/io.perfmark/perfmark-api@0.25.0?type=jar" + ] + }, + { + "ref": "i.g:grpc-netty:1.49.0.redhat-00002#1", + "dependsOn": [ + "i.g:grpc-core:1.49.0.redhat-00002#1", + "pkg:maven/io.perfmark/perfmark-api@0.25.0?type=jar" + ] + }, + { + "ref": "i.g:grpc-protobuf-lite:1.49.0.redhat-00002#1", + "dependsOn": [ + "i.g:grpc-api:1.49.0.redhat-00002#1" + ] + }, + { + "ref": "i.g:grpc-protobuf:1.49.0.redhat-00002#1", + "dependsOn": [ + "pkg:maven/com.google.api.grpc/proto-google-common-protos@2.9.2.redhat-00004?type=jar", + "pkg:maven/com.google.protobuf/protobuf-java@3.19.6.redhat-00003?type=jar", + "i.g:grpc-api:1.49.0.redhat-00002#1", + "i.g:grpc-protobuf-lite:1.49.0.redhat-00002#1" + ] + }, + { + "ref": "i.v:vertx-grpc:4.3.4.redhat-00008#1", + "dependsOn": [ + "c.g.g:guava:32.0.1.jre-redhat-00001#1", + "i.g:grpc-netty:1.49.0.redhat-00002#1", + "i.g:grpc-protobuf:1.49.0.redhat-00002#1", + "i.g:grpc-stub:1.49.0.redhat-00002#1", + "pkg:maven/io.vertx/vertx-core@4.3.4.redhat-00008?type=jar", + "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5.redhat-00008?type=jar" + ] + }, + { + "ref": "i.q:quarkus-grpc-common:2.13.9.Final-redhat-00003#1", + "dependsOn": [ + "pkg:maven/com.google.code.findbugs/jsr305@3.0.2.redhat-00016?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx@2.13.9.Final-redhat-00003?type=jar", + "i.v:vertx-grpc:4.3.4.redhat-00008#1" + ] + }, + { + "ref": "i.q:quarkus-grpc:2.13.9.Final-redhat-00003#1", + "dependsOn": [ + "i.g:grpc-stub:1.49.0.redhat-00002#1", + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-grpc-api:2.13.9.Final-redhat-00003#1", + "i.q:quarkus-grpc-common:2.13.9.Final-redhat-00003#1", + "i.q:quarkus-grpc-stubs:2.13.9.Final-redhat-00003#1", + "pkg:maven/io.quarkus/quarkus-mutiny@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-smallrye-stork@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus.security/quarkus-security@1.1.4.Final-redhat-00001?type=jar", + "pkg:maven/io.smallrye.common/smallrye-common-annotation@1.13.1.redhat-00001?type=jar", + "pkg:maven/io.smallrye.common/smallrye-common-vertx-context@1.13.1.redhat-00001?type=jar", + "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5.redhat-00008?type=jar" + ] + }, + { + "ref": "c.g.p:protobuf-java-util:3.19.6.redhat-00003#1", + "dependsOn": [ + "pkg:maven/com.google.code.findbugs/jsr305@3.0.2.redhat-00016?type=jar", + "pkg:maven/com.google.code.gson/gson@2.9.1.redhat-00003?type=jar", + "pkg:maven/com.google.errorprone/error_prone_annotations@2.15.0.redhat-00004?type=jar", + "c.g.g:guava:32.0.1.jre-redhat-00001#1", + "pkg:maven/com.google.j2objc/j2objc-annotations@2.8.0.redhat-00002?type=jar", + "pkg:maven/com.google.protobuf/protobuf-java@3.19.6.redhat-00003?type=jar" + ] + }, + { + "ref": "i.q:quarkus-grpc-codegen:2.13.9.Final-redhat-00003#1", + "dependsOn": [ + "pkg:maven/com.github.javaparser/javaparser-core@3.24.2.redhat-00003?type=jar", + "c.g.p:protobuf-java-util:3.19.6.redhat-00003#1", + "pkg:maven/com.google.protobuf/protoc@3.19.6?classifier=linux-aarch_64&type=exe", + "pkg:maven/com.google.protobuf/protoc@3.19.6?classifier=linux-x86_32&type=exe", + "pkg:maven/com.google.protobuf/protoc@3.19.6?classifier=linux-x86_64&type=exe", + "pkg:maven/com.google.protobuf/protoc@3.19.6?classifier=osx-aarch_64&type=exe", + "pkg:maven/com.google.protobuf/protoc@3.19.6?classifier=osx-x86_64&type=exe", + "pkg:maven/com.google.protobuf/protoc@3.19.6?classifier=windows-x86_32&type=exe", + "pkg:maven/com.google.protobuf/protoc@3.19.6?classifier=windows-x86_64&type=exe", + "pkg:maven/io.grpc/protoc-gen-grpc-java@1.49.0?classifier=linux-aarch_64&type=exe", + "pkg:maven/io.grpc/protoc-gen-grpc-java@1.49.0?classifier=linux-x86_32&type=exe", + "pkg:maven/io.grpc/protoc-gen-grpc-java@1.49.0?classifier=linux-x86_64&type=exe", + "pkg:maven/io.grpc/protoc-gen-grpc-java@1.49.0?classifier=osx-aarch_64&type=exe", + "pkg:maven/io.grpc/protoc-gen-grpc-java@1.49.0?classifier=osx-x86_64&type=exe", + "pkg:maven/io.grpc/protoc-gen-grpc-java@1.49.0?classifier=windows-x86_32&type=exe", + "pkg:maven/io.grpc/protoc-gen-grpc-java@1.49.0?classifier=windows-x86_64&type=exe", + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-devtools-utilities@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-grpc-protoc-plugin@2.13.9.Final?classifier=shaded&type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-grpc-common-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-grpc-common:2.13.9.Final-redhat-00003#1", + "pkg:maven/io.quarkus/quarkus-vertx-deployment@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-smallrye-stork-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-smallrye-stork@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx-deployment@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-grpc-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-devtools-utilities@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-grpc:2.13.9.Final-redhat-00003#1", + "i.q:quarkus-grpc-codegen:2.13.9.Final-redhat-00003#1", + "pkg:maven/io.quarkus/quarkus-grpc-common-deployment@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-kubernetes-spi:2.13.9.Final-redhat-00003#1", + "pkg:maven/io.quarkus/quarkus-smallrye-health-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-smallrye-stork-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx-http-dev-console-spi@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/org.glassfish.jaxb/jaxb-runtime@2.3.3.b02-redhat-00004?type=jar", + "dependsOn": [ + "pkg:maven/com.sun.activation/jakarta.activation@1.2.1.redhat-00005?type=jar", + "pkg:maven/com.sun.istack/istack-commons-runtime@3.0.10.redhat-00003?type=jar", + "pkg:maven/jakarta.xml.bind/jakarta.xml.bind-api@2.3.3.redhat-00003?type=jar", + "pkg:maven/org.glassfish.jaxb/txw2@2.3.3.b02-redhat-00004?type=jar" + ] + }, + { + "ref": "pkg:maven/javax.xml.bind/jaxb-api@2.3.1.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/javax.activation/javax.activation-api@1.2.0.redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/org.hibernate.common/hibernate-commons-annotations@5.1.2.Final-redhat-00006?type=jar", + "dependsOn": [ + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/org.hibernate/hibernate-core@5.6.15.Final-redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/antlr/antlr@2.7.7.redhat-7?type=jar", + "pkg:maven/com.fasterxml/classmate@1.5.1.redhat-00003?type=jar", + "pkg:maven/javax.activation/javax.activation-api@1.2.0.redhat-00002?type=jar", + "pkg:maven/javax.persistence/javax.persistence-api@2.2?type=jar", + "pkg:maven/javax.xml.bind/jaxb-api@2.3.1.redhat-00002?type=jar", + "pkg:maven/net.bytebuddy/byte-buddy@1.12.18.redhat-00004?type=jar", + "pkg:maven/org.glassfish.jaxb/jaxb-runtime@2.3.3.b02-redhat-00004?type=jar", + "pkg:maven/org.hibernate.common/hibernate-commons-annotations@5.1.2.Final-redhat-00006?type=jar", + "pkg:maven/org.jboss/jandex@2.4.3.Final-redhat-00001?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar", + "pkg:maven/org.jboss.spec.javax.transaction/jboss-transaction-api_1.2_spec@1.1.1.Final?type=jar" + ] + }, + { + "ref": "pkg:maven/org.hibernate/hibernate-graalvm@5.6.15.Final-redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/org.hibernate/quarkus-local-cache@0.1.1.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/com.github.ben-manes.caffeine/caffeine@2.9.3.redhat-00003?type=jar", + "pkg:maven/org.hibernate/hibernate-core@5.6.15.Final-redhat-00001?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-hibernate-orm@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "i.q:quarkus-agroal:2.13.9.Final-redhat-00003#1", + "pkg:maven/io.quarkus/quarkus-caffeine@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-narayana-jta:2.13.9.Final-redhat-00003#1", + "pkg:maven/jakarta.persistence/jakarta.persistence-api@2.2.3.redhat-00001?type=jar", + "pkg:maven/jakarta.transaction/jakarta.transaction-api@1.3.3.redhat-00004?type=jar", + "pkg:maven/org.glassfish.jaxb/jaxb-runtime@2.3.3.b02-redhat-00004?type=jar", + "pkg:maven/org.hibernate/hibernate-core@5.6.15.Final-redhat-00001?type=jar", + "pkg:maven/org.hibernate/hibernate-graalvm@5.6.15.Final-redhat-00001?type=jar", + "pkg:maven/org.hibernate/quarkus-local-cache@0.1.1.redhat-00002?type=jar", + "pkg:maven/org.jboss.spec.javax.xml.bind/jboss-jaxb-api_2.3_spec@2.0.0.Final-redhat-00004?type=jar" + ] + }, + { + "ref": "o.g.j:jaxb-runtime:2.3.3.b02-redhat-00004#1", + "dependsOn": [ + "pkg:maven/com.sun.activation/jakarta.activation@1.2.1.redhat-00005?type=jar", + "pkg:maven/com.sun.istack/istack-commons-runtime@3.0.10.redhat-00003?type=jar", + "pkg:maven/org.glassfish.jaxb/txw2@2.3.3.b02-redhat-00004?type=jar" + ] + }, + { + "ref": "o.h:hibernate-core:5.6.15.Final-redhat-00001#1", + "dependsOn": [ + "pkg:maven/antlr/antlr@2.7.7.redhat-7?type=jar", + "pkg:maven/com.fasterxml/classmate@1.5.1.redhat-00003?type=jar", + "pkg:maven/net.bytebuddy/byte-buddy@1.12.18.redhat-00004?type=jar", + "pkg:maven/org.hibernate.common/hibernate-commons-annotations@5.1.2.Final-redhat-00006?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "i.q:quarkus-hibernate-orm:2.13.9.Final-redhat-00003#1", + "dependsOn": [ + "i.q:quarkus-agroal:2.13.9.Final-redhat-00003#1", + "pkg:maven/io.quarkus/quarkus-caffeine@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-narayana-jta:2.13.9.Final-redhat-00003#1", + "pkg:maven/jakarta.persistence/jakarta.persistence-api@2.2.3.redhat-00001?type=jar", + "pkg:maven/jakarta.transaction/jakarta.transaction-api@1.3.3.redhat-00004?type=jar", + "o.g.j:jaxb-runtime:2.3.3.b02-redhat-00004#1", + "o.h:hibernate-core:5.6.15.Final-redhat-00001#1", + "pkg:maven/org.hibernate/hibernate-graalvm@5.6.15.Final-redhat-00001?type=jar", + "o.h:quarkus-local-cache:0.1.1.redhat-00002#1", + "pkg:maven/org.jboss.spec.javax.xml.bind/jboss-jaxb-api_2.3_spec@2.0.0.Final-redhat-00004?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-hibernate-orm-deployment-spi@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-panache-common@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-panache-common-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-panache-common@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/jakarta.validation/jakarta.validation-api@2.0.2.redhat-00007?type=jar", + "pkg:maven/org.jboss/jandex@2.4.3.Final-redhat-00001?type=jar", + "pkg:maven/org.ow2.asm/asm@9.3.0.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-panache-hibernate-common@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-panache-common@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/jakarta.persistence/jakarta.persistence-api@2.2.3.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-panache-hibernate-common-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-panache-common-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-panache-hibernate-common@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/org.jboss/jandex@2.4.3.Final-redhat-00001?type=jar", + "pkg:maven/org.ow2.asm/asm@9.3.0.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-spi-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/org.jboss.spec.javax.ws.rs/jboss-jaxrs-api_2.1_spec@2.0.1.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-common-types@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/org.jboss.spec.javax.ws.rs/jboss-jaxrs-api_2.1_spec@2.0.1.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-common@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-common-types@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.smallrye.common/smallrye-common-annotation@1.13.1.redhat-00001?type=jar", + "pkg:maven/io.smallrye.reactive/mutiny@1.7.0.redhat-00001?type=jar", + "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5.redhat-00008?type=jar", + "pkg:maven/jakarta.enterprise/jakarta.enterprise.cdi-api@2.0.2.redhat-00005?type=jar", + "pkg:maven/org.glassfish/jakarta.json@1.1.6.redhat-00003?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar", + "pkg:maven/org.jboss.spec.javax.ws.rs/jboss-jaxrs-api_2.1_spec@2.0.1.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-common@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5.redhat-00008?type=jar", + "pkg:maven/jakarta.enterprise/jakarta.enterprise.cdi-api@2.0.2.redhat-00005?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar", + "pkg:maven/org.jboss.spec.javax.ws.rs/jboss-jaxrs-api_2.1_spec@2.0.1.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-common-processor@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus.gizmo/gizmo@1.1.1.Final-redhat-00001?type=jar", + "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-common@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5.redhat-00008?type=jar", + "pkg:maven/jakarta.enterprise/jakarta.enterprise.cdi-api@2.0.2.redhat-00005?type=jar", + "pkg:maven/org.jboss/jandex@2.4.3.Final-redhat-00001?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar", + "pkg:maven/org.jboss.spec.javax.ws.rs/jboss-jaxrs-api_2.1_spec@2.0.1.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-processor@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus.gizmo/gizmo@1.1.1.Final-redhat-00001?type=jar", + "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-common-processor@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5.redhat-00008?type=jar", + "pkg:maven/jakarta.enterprise/jakarta.enterprise.cdi-api@2.0.2.redhat-00005?type=jar", + "pkg:maven/org.jboss/jandex@2.4.3.Final-redhat-00001?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar", + "pkg:maven/org.jboss.spec.javax.ws.rs/jboss-jaxrs-api_2.1_spec@2.0.1.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-server-spi-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-resteasy-reactive-spi-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-processor@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-hibernate-orm-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-agroal-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-caffeine-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-hibernate-orm:2.13.9.Final-redhat-00003#1", + "pkg:maven/io.quarkus/quarkus-hibernate-orm-deployment-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-narayana-jta-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-panache-hibernate-common-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-resteasy-reactive-server-spi-deployment@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache-common@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "i.q:quarkus-hibernate-orm:2.13.9.Final-redhat-00003#1", + "pkg:maven/io.quarkus/quarkus-panache-hibernate-common@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-hibernate-orm:2.13.9.Final-redhat-00003#1", + "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache-common@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-panache-common@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache-common-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-hibernate-orm-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache-common@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-panache-common-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/org.ow2.asm/asm@9.3.0.redhat-00001?type=jar", + "pkg:maven/org.ow2.asm/asm-analysis@9.3.0.redhat-00001?type=jar", + "pkg:maven/org.ow2.asm/asm-tree@9.3.0.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache-common-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-panache-hibernate-common-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/org.ow2.asm/asm@9.3.0.redhat-00001?type=jar", + "pkg:maven/org.ow2.asm/asm-analysis@9.3.0.redhat-00001?type=jar", + "pkg:maven/org.ow2.asm/asm-tree@9.3.0.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-hal@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/org.jboss.spec.javax.ws.rs/jboss-jaxrs-api_2.1_spec@2.0.1.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-rest-data-panache@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-hal@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-panache-common@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/jakarta.validation/jakarta.validation-api@2.0.2.redhat-00007?type=jar", + "pkg:maven/org.jboss.spec.javax.ws.rs/jboss-jaxrs-api_2.1_spec@2.0.1.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-hibernate-orm-rest-data-panache@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-rest-data-panache@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-jsonb-spi@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-hal-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-hal@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-jackson-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-jsonb-spi@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-resteasy-common-spi@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-rest-data-panache-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-hal-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-panache-common@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-panache-common-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-rest-data-panache@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-resteasy-common-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-resteasy-reactive-spi-deployment@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-hibernate-orm-rest-data-panache-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-hibernate-orm-rest-data-panache@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-rest-data-panache-deployment@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.vertx/vertx-sql-client@4.3.4.redhat-00008?type=jar", + "dependsOn": [ + "pkg:maven/io.vertx/vertx-core@4.3.4.redhat-00008?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-reactive-datasource@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-datasource@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.vertx/vertx-sql-client@4.3.4.redhat-00008?type=jar" + ] + }, + { + "ref": "pkg:maven/org.hibernate.reactive/hibernate-reactive-core@1.1.8.Final-redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.smallrye.reactive/mutiny@1.7.0.redhat-00001?type=jar", + "pkg:maven/io.vertx/vertx-sql-client@4.3.4.redhat-00008?type=jar", + "o.h:hibernate-core:5.6.15.Final-redhat-00001#1", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-hibernate-reactive@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "i.q:quarkus-hibernate-orm:2.13.9.Final-redhat-00003#1", + "pkg:maven/io.quarkus/quarkus-mutiny@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-reactive-datasource@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/org.hibernate.reactive/hibernate-reactive-core@1.1.8.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "o.h.r:hibernate-reactive-core:1.1.8.Final-redhat-00001#1", + "dependsOn": [ + "pkg:maven/io.vertx/vertx-sql-client@4.3.4.redhat-00008?type=jar", + "o.h:hibernate-core:5.6.15.Final-redhat-00001#1", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "i.q:quarkus-hibernate-reactive:2.13.9.Final-redhat-00003#1", + "dependsOn": [ + "i.q:quarkus-hibernate-orm:2.13.9.Final-redhat-00003#1", + "pkg:maven/io.quarkus/quarkus-mutiny@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-reactive-datasource@2.13.9.Final-redhat-00003?type=jar", + "o.h.r:hibernate-reactive-core:1.1.8.Final-redhat-00001#1" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-reactive-datasource-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-datasource-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-reactive-datasource@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx-deployment@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-hibernate-reactive-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-agroal-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-hibernate-orm-deployment@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-hibernate-reactive:2.13.9.Final-redhat-00003#1", + "pkg:maven/io.quarkus/quarkus-mutiny-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-reactive-datasource-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-resteasy-reactive-server-spi-deployment@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-apache-httpclient@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/org.apache.httpcomponents/httpclient@4.5.13.redhat-00006?type=jar", + "pkg:maven/org.jboss.logging/commons-logging-jboss-logging@1.0.0.Final-redhat-1?type=jar" + ] + }, + { + "ref": "pkg:maven/org.elasticsearch.client/elasticsearch-rest-client@8.4.3.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/commons-codec/commons-codec@1.15.0.redhat-00014?type=jar", + "pkg:maven/org.apache.httpcomponents/httpasyncclient@4.1.5.redhat-00004?type=jar", + "pkg:maven/org.apache.httpcomponents/httpclient@4.5.13.redhat-00006?type=jar", + "pkg:maven/org.apache.httpcomponents/httpcore@4.4.15.redhat-00008?type=jar", + "pkg:maven/org.apache.httpcomponents/httpcore-nio@4.4.15.redhat-00008?type=jar" + ] + }, + { + "ref": "pkg:maven/org.elasticsearch.client/elasticsearch-rest-client-sniffer@8.4.3.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.13.4.redhat-00004?type=jar", + "pkg:maven/commons-codec/commons-codec@1.15.0.redhat-00014?type=jar", + "pkg:maven/org.apache.httpcomponents/httpclient@4.5.13.redhat-00006?type=jar", + "pkg:maven/org.apache.httpcomponents/httpcore@4.4.15.redhat-00008?type=jar", + "pkg:maven/org.elasticsearch.client/elasticsearch-rest-client@8.4.3.redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-elasticsearch-rest-client-common@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-apache-httpclient@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/org.elasticsearch.client/elasticsearch-rest-client@8.4.3.redhat-00002?type=jar", + "pkg:maven/org.elasticsearch.client/elasticsearch-rest-client-sniffer@8.4.3.redhat-00002?type=jar", + "pkg:maven/org.jboss.logging/commons-logging-jboss-logging@1.0.0.Final-redhat-1?type=jar" + ] + }, + { + "ref": "pkg:maven/org.hibernate.search/hibernate-search-util-common@6.1.7.Final-redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/org.hibernate.search/hibernate-search-engine@6.1.7.Final-redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/org.hibernate.search/hibernate-search-util-common@6.1.7.Final-redhat-00002?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/org.hibernate.search/hibernate-search-backend-elasticsearch@6.1.7.Final-redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/com.google.code.gson/gson@2.9.1.redhat-00003?type=jar", + "pkg:maven/org.elasticsearch.client/elasticsearch-rest-client@8.4.3.redhat-00002?type=jar", + "pkg:maven/org.elasticsearch.client/elasticsearch-rest-client-sniffer@8.4.3.redhat-00002?type=jar", + "pkg:maven/org.hibernate.search/hibernate-search-engine@6.1.7.Final-redhat-00002?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/org.hibernate.search/hibernate-search-mapper-pojo-base@6.1.7.Final-redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/org.hibernate.search/hibernate-search-engine@6.1.7.Final-redhat-00002?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/org.hibernate.search/hibernate-search-mapper-orm@6.1.7.Final-redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/javax.persistence/javax.persistence-api@2.2?type=jar", + "o.h:hibernate-core:5.6.15.Final-redhat-00001#1", + "pkg:maven/org.hibernate.search/hibernate-search-engine@6.1.7.Final-redhat-00002?type=jar", + "pkg:maven/org.hibernate.search/hibernate-search-mapper-pojo-base@6.1.7.Final-redhat-00002?type=jar", + "pkg:maven/org.hibernate.search/hibernate-search-util-common@6.1.7.Final-redhat-00002?type=jar", + "pkg:maven/org.jboss/jandex@2.4.3.Final-redhat-00001?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-hibernate-search-orm-elasticsearch@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-elasticsearch-rest-client-common@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-hibernate-orm:2.13.9.Final-redhat-00003#1", + "pkg:maven/jakarta.persistence/jakarta.persistence-api@2.2.3.redhat-00001?type=jar", + "pkg:maven/org.hibernate.search/hibernate-search-backend-elasticsearch@6.1.7.Final-redhat-00002?type=jar", + "pkg:maven/org.hibernate.search/hibernate-search-mapper-orm@6.1.7.Final-redhat-00002?type=jar" + ] + }, + { + "ref": "i.q:quarkus-apache-httpclient:2.13.9.Final-redhat-00003#1", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "o.a.h:httpclient:4.5.13.redhat-00006#1", + "pkg:maven/org.jboss.logging/commons-logging-jboss-logging@1.0.0.Final-redhat-1?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-apache-httpclient-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "i.q:quarkus-apache-httpclient:2.13.9.Final-redhat-00003#1", + "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "o.e.c:elasticsearch-rest-client:8.4.3.redhat-00002#1", + "dependsOn": [ + "pkg:maven/commons-codec/commons-codec@1.15.0.redhat-00014?type=jar", + "pkg:maven/org.apache.httpcomponents/httpasyncclient@4.1.5.redhat-00004?type=jar", + "o.a.h:httpclient:4.5.13.redhat-00006#1", + "pkg:maven/org.apache.httpcomponents/httpcore@4.4.15.redhat-00008?type=jar", + "pkg:maven/org.apache.httpcomponents/httpcore-nio@4.4.15.redhat-00008?type=jar" + ] + }, + { + "ref": "o.e.c:elasticsearch-rest-client-sniffer:8.4.3.redhat-00002#1", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.13.4.redhat-00004?type=jar", + "pkg:maven/commons-codec/commons-codec@1.15.0.redhat-00014?type=jar", + "o.a.h:httpclient:4.5.13.redhat-00006#1", + "pkg:maven/org.apache.httpcomponents/httpcore@4.4.15.redhat-00008?type=jar", + "o.e.c:elasticsearch-rest-client:8.4.3.redhat-00002#1" + ] + }, + { + "ref": "i.q:quarkus-elasticsearch-rest-client-common:2.13.9.Final-redhat-00003#1", + "dependsOn": [ + "i.q:quarkus-apache-httpclient:2.13.9.Final-redhat-00003#1", + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "o.e.c:elasticsearch-rest-client:8.4.3.redhat-00002#1", + "o.e.c:elasticsearch-rest-client-sniffer:8.4.3.redhat-00002#1", + "pkg:maven/org.jboss.logging/commons-logging-jboss-logging@1.0.0.Final-redhat-1?type=jar" + ] + }, + { + "ref": "pkg:maven/org.testcontainers/elasticsearch@1.17.3?type=jar", + "dependsOn": [ + "pkg:maven/org.testcontainers/testcontainers@1.17.3?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-elasticsearch-rest-client-common-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-apache-httpclient-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-devservices-deployment@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-elasticsearch-rest-client-common:2.13.9.Final-redhat-00003#1", + "pkg:maven/org.testcontainers/elasticsearch@1.17.3?type=jar" + ] + }, + { + "ref": "o.h.s:hibernate-search-backend-elasticsearch:6.1.7.Final-redhat-00002#1", + "dependsOn": [ + "pkg:maven/com.google.code.gson/gson@2.9.1.redhat-00003?type=jar", + "o.e.c:elasticsearch-rest-client:8.4.3.redhat-00002#1", + "o.e.c:elasticsearch-rest-client-sniffer:8.4.3.redhat-00002#1", + "pkg:maven/org.hibernate.search/hibernate-search-engine@6.1.7.Final-redhat-00002?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "o.h.s:hibernate-search-mapper-orm:6.1.7.Final-redhat-00002#1", + "dependsOn": [ + "o.h:hibernate-core:5.6.15.Final-redhat-00001#1", + "pkg:maven/org.hibernate.search/hibernate-search-engine@6.1.7.Final-redhat-00002?type=jar", + "pkg:maven/org.hibernate.search/hibernate-search-mapper-pojo-base@6.1.7.Final-redhat-00002?type=jar", + "pkg:maven/org.hibernate.search/hibernate-search-util-common@6.1.7.Final-redhat-00002?type=jar", + "pkg:maven/org.jboss/jandex@2.4.3.Final-redhat-00001?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "i.q:quarkus-hibernate-search-orm-elasticsearch:2.13.9.Final-redhat-00003#1", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-elasticsearch-rest-client-common:2.13.9.Final-redhat-00003#1", + "i.q:quarkus-hibernate-orm:2.13.9.Final-redhat-00003#1", + "pkg:maven/jakarta.persistence/jakarta.persistence-api@2.2.3.redhat-00001?type=jar", + "o.h.s:hibernate-search-backend-elasticsearch:6.1.7.Final-redhat-00002#1", + "o.h.s:hibernate-search-mapper-orm:6.1.7.Final-redhat-00002#1" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-hibernate-search-orm-elasticsearch-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-elasticsearch-rest-client-common-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-hibernate-orm-deployment@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-hibernate-search-orm-elasticsearch:2.13.9.Final-redhat-00003#1" + ] + }, + { + "ref": "pkg:maven/io.smallrye.config/smallrye-config-validator@2.12.3.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.smallrye.config/smallrye-config@2.12.3.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/org.hibernate.validator/hibernate-validator@6.2.5.Final-redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml/classmate@1.5.1.redhat-00003?type=jar", + "pkg:maven/jakarta.validation/jakarta.validation-api@2.0.2.redhat-00007?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-hibernate-validator@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.smallrye.config/smallrye-config-validator@2.12.3.redhat-00001?type=jar", + "pkg:maven/org.glassfish/jakarta.el@3.0.4.redhat-00002?type=jar", + "pkg:maven/org.hibernate.validator/hibernate-validator@6.2.5.Final-redhat-00001?type=jar", + "pkg:maven/org.jboss.spec.javax.ws.rs/jboss-jaxrs-api_2.1_spec@2.0.1.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-hibernate-validator-spi@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-jaxrs-spi-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-resteasy-server-common-spi@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-hibernate-validator-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-hibernate-validator@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-hibernate-validator-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-jaxrs-spi-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-resteasy-common-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-resteasy-reactive-spi-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-resteasy-server-common-spi@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.opentelemetry/opentelemetry-api@1.17.0.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.opentelemetry/opentelemetry-context@1.17.0.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-asn1@1.20.1.Final-redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar", + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-provider-util@1.20.1.Final-redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-base@1.20.1.Final-redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar", + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-util@1.20.1.Final-redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00002?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-asn1@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-base@1.20.1.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/org.apache.sshd/sshd-common@2.10.0.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/org.slf4j/slf4j-api@1.7.36.redhat-00005?type=jar" + ] + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-x500@1.20.1.Final-redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00002?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-asn1@1.20.1.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-x500-cert-util@1.20.1.Final-redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/org.wildfly.security/wildfly-elytron-asn1@1.20.1.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-x500-cert@1.20.1.Final-redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/org.apache.sshd/sshd-common@2.10.0.redhat-00002?type=jar", + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00002?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-asn1@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-x500@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-x500-cert-util@1.20.1.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-keystore@1.20.1.Final-redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00002?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-provider-util@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-util@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-x500-cert@1.20.1.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-credential@1.20.1.Final-redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00002?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-asn1@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-keystore@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-provider-util@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-x500@1.20.1.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-password-impl@1.20.1.Final-redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00002?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-credential@1.20.1.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-elytron-security-common@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-credential@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-password-impl@1.20.1.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-jsonp@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/org.glassfish/jakarta.json@1.1.6.redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.netty/netty-transport-classes-epoll@4.1.100.Final-redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.netty/netty-buffer@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-common@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport-native-unix-common@4.1.100.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.netty/netty-transport-native-epoll@4.1.100.Final-redhat-00001?classifier=linux-x86_64&type=jar", + "dependsOn": [ + "pkg:maven/io.netty/netty-buffer@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-common@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport-classes-epoll@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport-native-unix-common@4.1.100.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.reactivex.rxjava3/rxjava@3.1.4.Final-redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/org.reactivestreams/reactive-streams@1.0.3.redhat-00006?type=jar" + ] + }, + { + "ref": "pkg:maven/org.infinispan.protostream/protostream@4.6.2.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.13.4.redhat-00004?type=jar", + "pkg:maven/com.squareup/protoparser@4.0.3.redhat-00001?type=jar", + "pkg:maven/org.javassist/javassist@3.29.1.GA-redhat-00001?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/org.infinispan.protostream/protostream-types@4.6.2.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/org.infinispan.protostream/protostream@4.6.2.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/org.infinispan/infinispan-commons@14.0.9.Final-redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/com.github.ben-manes.caffeine/caffeine@2.9.3.redhat-00003?type=jar", + "pkg:maven/io.reactivex.rxjava3/rxjava@3.1.4.Final-redhat-00001?type=jar", + "pkg:maven/org.infinispan.protostream/protostream@4.6.2.Final-redhat-00003?type=jar", + "pkg:maven/org.infinispan.protostream/protostream-types@4.6.2.Final-redhat-00003?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-auth@1.20.1.Final-redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00002?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-util@1.20.1.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-permission@1.20.1.Final-redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar", + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00002?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-util@1.20.1.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server@1.20.1.Final-redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar", + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00002?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-auth@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-base@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-credential@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-permission@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-util@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-x500@1.20.1.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-http@1.20.1.Final-redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00002?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-credential@1.20.1.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism@1.20.1.Final-redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00002?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-asn1@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-credential@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-http@1.20.1.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-digest@1.20.1.Final-redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00002?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-credential@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism@1.20.1.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-ssl@1.20.1.Final-redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar", + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00002?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-auth@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-base@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-credential@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-util@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-x500@1.20.1.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl@1.20.1.Final-redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar", + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00002?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-auth@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-base@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-credential@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-ssl@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-util@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-x500@1.20.1.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-digest@1.20.1.Final-redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00002?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-credential@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-digest@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-sasl@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-util@1.20.1.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-external@1.20.1.Final-redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00002?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-sasl@1.20.1.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-gssapi@1.20.1.Final-redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar", + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00002?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-base@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-credential@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-security-manager-action@1.20.1.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-gs2@1.20.1.Final-redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00002?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-asn1@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-credential@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-gssapi@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-sasl@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-security-manager-action@1.20.1.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-gssapi@1.20.1.Final-redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00002?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-credential@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-gssapi@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-sasl@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-security-manager-action@1.20.1.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-oauth2@1.20.1.Final-redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00002?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-credential@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-sasl@1.20.1.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-oauth2@1.20.1.Final-redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00002?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-oauth2@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-sasl@1.20.1.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-plain@1.20.1.Final-redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00002?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-credential@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-sasl@1.20.1.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-scram@1.20.1.Final-redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00002?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-credential@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-sasl@1.20.1.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-scram@1.20.1.Final-redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00002?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-scram@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-sasl@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-util@1.20.1.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/org.infinispan/infinispan-client-hotrod@14.0.9.Final-redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.netty/netty-handler@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport-native-epoll@4.1.100.Final-redhat-00001?classifier=linux-x86_64&type=jar", + "pkg:maven/io.reactivex.rxjava3/rxjava@3.1.4.Final-redhat-00001?type=jar", + "pkg:maven/jakarta.transaction/jakarta.transaction-api@1.3.3.redhat-00004?type=jar", + "pkg:maven/org.infinispan/infinispan-commons@14.0.9.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-password-impl@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-digest@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-external@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-gs2@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-gssapi@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-oauth2@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-plain@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-scram@1.20.1.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/org.infinispan/infinispan-query-dsl@14.0.9.Final-redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/org.infinispan/infinispan-commons@14.0.9.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/org.infinispan/infinispan-remote-query-client@14.0.9.Final-redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/org.infinispan/infinispan-commons@14.0.9.Final-redhat-00001?type=jar", + "pkg:maven/org.infinispan.protostream/protostream@4.6.2.Final-redhat-00003?type=jar", + "pkg:maven/org.infinispan.protostream/protostream-types@4.6.2.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/org.infinispan.protostream/protostream-processor@4.6.2.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/org.infinispan.protostream/protostream@4.6.2.Final-redhat-00003?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-infinispan-client@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.opentelemetry/opentelemetry-api@1.17.0.redhat-00001?type=jar", + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-caffeine@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-elytron-security-common@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-jsonp@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-netty@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5.redhat-00008?type=jar", + "pkg:maven/jakarta.transaction/jakarta.transaction-api@1.3.3.redhat-00004?type=jar", + "pkg:maven/org.eclipse.microprofile.metrics/microprofile-metrics-api@3.0.1.redhat-00001?type=jar", + "pkg:maven/org.infinispan/infinispan-api@14.0.9.Final-redhat-00001?type=jar", + "pkg:maven/org.infinispan/infinispan-client-hotrod@14.0.9.Final-redhat-00001?type=jar", + "pkg:maven/org.infinispan/infinispan-query-dsl@14.0.9.Final-redhat-00001?type=jar", + "pkg:maven/org.infinispan/infinispan-remote-query-client@14.0.9.Final-redhat-00001?type=jar", + "pkg:maven/org.infinispan.protostream/protostream-processor@4.6.2.Final-redhat-00003?type=jar", + "pkg:maven/org.infinispan.protostream/protostream-types@4.6.2.Final-redhat-00003?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-digest@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-external@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-oauth2@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-plain@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-scram@1.20.1.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/junit/junit@4.13.2?type=jar", + "dependsOn": [ + "pkg:maven/org.hamcrest/hamcrest-core@1.3?type=jar" + ] + }, + { + "ref": "o.t:testcontainers:1.17.3#1", + "dependsOn": [ + "pkg:maven/com.github.docker-java/docker-java-api@3.2.13?type=jar", + "pkg:maven/com.github.docker-java/docker-java-transport-zerodep@3.2.13?type=jar", + "pkg:maven/junit/junit@4.13.2?type=jar", + "pkg:maven/org.apache.commons/commons-compress@1.26.1.redhat-00001?type=jar", + "pkg:maven/org.rnorth.duct-tape/duct-tape@1.0.8?type=jar", + "pkg:maven/org.slf4j/slf4j-api@1.7.36.redhat-00005?type=jar" + ] + }, + { + "ref": "i.q:quarkus-devservices-common:2.13.9.Final-redhat-00003#1", + "dependsOn": [ + "pkg:maven/com.github.docker-java/docker-java-api@3.2.13?type=jar", + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-junit4-mock@2.13.9.Final?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar", + "o.t:testcontainers:1.17.3#1" + ] + }, + { + "ref": "i.q:quarkus-devservices-deployment:2.13.9.Final-redhat-00003#1", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-devservices-common:2.13.9.Final-redhat-00003#1" + ] + }, + { + "ref": "pkg:maven/org.slf4j/jcl-over-slf4j@1.7.32?type=jar", + "dependsOn": [ + "pkg:maven/org.slf4j/slf4j-api@1.7.36.redhat-00005?type=jar" + ] + }, + { + "ref": "o.a.s:sshd-common:2.10.0.redhat-00002#1", + "dependsOn": [ + "pkg:maven/org.slf4j/jcl-over-slf4j@1.7.32?type=jar", + "pkg:maven/org.slf4j/slf4j-api@1.7.36.redhat-00005?type=jar" + ] + }, + { + "ref": "o.w.s:wildfly-elytron-x500-cert:1.20.1.Final-redhat-00001#1", + "dependsOn": [ + "o.a.s:sshd-common:2.10.0.redhat-00002#1", + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00002?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-asn1@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-x500@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-x500-cert-util@1.20.1.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "o.w.s:wildfly-elytron-keystore:1.20.1.Final-redhat-00001#1", + "dependsOn": [ + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00002?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-provider-util@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-util@1.20.1.Final-redhat-00001?type=jar", + "o.w.s:wildfly-elytron-x500-cert:1.20.1.Final-redhat-00001#1" + ] + }, + { + "ref": "o.w.s:wildfly-elytron-credential:1.20.1.Final-redhat-00001#1", + "dependsOn": [ + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00002?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-asn1@1.20.1.Final-redhat-00001?type=jar", + "o.w.s:wildfly-elytron-keystore:1.20.1.Final-redhat-00001#1", + "pkg:maven/org.wildfly.security/wildfly-elytron-provider-util@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-x500@1.20.1.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "o.w.s:wildfly-elytron-password-impl:1.20.1.Final-redhat-00001#1", + "dependsOn": [ + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00002?type=jar", + "o.w.s:wildfly-elytron-credential:1.20.1.Final-redhat-00001#1" + ] + }, + { + "ref": "i.q:quarkus-elytron-security-common:2.13.9.Final-redhat-00003#1", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "o.w.s:wildfly-elytron-credential:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-password-impl:1.20.1.Final-redhat-00001#1" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-elytron-security-common-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-elytron-security-common:2.13.9.Final-redhat-00003#1" + ] + }, + { + "ref": "o.w.s:wildfly-elytron-auth-server:1.20.1.Final-redhat-00001#1", + "dependsOn": [ + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar", + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00002?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-auth@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-base@1.20.1.Final-redhat-00001?type=jar", + "o.w.s:wildfly-elytron-credential:1.20.1.Final-redhat-00001#1", + "pkg:maven/org.wildfly.security/wildfly-elytron-permission@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-util@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-x500@1.20.1.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "o.w.s:wildfly-elytron-http:1.20.1.Final-redhat-00001#1", + "dependsOn": [ + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00002?type=jar", + "o.w.s:wildfly-elytron-auth-server:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-credential:1.20.1.Final-redhat-00001#1" + ] + }, + { + "ref": "o.w.s:wildfly-elytron-mechanism:1.20.1.Final-redhat-00001#1", + "dependsOn": [ + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00002?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-asn1@1.20.1.Final-redhat-00001?type=jar", + "o.w.s:wildfly-elytron-auth-server:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-credential:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-http:1.20.1.Final-redhat-00001#1" + ] + }, + { + "ref": "o.w.s:wildfly-elytron-mechanism-digest:1.20.1.Final-redhat-00001#1", + "dependsOn": [ + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00002?type=jar", + "o.w.s:wildfly-elytron-auth-server:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-credential:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-mechanism:1.20.1.Final-redhat-00001#1" + ] + }, + { + "ref": "o.w.s:wildfly-elytron-ssl:1.20.1.Final-redhat-00001#1", + "dependsOn": [ + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar", + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00002?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-auth@1.20.1.Final-redhat-00001?type=jar", + "o.w.s:wildfly-elytron-auth-server:1.20.1.Final-redhat-00001#1", + "pkg:maven/org.wildfly.security/wildfly-elytron-base@1.20.1.Final-redhat-00001?type=jar", + "o.w.s:wildfly-elytron-credential:1.20.1.Final-redhat-00001#1", + "pkg:maven/org.wildfly.security/wildfly-elytron-util@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-x500@1.20.1.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "o.w.s:wildfly-elytron-sasl:1.20.1.Final-redhat-00001#1", + "dependsOn": [ + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar", + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00002?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-auth@1.20.1.Final-redhat-00001?type=jar", + "o.w.s:wildfly-elytron-auth-server:1.20.1.Final-redhat-00001#1", + "pkg:maven/org.wildfly.security/wildfly-elytron-base@1.20.1.Final-redhat-00001?type=jar", + "o.w.s:wildfly-elytron-credential:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-mechanism:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-ssl:1.20.1.Final-redhat-00001#1", + "pkg:maven/org.wildfly.security/wildfly-elytron-util@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-x500@1.20.1.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "o.w.s:wildfly-elytron-sasl-digest:1.20.1.Final-redhat-00001#1", + "dependsOn": [ + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00002?type=jar", + "o.w.s:wildfly-elytron-auth-server:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-credential:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-mechanism:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-mechanism-digest:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-sasl:1.20.1.Final-redhat-00001#1", + "pkg:maven/org.wildfly.security/wildfly-elytron-util@1.20.1.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "o.w.s:wildfly-elytron-sasl-external:1.20.1.Final-redhat-00001#1", + "dependsOn": [ + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00002?type=jar", + "o.w.s:wildfly-elytron-mechanism:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-sasl:1.20.1.Final-redhat-00001#1" + ] + }, + { + "ref": "o.w.s:wildfly-elytron-mechanism-gssapi:1.20.1.Final-redhat-00001#1", + "dependsOn": [ + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar", + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00002?type=jar", + "o.w.s:wildfly-elytron-auth-server:1.20.1.Final-redhat-00001#1", + "pkg:maven/org.wildfly.security/wildfly-elytron-base@1.20.1.Final-redhat-00001?type=jar", + "o.w.s:wildfly-elytron-credential:1.20.1.Final-redhat-00001#1", + "pkg:maven/org.wildfly.security/wildfly-elytron-security-manager-action@1.20.1.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "o.w.s:wildfly-elytron-sasl-gs2:1.20.1.Final-redhat-00001#1", + "dependsOn": [ + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00002?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-asn1@1.20.1.Final-redhat-00001?type=jar", + "o.w.s:wildfly-elytron-auth-server:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-credential:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-mechanism:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-mechanism-gssapi:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-sasl:1.20.1.Final-redhat-00001#1", + "pkg:maven/org.wildfly.security/wildfly-elytron-security-manager-action@1.20.1.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "o.w.s:wildfly-elytron-sasl-gssapi:1.20.1.Final-redhat-00001#1", + "dependsOn": [ + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00002?type=jar", + "o.w.s:wildfly-elytron-auth-server:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-credential:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-mechanism:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-mechanism-gssapi:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-sasl:1.20.1.Final-redhat-00001#1", + "pkg:maven/org.wildfly.security/wildfly-elytron-security-manager-action@1.20.1.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "o.w.s:wildfly-elytron-mechanism-oauth2:1.20.1.Final-redhat-00001#1", + "dependsOn": [ + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00002?type=jar", + "o.w.s:wildfly-elytron-auth-server:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-credential:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-mechanism:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-sasl:1.20.1.Final-redhat-00001#1" + ] + }, + { + "ref": "o.w.s:wildfly-elytron-sasl-oauth2:1.20.1.Final-redhat-00001#1", + "dependsOn": [ + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00002?type=jar", + "o.w.s:wildfly-elytron-mechanism:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-mechanism-oauth2:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-sasl:1.20.1.Final-redhat-00001#1" + ] + }, + { + "ref": "o.w.s:wildfly-elytron-sasl-plain:1.20.1.Final-redhat-00001#1", + "dependsOn": [ + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00002?type=jar", + "o.w.s:wildfly-elytron-auth-server:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-credential:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-mechanism:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-sasl:1.20.1.Final-redhat-00001#1" + ] + }, + { + "ref": "o.w.s:wildfly-elytron-mechanism-scram:1.20.1.Final-redhat-00001#1", + "dependsOn": [ + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00002?type=jar", + "o.w.s:wildfly-elytron-auth-server:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-credential:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-mechanism:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-sasl:1.20.1.Final-redhat-00001#1" + ] + }, + { + "ref": "o.w.s:wildfly-elytron-sasl-scram:1.20.1.Final-redhat-00001#1", + "dependsOn": [ + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00002?type=jar", + "o.w.s:wildfly-elytron-auth-server:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-mechanism:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-mechanism-scram:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-sasl:1.20.1.Final-redhat-00001#1", + "pkg:maven/org.wildfly.security/wildfly-elytron-util@1.20.1.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "o.i:infinispan-client-hotrod:14.0.9.Final-redhat-00001#1", + "dependsOn": [ + "pkg:maven/io.netty/netty-handler@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport-native-epoll@4.1.100.Final-redhat-00001?classifier=linux-x86_64&type=jar", + "pkg:maven/io.reactivex.rxjava3/rxjava@3.1.4.Final-redhat-00001?type=jar", + "pkg:maven/jakarta.transaction/jakarta.transaction-api@1.3.3.redhat-00004?type=jar", + "pkg:maven/org.infinispan/infinispan-commons@14.0.9.Final-redhat-00001?type=jar", + "o.w.s:wildfly-elytron-password-impl:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-sasl-digest:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-sasl-external:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-sasl-gs2:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-sasl-gssapi:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-sasl-oauth2:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-sasl-plain:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-sasl-scram:1.20.1.Final-redhat-00001#1" + ] + }, + { + "ref": "i.q:quarkus-infinispan-client:2.13.9.Final-redhat-00003#1", + "dependsOn": [ + "pkg:maven/io.opentelemetry/opentelemetry-api@1.17.0.redhat-00001?type=jar", + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-caffeine@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-elytron-security-common:2.13.9.Final-redhat-00003#1", + "pkg:maven/io.quarkus/quarkus-jsonp@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-netty@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5.redhat-00008?type=jar", + "pkg:maven/jakarta.transaction/jakarta.transaction-api@1.3.3.redhat-00004?type=jar", + "pkg:maven/org.eclipse.microprofile.metrics/microprofile-metrics-api@3.0.1.redhat-00001?type=jar", + "pkg:maven/org.infinispan/infinispan-api@14.0.9.Final-redhat-00001?type=jar", + "o.i:infinispan-client-hotrod:14.0.9.Final-redhat-00001#1", + "pkg:maven/org.infinispan/infinispan-query-dsl@14.0.9.Final-redhat-00001?type=jar", + "pkg:maven/org.infinispan/infinispan-remote-query-client@14.0.9.Final-redhat-00001?type=jar", + "pkg:maven/org.infinispan.protostream/protostream-processor@4.6.2.Final-redhat-00003?type=jar", + "pkg:maven/org.infinispan.protostream/protostream-types@4.6.2.Final-redhat-00003?type=jar", + "o.w.s:wildfly-elytron-sasl-digest:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-sasl-external:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-sasl-oauth2:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-sasl-plain:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-sasl-scram:1.20.1.Final-redhat-00001#1" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-jsonp-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-jsonp@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.micrometer/micrometer-core@1.9.4.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/org.hdrhistogram/HdrHistogram@2.1.12.redhat-00004?type=jar", + "pkg:maven/org.latencyutils/LatencyUtils@2.0.3?type=jar" + ] + }, + { + "ref": "pkg:maven/io.prometheus/simpleclient_tracer_otel@0.15.0.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.prometheus/simpleclient_tracer_common@0.15.0.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.prometheus/simpleclient_tracer_otel_agent@0.15.0.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.prometheus/simpleclient_tracer_common@0.15.0.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.prometheus/simpleclient@0.15.0.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.prometheus/simpleclient_tracer_otel@0.15.0.redhat-00001?type=jar", + "pkg:maven/io.prometheus/simpleclient_tracer_otel_agent@0.15.0.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.prometheus/simpleclient_common@0.15.0.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.prometheus/simpleclient@0.15.0.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.9.4.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.micrometer/micrometer-core@1.9.4.redhat-00001?type=jar", + "pkg:maven/io.prometheus/simpleclient_common@0.15.0.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/org.infinispan/infinispan-commons-test@14.0.9.Final?type=jar", + "dependsOn": [ + "pkg:maven/io.micrometer/micrometer-core@1.9.4.redhat-00001?type=jar", + "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.9.4.redhat-00001?type=jar", + "pkg:maven/org.infinispan/infinispan-api@14.0.9.Final-redhat-00001?type=jar", + "o.w.s:wildfly-elytron-x500-cert:1.20.1.Final-redhat-00001#1" + ] + }, + { + "ref": "pkg:maven/io.netty.incubator/netty-incubator-transport-classes-io_uring@0.0.14.Final?type=jar", + "dependsOn": [ + "pkg:maven/io.netty/netty-buffer@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-common@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport-native-unix-common@4.1.100.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.netty.incubator/netty-incubator-transport-native-io_uring@0.0.14.Final?type=jar", + "dependsOn": [ + "pkg:maven/io.netty.incubator/netty-incubator-transport-classes-io_uring@0.0.14.Final?type=jar" + ] + }, + { + "ref": "pkg:maven/io.netty.incubator/netty-incubator-transport-native-io_uring@0.0.14.Final?classifier=linux-aarch_64&type=jar", + "dependsOn": [ + "pkg:maven/io.netty.incubator/netty-incubator-transport-classes-io_uring@0.0.14.Final?type=jar" + ] + }, + { + "ref": "pkg:maven/io.netty.incubator/netty-incubator-transport-native-io_uring@0.0.14.Final?classifier=linux-x86_64&type=jar", + "dependsOn": [ + "pkg:maven/io.netty.incubator/netty-incubator-transport-classes-io_uring@0.0.14.Final?type=jar" + ] + }, + { + "ref": "pkg:maven/org.apache.logging.log4j/log4j-core@2.20.0?type=jar", + "dependsOn": [ + "pkg:maven/org.apache.logging.log4j/log4j-api@2.19.0.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/org.apache.logging.log4j/log4j-jul@2.20.0?type=jar", + "dependsOn": [ + "pkg:maven/org.apache.logging.log4j/log4j-api@2.19.0.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/org.apache.logging.log4j/log4j-slf4j-impl@2.20.0?type=jar", + "dependsOn": [ + "pkg:maven/org.apache.logging.log4j/log4j-api@2.19.0.redhat-00001?type=jar", + "pkg:maven/org.apache.logging.log4j/log4j-core@2.20.0?type=jar", + "pkg:maven/org.slf4j/slf4j-api@1.7.36.redhat-00005?type=jar" + ] + }, + { + "ref": "pkg:maven/org.jboss.byteman/byteman-bmunit@4.0.20?type=jar", + "dependsOn": [ + "pkg:maven/org.jboss.byteman/byteman@4.0.20?type=jar", + "pkg:maven/org.jboss.byteman/byteman-install@4.0.20?type=jar", + "pkg:maven/org.jboss.byteman/byteman-submit@4.0.20?type=jar" + ] + }, + { + "ref": "pkg:maven/org.jgroups/jgroups@5.2.12.Final?type=jar", + "dependsOn": [ + "pkg:maven/org.jboss.byteman/byteman-bmunit@4.0.20?type=jar" + ] + }, + { + "ref": "pkg:maven/org.infinispan/infinispan-core@14.0.9.Final?type=jar", + "dependsOn": [ + "pkg:maven/com.github.ben-manes.caffeine/caffeine@2.9.3.redhat-00003?type=jar", + "pkg:maven/jakarta.transaction/jakarta.transaction-api@1.3.3.redhat-00004?type=jar", + "pkg:maven/org.infinispan/infinispan-commons@14.0.9.Final-redhat-00001?type=jar", + "pkg:maven/org.infinispan.protostream/protostream@4.6.2.Final-redhat-00003?type=jar", + "pkg:maven/org.infinispan.protostream/protostream-types@4.6.2.Final-redhat-00003?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar", + "pkg:maven/org.jboss.threads/jboss-threads@3.4.3.Final-redhat-00001?type=jar", + "pkg:maven/org.jgroups/jgroups@5.2.12.Final?type=jar" + ] + }, + { + "ref": "pkg:maven/org.infinispan/infinispan-anchored-keys@14.0.9.Final?type=jar", + "dependsOn": [ + "pkg:maven/org.infinispan/infinispan-core@14.0.9.Final?type=jar" + ] + }, + { + "ref": "pkg:maven/org.infinispan/infinispan-cachestore-jdbc-common@14.0.9.Final?type=jar", + "dependsOn": [ + "pkg:maven/io.agroal/agroal-api@1.17.0.redhat-00001?type=jar", + "pkg:maven/io.agroal/agroal-pool@1.17.0.redhat-00001?type=jar", + "pkg:maven/org.infinispan/infinispan-core@14.0.9.Final?type=jar" + ] + }, + { + "ref": "pkg:maven/org.infinispan/infinispan-cachestore-jdbc@14.0.9.Final?type=jar", + "dependsOn": [ + "pkg:maven/org.infinispan/infinispan-cachestore-jdbc-common@14.0.9.Final?type=jar", + "pkg:maven/org.infinispan/infinispan-core@14.0.9.Final?type=jar" + ] + }, + { + "ref": "pkg:maven/org.infinispan/infinispan-multimap@14.0.9.Final?type=jar", + "dependsOn": [ + "pkg:maven/org.infinispan/infinispan-core@14.0.9.Final?type=jar" + ] + }, + { + "ref": "pkg:maven/org.infinispan/infinispan-cachestore-remote@14.0.9.Final?type=jar", + "dependsOn": [ + "o.i:infinispan-client-hotrod:14.0.9.Final-redhat-00001#1", + "pkg:maven/org.infinispan/infinispan-commons@14.0.9.Final-redhat-00001?type=jar", + "pkg:maven/org.infinispan/infinispan-core@14.0.9.Final?type=jar", + "pkg:maven/org.infinispan/infinispan-multimap@14.0.9.Final?type=jar" + ] + }, + { + "ref": "pkg:maven/org.infinispan/infinispan-cachestore-rocksdb@14.0.9.Final?type=jar", + "dependsOn": [ + "pkg:maven/org.infinispan/infinispan-core@14.0.9.Final?type=jar" + ] + }, + { + "ref": "pkg:maven/org.infinispan/infinispan-cachestore-sql@14.0.9.Final?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.13.4.redhat-00004?type=jar", + "pkg:maven/org.infinispan/infinispan-cachestore-jdbc-common@14.0.9.Final?type=jar", + "pkg:maven/org.infinispan/infinispan-core@14.0.9.Final?type=jar" + ] + }, + { + "ref": "pkg:maven/com.squareup.okhttp3/okhttp-sse@3.14.9?type=jar", + "dependsOn": [ + "pkg:maven/com.squareup.okhttp3/okhttp@3.14.9.redhat-00010?type=jar" + ] + }, + { + "ref": "pkg:maven/org.infinispan/infinispan-client-rest@14.0.9.Final?type=jar", + "dependsOn": [ + "pkg:maven/com.squareup.okhttp3/okhttp@3.14.9.redhat-00010?type=jar", + "pkg:maven/com.squareup.okhttp3/okhttp-sse@3.14.9?type=jar", + "pkg:maven/org.infinispan/infinispan-commons@14.0.9.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-credential-store@1.20.1.Final?type=jar", + "dependsOn": [ + "pkg:maven/org.wildfly.security/wildfly-elytron-asn1@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-auth@1.20.1.Final-redhat-00001?type=jar", + "o.w.s:wildfly-elytron-auth-server:1.20.1.Final-redhat-00001#1", + "pkg:maven/org.wildfly.security/wildfly-elytron-base@1.20.1.Final-redhat-00001?type=jar", + "o.w.s:wildfly-elytron-credential:1.20.1.Final-redhat-00001#1", + "pkg:maven/org.wildfly.security/wildfly-elytron-encryption@1.20.1.Final?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-permission@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-util@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-x500@1.20.1.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/org.infinispan/infinispan-cli-client@14.0.9.Final?type=jar", + "dependsOn": [ + "pkg:maven/org.aesh/aesh@2.6.0.redhat-00001?type=jar", + "pkg:maven/org.aesh/readline@2.2.0.redhat-00001?type=jar", + "pkg:maven/org.apache.commons/commons-compress@1.26.1.redhat-00001?type=jar", + "pkg:maven/org.apache.logging.log4j/log4j-api@2.19.0.redhat-00001?type=jar", + "pkg:maven/org.apache.logging.log4j/log4j-core@2.20.0?type=jar", + "pkg:maven/org.infinispan/infinispan-client-rest@14.0.9.Final?type=jar", + "pkg:maven/org.infinispan/infinispan-commons@14.0.9.Final-redhat-00001?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-credential-store@1.20.1.Final?type=jar", + "o.w.s:wildfly-elytron-password-impl:1.20.1.Final-redhat-00001#1" + ] + }, + { + "ref": "pkg:maven/org.apache.kafka/kafka-clients@3.2.3.redhat-00016?type=jar", + "dependsOn": [ + "pkg:maven/com.github.luben/zstd-jni@1.5.2.3-redhat-00002?type=jar", + "pkg:maven/org.lz4/lz4-java@1.8.0.redhat-00005?type=jar", + "pkg:maven/org.slf4j/slf4j-api@1.7.36.redhat-00005?type=jar", + "pkg:maven/org.xerial.snappy/snappy-java@1.1.10.5-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/org.infinispan/infinispan-cloudevents-integration@14.0.9.Final?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.13.4.redhat-00004?type=jar", + "pkg:maven/org.apache.kafka/kafka-clients@3.2.3.redhat-00016?type=jar", + "pkg:maven/org.infinispan/infinispan-core@14.0.9.Final?type=jar" + ] + }, + { + "ref": "pkg:maven/org.infinispan/infinispan-jboss-marshalling@14.0.9.Final?type=jar", + "dependsOn": [ + "pkg:maven/org.infinispan/infinispan-commons@14.0.9.Final-redhat-00001?type=jar", + "pkg:maven/org.infinispan/infinispan-core@14.0.9.Final?type=jar", + "pkg:maven/org.jboss.marshalling/jboss-marshalling-osgi@2.1.1.Final?type=jar" + ] + }, + { + "ref": "pkg:maven/org.apache.lucene/lucene-analyzers-common@8.11.1?type=jar", + "dependsOn": [ + "pkg:maven/org.apache.lucene/lucene-core@8.11.1?type=jar" + ] + }, + { + "ref": "pkg:maven/org.apache.lucene/lucene-facet@8.11.1?type=jar", + "dependsOn": [ + "pkg:maven/com.carrotsearch/hppc@0.8.1?type=jar", + "pkg:maven/org.apache.lucene/lucene-core@8.11.1?type=jar" + ] + }, + { + "ref": "pkg:maven/org.apache.lucene/lucene-join@8.11.1?type=jar", + "dependsOn": [ + "pkg:maven/org.apache.lucene/lucene-core@8.11.1?type=jar" + ] + }, + { + "ref": "pkg:maven/org.apache.lucene/lucene-queryparser@8.11.1?type=jar", + "dependsOn": [ + "pkg:maven/org.apache.lucene/lucene-core@8.11.1?type=jar", + "pkg:maven/org.apache.lucene/lucene-queries@8.11.1?type=jar" + ] + }, + { + "ref": "pkg:maven/org.hibernate.search/hibernate-search-backend-lucene@6.1.5.Final?type=jar", + "dependsOn": [ + "pkg:maven/org.apache.lucene/lucene-analyzers-common@8.11.1?type=jar", + "pkg:maven/org.apache.lucene/lucene-core@8.11.1?type=jar", + "pkg:maven/org.apache.lucene/lucene-facet@8.11.1?type=jar", + "pkg:maven/org.apache.lucene/lucene-join@8.11.1?type=jar", + "pkg:maven/org.apache.lucene/lucene-queryparser@8.11.1?type=jar", + "pkg:maven/org.hibernate.search/hibernate-search-engine@6.1.7.Final-redhat-00002?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/org.hibernate.common/hibernate-commons-annotations@5.1.2.Final?type=jar", + "dependsOn": [ + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "o.h.s:hibernate-search-mapper-pojo-base:6.1.7.Final-redhat-00002#1", + "dependsOn": [ + "pkg:maven/org.hibernate.common/hibernate-commons-annotations@5.1.2.Final?type=jar", + "pkg:maven/org.hibernate.search/hibernate-search-engine@6.1.7.Final-redhat-00002?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/org.hibernate.search/hibernate-search-v5migrationhelper-engine@6.1.5.Final?type=jar", + "dependsOn": [ + "pkg:maven/org.hibernate.search/hibernate-search-backend-lucene@6.1.5.Final?type=jar", + "pkg:maven/org.hibernate.search/hibernate-search-engine@6.1.7.Final-redhat-00002?type=jar", + "o.h.s:hibernate-search-mapper-pojo-base:6.1.7.Final-redhat-00002#1", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/org.infinispan/infinispan-clustered-lock@14.0.9.Final?type=jar", + "dependsOn": [ + "pkg:maven/org.infinispan/infinispan-core@14.0.9.Final?type=jar" + ] + }, + { + "ref": "pkg:maven/org.infinispan/infinispan-objectfilter@14.0.9.Final?type=jar", + "dependsOn": [ + "pkg:maven/org.infinispan/infinispan-query-dsl@14.0.9.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/org.infinispan/infinispan-query-core@14.0.9.Final?type=jar", + "dependsOn": [ + "pkg:maven/org.infinispan/infinispan-core@14.0.9.Final?type=jar", + "pkg:maven/org.infinispan/infinispan-objectfilter@14.0.9.Final?type=jar", + "pkg:maven/org.infinispan/infinispan-query-dsl@14.0.9.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/org.infinispan/infinispan-query@14.0.9.Final?type=jar", + "dependsOn": [ + "pkg:maven/org.hibernate.search/hibernate-search-backend-lucene@6.1.5.Final?type=jar", + "o.h.s:hibernate-search-mapper-pojo-base:6.1.7.Final-redhat-00002#1", + "pkg:maven/org.hibernate.search/hibernate-search-v5migrationhelper-engine@6.1.5.Final?type=jar", + "pkg:maven/org.infinispan/infinispan-clustered-lock@14.0.9.Final?type=jar", + "pkg:maven/org.infinispan/infinispan-core@14.0.9.Final?type=jar", + "pkg:maven/org.infinispan/infinispan-objectfilter@14.0.9.Final?type=jar", + "pkg:maven/org.infinispan/infinispan-query-core@14.0.9.Final?type=jar", + "pkg:maven/org.infinispan/infinispan-query-dsl@14.0.9.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.netty/netty-transport-native-epoll@4.1.100.Final-redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.netty/netty-buffer@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-common@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport-classes-epoll@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport-native-unix-common@4.1.100.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.netty/netty-transport-native-epoll@4.1.100.Final?classifier=linux-aarch_64&type=jar", + "dependsOn": [ + "pkg:maven/io.netty/netty-buffer@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-common@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport-classes-epoll@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport-native-unix-common@4.1.100.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.opentelemetry/opentelemetry-exporter-common@1.17.0.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.opentelemetry/opentelemetry-api@1.17.0.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.opentelemetry/opentelemetry-exporter-otlp-common@1.17.0?type=jar", + "dependsOn": [ + "pkg:maven/com.squareup.okhttp3/okhttp@3.14.9.redhat-00010?type=jar", + "pkg:maven/io.opentelemetry/opentelemetry-exporter-common@1.17.0.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.opentelemetry/opentelemetry-semconv@1.17.0.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.opentelemetry/opentelemetry-api@1.17.0.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.opentelemetry/opentelemetry-sdk-common@1.17.0.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.opentelemetry/opentelemetry-api@1.17.0.redhat-00001?type=jar", + "pkg:maven/io.opentelemetry/opentelemetry-semconv@1.17.0.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.opentelemetry/opentelemetry-sdk-metrics@1.17.0.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.opentelemetry/opentelemetry-api@1.17.0.redhat-00001?type=jar", + "pkg:maven/io.opentelemetry/opentelemetry-sdk-common@1.17.0.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.opentelemetry/opentelemetry-sdk-trace@1.17.0.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.opentelemetry/opentelemetry-api@1.17.0.redhat-00001?type=jar", + "pkg:maven/io.opentelemetry/opentelemetry-sdk-common@1.17.0.redhat-00001?type=jar", + "pkg:maven/io.opentelemetry/opentelemetry-semconv@1.17.0.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.opentelemetry/opentelemetry-exporter-otlp@1.17.0?type=jar", + "dependsOn": [ + "pkg:maven/io.opentelemetry/opentelemetry-exporter-otlp-common@1.17.0?type=jar", + "pkg:maven/io.opentelemetry/opentelemetry-sdk-metrics@1.17.0.redhat-00001?type=jar", + "pkg:maven/io.opentelemetry/opentelemetry-sdk-trace@1.17.0.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.opentelemetry/opentelemetry-sdk-logs@1.17.0.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.opentelemetry/opentelemetry-sdk-common@1.17.0.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.opentelemetry/opentelemetry-sdk@1.17.0.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.opentelemetry/opentelemetry-api@1.17.0.redhat-00001?type=jar", + "pkg:maven/io.opentelemetry/opentelemetry-sdk-common@1.17.0.redhat-00001?type=jar", + "pkg:maven/io.opentelemetry/opentelemetry-sdk-logs@1.17.0.redhat-00001?type=jar", + "pkg:maven/io.opentelemetry/opentelemetry-sdk-metrics@1.17.0.redhat-00001?type=jar", + "pkg:maven/io.opentelemetry/opentelemetry-sdk-trace@1.17.0.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.opentelemetry/opentelemetry-sdk-extension-autoconfigure-spi@1.17.0.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.opentelemetry/opentelemetry-sdk@1.17.0.redhat-00001?type=jar", + "pkg:maven/io.opentelemetry/opentelemetry-sdk-logs@1.17.0.redhat-00001?type=jar", + "pkg:maven/io.opentelemetry/opentelemetry-sdk-metrics@1.17.0.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.opentelemetry/opentelemetry-sdk-extension-autoconfigure@1.17.0-alpha?type=jar", + "dependsOn": [ + "pkg:maven/io.opentelemetry/opentelemetry-exporter-common@1.17.0.redhat-00001?type=jar", + "pkg:maven/io.opentelemetry/opentelemetry-sdk@1.17.0.redhat-00001?type=jar", + "pkg:maven/io.opentelemetry/opentelemetry-sdk-extension-autoconfigure-spi@1.17.0.redhat-00001?type=jar", + "pkg:maven/io.opentelemetry/opentelemetry-sdk-logs@1.17.0.redhat-00001?type=jar", + "pkg:maven/io.opentelemetry/opentelemetry-sdk-metrics@1.17.0.redhat-00001?type=jar", + "pkg:maven/io.opentelemetry/opentelemetry-semconv@1.17.0.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/org.infinispan/infinispan-tasks-api@14.0.9.Final?type=jar", + "dependsOn": [ + "pkg:maven/org.infinispan/infinispan-core@14.0.9.Final?type=jar" + ] + }, + { + "ref": "pkg:maven/org.infinispan/infinispan-tasks@14.0.9.Final?type=jar", + "dependsOn": [ + "pkg:maven/org.infinispan/infinispan-core@14.0.9.Final?type=jar", + "pkg:maven/org.infinispan/infinispan-tasks-api@14.0.9.Final?type=jar" + ] + }, + { + "ref": "pkg:maven/org.infinispan/infinispan-server-core@14.0.9.Final?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.13.4.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2-redhat-00001?type=jar", + "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jdk8@2.13.4.redhat-00004?type=jar", + "pkg:maven/com.thoughtworks.xstream/xstream@1.4.20?type=jar", + "pkg:maven/io.micrometer/micrometer-core@1.9.4.redhat-00001?type=jar", + "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.9.4.redhat-00001?type=jar", + "pkg:maven/io.netty/netty-handler@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport-native-epoll@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport-native-epoll@4.1.100.Final?classifier=linux-aarch_64&type=jar", + "pkg:maven/io.netty/netty-transport-native-epoll@4.1.100.Final-redhat-00001?classifier=linux-x86_64&type=jar", + "pkg:maven/io.opentelemetry/opentelemetry-exporter-otlp@1.17.0?type=jar", + "pkg:maven/io.opentelemetry/opentelemetry-exporter-otlp-common@1.17.0?type=jar", + "pkg:maven/io.opentelemetry/opentelemetry-sdk-extension-autoconfigure@1.17.0-alpha?type=jar", + "pkg:maven/io.opentelemetry/opentelemetry-semconv@1.17.0.redhat-00001?type=jar", + "pkg:maven/org.infinispan/infinispan-tasks@14.0.9.Final?type=jar" + ] + }, + { + "ref": "pkg:maven/org.infinispan/infinispan-remote-query-server@14.0.9.Final?type=jar", + "dependsOn": [ + "pkg:maven/org.infinispan/infinispan-api@14.0.9.Final-redhat-00001?type=jar", + "pkg:maven/org.infinispan/infinispan-query@14.0.9.Final?type=jar", + "pkg:maven/org.infinispan/infinispan-query-core@14.0.9.Final?type=jar", + "pkg:maven/org.infinispan/infinispan-query-dsl@14.0.9.Final-redhat-00001?type=jar", + "pkg:maven/org.infinispan/infinispan-remote-query-client@14.0.9.Final-redhat-00001?type=jar", + "pkg:maven/org.infinispan/infinispan-server-core@14.0.9.Final?type=jar", + "pkg:maven/org.infinispan.protostream/protostream@4.6.2.Final-redhat-00003?type=jar", + "pkg:maven/org.infinispan.protostream/protostream-types@4.6.2.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/org.infinispan/infinispan-scripting@14.0.9.Final?type=jar", + "dependsOn": [ + "pkg:maven/org.infinispan/infinispan-core@14.0.9.Final?type=jar", + "pkg:maven/org.infinispan/infinispan-tasks@14.0.9.Final?type=jar" + ] + }, + { + "ref": "pkg:maven/org.infinispan/infinispan-clustered-counter@14.0.9.Final?type=jar", + "dependsOn": [ + "pkg:maven/org.infinispan/infinispan-core@14.0.9.Final?type=jar" + ] + }, + { + "ref": "pkg:maven/org.infinispan/infinispan-server-hotrod@14.0.9.Final?type=jar", + "dependsOn": [ + "pkg:maven/org.infinispan/infinispan-clustered-counter@14.0.9.Final?type=jar", + "pkg:maven/org.infinispan/infinispan-multimap@14.0.9.Final?type=jar", + "pkg:maven/org.infinispan/infinispan-server-core@14.0.9.Final?type=jar", + "pkg:maven/org.infinispan/infinispan-tasks@14.0.9.Final?type=jar", + "pkg:maven/org.infinispan.protostream/protostream@4.6.2.Final-redhat-00003?type=jar", + "pkg:maven/org.infinispan.protostream/protostream-types@4.6.2.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/org.infinispan/infinispan-server-memcached@14.0.9.Final?type=jar", + "dependsOn": [ + "pkg:maven/org.infinispan/infinispan-server-core@14.0.9.Final?type=jar" + ] + }, + { + "ref": "pkg:maven/org.infinispan/infinispan-server-resp@14.0.9.Final?type=jar", + "dependsOn": [ + "pkg:maven/org.infinispan/infinispan-server-core@14.0.9.Final?type=jar" + ] + }, + { + "ref": "pkg:maven/org.infinispan/infinispan-server-rest@14.0.9.Final?type=jar", + "dependsOn": [ + "pkg:maven/io.micrometer/micrometer-core@1.9.4.redhat-00001?type=jar", + "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.9.4.redhat-00001?type=jar", + "pkg:maven/io.netty/netty-codec-http@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-codec-http2@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/org.infinispan/infinispan-api@14.0.9.Final-redhat-00001?type=jar", + "pkg:maven/org.infinispan/infinispan-cachestore-remote@14.0.9.Final?type=jar", + "pkg:maven/org.infinispan/infinispan-clustered-counter@14.0.9.Final?type=jar", + "pkg:maven/org.infinispan/infinispan-remote-query-server@14.0.9.Final?type=jar", + "pkg:maven/org.infinispan/infinispan-server-core@14.0.9.Final?type=jar", + "pkg:maven/org.infinispan.protostream/protostream@4.6.2.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/org.infinispan/infinispan-server-router@14.0.9.Final?type=jar", + "dependsOn": [ + "pkg:maven/io.netty/netty-codec-http@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/org.infinispan/infinispan-server-core@14.0.9.Final?type=jar", + "pkg:maven/org.infinispan/infinispan-server-hotrod@14.0.9.Final?type=jar", + "pkg:maven/org.infinispan/infinispan-server-resp@14.0.9.Final?type=jar", + "pkg:maven/org.infinispan/infinispan-server-rest@14.0.9.Final?type=jar" + ] + }, + { + "ref": "pkg:maven/org.openjdk.jmh/jmh-core@1.23?type=jar", + "dependsOn": [ + "pkg:maven/net.sf.jopt-simple/jopt-simple@4.6?type=jar", + "pkg:maven/org.apache.commons/commons-math3@3.2?type=jar" + ] + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server-http@1.20.1.Final?type=jar", + "dependsOn": [ + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00002?type=jar", + "o.w.s:wildfly-elytron-auth-server:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-credential:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-http:1.20.1.Final-redhat-00001#1" + ] + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server-sasl@1.20.1.Final?type=jar", + "dependsOn": [ + "o.w.s:wildfly-elytron-auth-server:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-credential:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-sasl:1.20.1.Final-redhat-00001#1" + ] + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-http@1.20.1.Final?type=jar", + "dependsOn": [ + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00002?type=jar", + "o.w.s:wildfly-elytron-auth-server:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-mechanism:1.20.1.Final-redhat-00001#1" + ] + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-http-basic@1.20.1.Final?type=jar", + "dependsOn": [ + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00002?type=jar", + "o.w.s:wildfly-elytron-auth-server:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-http:1.20.1.Final-redhat-00001#1", + "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-http@1.20.1.Final?type=jar" + ] + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-http-bearer@1.20.1.Final?type=jar", + "dependsOn": [ + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00002?type=jar", + "o.w.s:wildfly-elytron-auth-server:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-credential:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-http:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-mechanism:1.20.1.Final-redhat-00001#1" + ] + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-http-cert@1.20.1.Final?type=jar", + "dependsOn": [ + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00002?type=jar", + "o.w.s:wildfly-elytron-auth-server:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-credential:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-http:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-mechanism:1.20.1.Final-redhat-00001#1", + "pkg:maven/org.wildfly.security/wildfly-elytron-x500@1.20.1.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-http-digest@1.20.1.Final?type=jar", + "dependsOn": [ + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00002?type=jar", + "o.w.s:wildfly-elytron-auth-server:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-credential:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-http:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-mechanism:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-mechanism-digest:1.20.1.Final-redhat-00001#1", + "pkg:maven/org.wildfly.security/wildfly-elytron-util@1.20.1.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-http-spnego@1.20.1.Final?type=jar", + "dependsOn": [ + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00002?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-auth@1.20.1.Final-redhat-00001?type=jar", + "o.w.s:wildfly-elytron-auth-server:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-credential:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-http:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-mechanism:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-mechanism-gssapi:1.20.1.Final-redhat-00001#1" + ] + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-http-util@1.20.1.Final?type=jar", + "dependsOn": [ + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00002?type=jar", + "o.w.s:wildfly-elytron-auth-server:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-http:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-mechanism:1.20.1.Final-redhat-00001#1", + "pkg:maven/org.wildfly.security/wildfly-elytron-util@1.20.1.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-auth-util@1.20.1.Final?type=jar", + "dependsOn": [ + "o.a.s:sshd-common:2.10.0.redhat-00002#1", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar", + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00002?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-auth@1.20.1.Final-redhat-00001?type=jar", + "o.w.s:wildfly-elytron-auth-server:1.20.1.Final-redhat-00001#1", + "pkg:maven/org.wildfly.security/wildfly-elytron-base@1.20.1.Final-redhat-00001?type=jar", + "o.w.s:wildfly-elytron-credential:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-mechanism-gssapi:1.20.1.Final-redhat-00001#1", + "pkg:maven/org.wildfly.security/wildfly-elytron-security-manager-action@1.20.1.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-credential-source-impl@1.20.1.Final?type=jar", + "dependsOn": [ + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00002?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-auth@1.20.1.Final-redhat-00001?type=jar", + "o.w.s:wildfly-elytron-auth-server:1.20.1.Final-redhat-00001#1", + "pkg:maven/org.wildfly.security/wildfly-elytron-base@1.20.1.Final-redhat-00001?type=jar", + "o.w.s:wildfly-elytron-credential:1.20.1.Final-redhat-00001#1", + "pkg:maven/org.wildfly.security/wildfly-elytron-credential-store@1.20.1.Final?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-x500@1.20.1.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-client@1.20.1.Final?type=jar", + "dependsOn": [ + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00002?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-auth-util@1.20.1.Final?type=jar", + "o.w.s:wildfly-elytron-credential:1.20.1.Final-redhat-00001#1", + "pkg:maven/org.wildfly.security/wildfly-elytron-credential-source-impl@1.20.1.Final?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-credential-store@1.20.1.Final?type=jar", + "o.w.s:wildfly-elytron-keystore:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-mechanism:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-password-impl:1.20.1.Final-redhat-00001#1", + "pkg:maven/org.wildfly.security/wildfly-elytron-provider-util@1.20.1.Final-redhat-00001?type=jar", + "o.w.s:wildfly-elytron-sasl:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-x500-cert:1.20.1.Final-redhat-00001#1" + ] + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-realm@1.20.1.Final?type=jar", + "dependsOn": [ + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00002?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-auth@1.20.1.Final-redhat-00001?type=jar", + "o.w.s:wildfly-elytron-auth-server:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-credential:1.20.1.Final-redhat-00001#1", + "pkg:maven/org.wildfly.security/wildfly-elytron-encryption@1.20.1.Final?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-permission@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-util@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-x500@1.20.1.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-realm-ldap@1.20.1.Final?type=jar", + "dependsOn": [ + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00002?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-auth@1.20.1.Final-redhat-00001?type=jar", + "o.w.s:wildfly-elytron-auth-server:1.20.1.Final-redhat-00001#1", + "pkg:maven/org.wildfly.security/wildfly-elytron-base@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-client@1.20.1.Final?type=jar", + "o.w.s:wildfly-elytron-credential:1.20.1.Final-redhat-00001#1", + "pkg:maven/org.wildfly.security/wildfly-elytron-realm@1.20.1.Final?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-security-manager-action@1.20.1.Final-redhat-00001?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-util@1.20.1.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-json-util@1.20.1.Final?type=jar", + "dependsOn": [ + "o.w.s:wildfly-elytron-auth-server:1.20.1.Final-redhat-00001#1" + ] + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-realm-token@1.20.1.Final?type=jar", + "dependsOn": [ + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00002?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-auth@1.20.1.Final-redhat-00001?type=jar", + "o.w.s:wildfly-elytron-auth-server:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-credential:1.20.1.Final-redhat-00001#1", + "pkg:maven/org.wildfly.security/wildfly-elytron-json-util@1.20.1.Final?type=jar", + "o.w.s:wildfly-elytron-x500-cert:1.20.1.Final-redhat-00001#1" + ] + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-localuser@1.20.1.Final?type=jar", + "dependsOn": [ + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00002?type=jar", + "o.w.s:wildfly-elytron-auth-server:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-mechanism:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-sasl:1.20.1.Final-redhat-00001#1", + "pkg:maven/org.wildfly.security/wildfly-elytron-security-manager-action@1.20.1.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/org.infinispan/infinispan-server-runtime@14.0.9.Final?type=jar", + "dependsOn": [ + "pkg:maven/io.agroal/agroal-pool@1.17.0.redhat-00001?type=jar", + "pkg:maven/io.netty.incubator/netty-incubator-transport-native-io_uring@0.0.14.Final?type=jar", + "pkg:maven/io.netty.incubator/netty-incubator-transport-native-io_uring@0.0.14.Final?classifier=linux-aarch_64&type=jar", + "pkg:maven/io.netty.incubator/netty-incubator-transport-native-io_uring@0.0.14.Final?classifier=linux-x86_64&type=jar", + "pkg:maven/org.apache.logging.log4j/log4j-api@2.19.0.redhat-00001?type=jar", + "pkg:maven/org.apache.logging.log4j/log4j-core@2.20.0?type=jar", + "pkg:maven/org.apache.logging.log4j/log4j-jul@2.20.0?type=jar", + "pkg:maven/org.apache.logging.log4j/log4j-slf4j-impl@2.20.0?type=jar", + "pkg:maven/org.glassfish/javax.json@1.1.4?type=jar", + "pkg:maven/org.hdrhistogram/HdrHistogram@2.1.12.redhat-00004?type=jar", + "pkg:maven/org.infinispan/infinispan-anchored-keys@14.0.9.Final?type=jar", + "pkg:maven/org.infinispan/infinispan-cachestore-jdbc@14.0.9.Final?type=jar", + "pkg:maven/org.infinispan/infinispan-cachestore-remote@14.0.9.Final?type=jar", + "pkg:maven/org.infinispan/infinispan-cachestore-rocksdb@14.0.9.Final?type=jar", + "pkg:maven/org.infinispan/infinispan-cachestore-sql@14.0.9.Final?type=jar", + "pkg:maven/org.infinispan/infinispan-cli-client@14.0.9.Final?type=jar", + "o.i:infinispan-client-hotrod:14.0.9.Final-redhat-00001#1", + "pkg:maven/org.infinispan/infinispan-client-rest@14.0.9.Final?type=jar", + "pkg:maven/org.infinispan/infinispan-cloudevents-integration@14.0.9.Final?type=jar", + "pkg:maven/org.infinispan/infinispan-jboss-marshalling@14.0.9.Final?type=jar", + "pkg:maven/org.infinispan/infinispan-remote-query-server@14.0.9.Final?type=jar", + "pkg:maven/org.infinispan/infinispan-scripting@14.0.9.Final?type=jar", + "pkg:maven/org.infinispan/infinispan-server-hotrod@14.0.9.Final?type=jar", + "pkg:maven/org.infinispan/infinispan-server-memcached@14.0.9.Final?type=jar", + "pkg:maven/org.infinispan/infinispan-server-resp@14.0.9.Final?type=jar", + "pkg:maven/org.infinispan/infinispan-server-rest@14.0.9.Final?type=jar", + "pkg:maven/org.infinispan/infinispan-server-router@14.0.9.Final?type=jar", + "pkg:maven/org.latencyutils/LatencyUtils@2.0.3?type=jar", + "pkg:maven/org.openjdk.jmh/jmh-core@1.23?type=jar", + "pkg:maven/org.wildfly.openssl/wildfly-openssl-java@1.0.6.Final?type=jar", + "pkg:maven/org.wildfly.openssl/wildfly-openssl-linux-x86_64@1.0.6.Final?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server-http@1.20.1.Final?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server-sasl@1.20.1.Final?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-http-basic@1.20.1.Final?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-http-bearer@1.20.1.Final?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-http-cert@1.20.1.Final?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-http-digest@1.20.1.Final?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-http-spnego@1.20.1.Final?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-http-util@1.20.1.Final?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-realm-ldap@1.20.1.Final?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-realm-token@1.20.1.Final?type=jar", + "o.w.s:wildfly-elytron-sasl-digest:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-sasl-external:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-sasl-gs2:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-sasl-gssapi:1.20.1.Final-redhat-00001#1", + "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-localuser@1.20.1.Final?type=jar", + "o.w.s:wildfly-elytron-sasl-oauth2:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-sasl-plain:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-sasl-scram:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-ssl:1.20.1.Final-redhat-00001#1" + ] + }, + { + "ref": "pkg:maven/org.infinispan/infinispan-server-runtime@14.0.9.Final?classifier=loader&type=jar", + "dependsOn": [ + "pkg:maven/io.agroal/agroal-pool@1.17.0.redhat-00001?type=jar", + "pkg:maven/io.netty.incubator/netty-incubator-transport-native-io_uring@0.0.14.Final?type=jar", + "pkg:maven/io.netty.incubator/netty-incubator-transport-native-io_uring@0.0.14.Final?classifier=linux-aarch_64&type=jar", + "pkg:maven/io.netty.incubator/netty-incubator-transport-native-io_uring@0.0.14.Final?classifier=linux-x86_64&type=jar", + "pkg:maven/org.apache.logging.log4j/log4j-api@2.19.0.redhat-00001?type=jar", + "pkg:maven/org.apache.logging.log4j/log4j-core@2.20.0?type=jar", + "pkg:maven/org.apache.logging.log4j/log4j-jul@2.20.0?type=jar", + "pkg:maven/org.apache.logging.log4j/log4j-slf4j-impl@2.20.0?type=jar", + "pkg:maven/org.glassfish/javax.json@1.1.4?type=jar", + "pkg:maven/org.hdrhistogram/HdrHistogram@2.1.12.redhat-00004?type=jar", + "pkg:maven/org.infinispan/infinispan-anchored-keys@14.0.9.Final?type=jar", + "pkg:maven/org.infinispan/infinispan-cachestore-jdbc@14.0.9.Final?type=jar", + "pkg:maven/org.infinispan/infinispan-cachestore-remote@14.0.9.Final?type=jar", + "pkg:maven/org.infinispan/infinispan-cachestore-rocksdb@14.0.9.Final?type=jar", + "pkg:maven/org.infinispan/infinispan-cachestore-sql@14.0.9.Final?type=jar", + "pkg:maven/org.infinispan/infinispan-cli-client@14.0.9.Final?type=jar", + "o.i:infinispan-client-hotrod:14.0.9.Final-redhat-00001#1", + "pkg:maven/org.infinispan/infinispan-client-rest@14.0.9.Final?type=jar", + "pkg:maven/org.infinispan/infinispan-cloudevents-integration@14.0.9.Final?type=jar", + "pkg:maven/org.infinispan/infinispan-jboss-marshalling@14.0.9.Final?type=jar", + "pkg:maven/org.infinispan/infinispan-remote-query-server@14.0.9.Final?type=jar", + "pkg:maven/org.infinispan/infinispan-scripting@14.0.9.Final?type=jar", + "pkg:maven/org.infinispan/infinispan-server-hotrod@14.0.9.Final?type=jar", + "pkg:maven/org.infinispan/infinispan-server-memcached@14.0.9.Final?type=jar", + "pkg:maven/org.infinispan/infinispan-server-resp@14.0.9.Final?type=jar", + "pkg:maven/org.infinispan/infinispan-server-rest@14.0.9.Final?type=jar", + "pkg:maven/org.infinispan/infinispan-server-router@14.0.9.Final?type=jar", + "pkg:maven/org.latencyutils/LatencyUtils@2.0.3?type=jar", + "pkg:maven/org.openjdk.jmh/jmh-core@1.23?type=jar", + "pkg:maven/org.wildfly.openssl/wildfly-openssl-java@1.0.6.Final?type=jar", + "pkg:maven/org.wildfly.openssl/wildfly-openssl-linux-x86_64@1.0.6.Final?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server-http@1.20.1.Final?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server-sasl@1.20.1.Final?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-http-basic@1.20.1.Final?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-http-bearer@1.20.1.Final?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-http-cert@1.20.1.Final?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-http-digest@1.20.1.Final?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-http-spnego@1.20.1.Final?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-http-util@1.20.1.Final?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-realm-ldap@1.20.1.Final?type=jar", + "pkg:maven/org.wildfly.security/wildfly-elytron-realm-token@1.20.1.Final?type=jar", + "o.w.s:wildfly-elytron-sasl-digest:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-sasl-external:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-sasl-gs2:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-sasl-gssapi:1.20.1.Final-redhat-00001#1", + "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-localuser@1.20.1.Final?type=jar", + "o.w.s:wildfly-elytron-sasl-oauth2:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-sasl-plain:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-sasl-scram:1.20.1.Final-redhat-00001#1", + "o.w.s:wildfly-elytron-ssl:1.20.1.Final-redhat-00001#1" + ] + }, + { + "ref": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api-maven@3.1.3?type=jar", + "dependsOn": [ + "pkg:maven/org.apache.maven/maven-model@3.8.6.redhat-00002?type=jar", + "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api@3.1.3?type=jar" + ] + }, + { + "ref": "pkg:maven/org.apache.maven/maven-model-builder@3.8.6.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/org.apache.maven/maven-artifact@3.8.6.redhat-00002?type=jar", + "pkg:maven/org.apache.maven/maven-builder-support@3.8.6.redhat-00002?type=jar", + "pkg:maven/org.apache.maven/maven-model@3.8.6.redhat-00002?type=jar", + "pkg:maven/org.codehaus.plexus/plexus-interpolation@1.24?type=jar", + "pkg:maven/org.codehaus.plexus/plexus-utils@3.3.0.redhat-00003?type=jar", + "pkg:maven/org.eclipse.sisu/org.eclipse.sisu.inject@0.3.5.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/org.apache.maven.resolver/maven-resolver-impl@1.6.3?type=jar", + "dependsOn": [ + "pkg:maven/org.apache.commons/commons-lang3@3.12.0.redhat-00001?type=jar", + "pkg:maven/org.apache.maven.resolver/maven-resolver-api@1.6.3?type=jar", + "pkg:maven/org.apache.maven.resolver/maven-resolver-spi@1.6.3?type=jar", + "pkg:maven/org.apache.maven.resolver/maven-resolver-util@1.6.3?type=jar", + "pkg:maven/org.slf4j/slf4j-api@1.7.36.redhat-00005?type=jar" + ] + }, + { + "ref": "pkg:maven/org.apache.maven/maven-resolver-provider@3.8.6.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/org.apache.maven/maven-model@3.8.6.redhat-00002?type=jar", + "pkg:maven/org.apache.maven/maven-model-builder@3.8.6.redhat-00002?type=jar", + "pkg:maven/org.apache.maven/maven-repository-metadata@3.8.6.redhat-00002?type=jar", + "pkg:maven/org.apache.maven.resolver/maven-resolver-api@1.6.3?type=jar", + "pkg:maven/org.apache.maven.resolver/maven-resolver-impl@1.6.3?type=jar", + "pkg:maven/org.apache.maven.resolver/maven-resolver-spi@1.6.3?type=jar", + "pkg:maven/org.apache.maven.resolver/maven-resolver-util@1.6.3?type=jar", + "pkg:maven/org.codehaus.plexus/plexus-utils@3.3.0.redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/org.codehaus.plexus/plexus-sec-dispatcher@2.0.0.redhat-00004?type=jar", + "dependsOn": [ + "pkg:maven/org.codehaus.plexus/plexus-cipher@2.0.0.redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/org.apache.maven/maven-settings-builder@3.8.6.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/org.apache.maven/maven-builder-support@3.8.6.redhat-00002?type=jar", + "pkg:maven/org.apache.maven/maven-settings@3.8.6.redhat-00002?type=jar", + "pkg:maven/org.codehaus.plexus/plexus-interpolation@1.24?type=jar", + "pkg:maven/org.codehaus.plexus/plexus-sec-dispatcher@2.0.0.redhat-00004?type=jar" + ] + }, + { + "ref": "pkg:maven/org.apache.maven.resolver/maven-resolver-transport-wagon@1.6.3?type=jar", + "dependsOn": [ + "pkg:maven/org.apache.maven.resolver/maven-resolver-api@1.6.3?type=jar", + "pkg:maven/org.apache.maven.resolver/maven-resolver-spi@1.6.3?type=jar", + "pkg:maven/org.apache.maven.resolver/maven-resolver-util@1.6.3?type=jar", + "pkg:maven/org.apache.maven.wagon/wagon-provider-api@3.5.1?type=jar" + ] + }, + { + "ref": "pkg:maven/org.apache.maven.wagon/wagon-http-lightweight@3.5.1?type=jar", + "dependsOn": [ + "pkg:maven/org.apache.maven.wagon/wagon-http-shared@3.5.1?type=jar", + "pkg:maven/org.apache.maven.wagon/wagon-provider-api@3.5.1?type=jar" + ] + }, + { + "ref": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-spi@3.1.3?type=jar", + "dependsOn": [ + "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api@3.1.3?type=jar" + ] + }, + { + "ref": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-spi-maven@3.1.3?type=jar", + "dependsOn": [ + "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api-maven@3.1.3?type=jar", + "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-spi@3.1.3?type=jar" + ] + }, + { + "ref": "pkg:maven/org.sonatype.plexus/plexus-sec-dispatcher@1.4?type=jar", + "dependsOn": [ + "pkg:maven/org.sonatype.plexus/plexus-cipher@1.4?type=jar" + ] + }, + { + "ref": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-impl-maven@3.1.3?type=jar", + "dependsOn": [ + "pkg:maven/org.apache.maven/maven-model@3.8.6.redhat-00002?type=jar", + "pkg:maven/org.apache.maven/maven-model-builder@3.8.6.redhat-00002?type=jar", + "pkg:maven/org.apache.maven/maven-repository-metadata@3.8.6.redhat-00002?type=jar", + "pkg:maven/org.apache.maven/maven-resolver-provider@3.8.6.redhat-00002?type=jar", + "pkg:maven/org.apache.maven/maven-settings@3.8.6.redhat-00002?type=jar", + "pkg:maven/org.apache.maven/maven-settings-builder@3.8.6.redhat-00002?type=jar", + "pkg:maven/org.apache.maven.resolver/maven-resolver-api@1.6.3?type=jar", + "pkg:maven/org.apache.maven.resolver/maven-resolver-connector-basic@1.6.3?type=jar", + "pkg:maven/org.apache.maven.resolver/maven-resolver-impl@1.6.3?type=jar", + "pkg:maven/org.apache.maven.resolver/maven-resolver-spi@1.6.3?type=jar", + "pkg:maven/org.apache.maven.resolver/maven-resolver-transport-wagon@1.6.3?type=jar", + "pkg:maven/org.apache.maven.resolver/maven-resolver-util@1.6.3?type=jar", + "pkg:maven/org.apache.maven.wagon/wagon-file@3.5.1?type=jar", + "pkg:maven/org.apache.maven.wagon/wagon-http-lightweight@3.5.1?type=jar", + "pkg:maven/org.apache.maven.wagon/wagon-provider-api@3.5.1?type=jar", + "pkg:maven/org.codehaus.plexus/plexus-interpolation@1.24?type=jar", + "pkg:maven/org.codehaus.plexus/plexus-utils@3.3.0.redhat-00003?type=jar", + "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api-maven@3.1.3?type=jar", + "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-spi-maven@3.1.3?type=jar", + "pkg:maven/org.sonatype.plexus/plexus-sec-dispatcher@1.4?type=jar" + ] + }, + { + "ref": "pkg:maven/org.codehaus.plexus/plexus-compiler-javac@2.7?type=jar", + "dependsOn": [ + "pkg:maven/org.codehaus.plexus/plexus-compiler-api@2.7?type=jar" + ] + }, + { + "ref": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-spi@1.2.6?type=jar", + "dependsOn": [ + "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-api@1.2.6?type=jar" + ] + }, + { + "ref": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-impl-base@1.2.6?type=jar", + "dependsOn": [ + "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-api@1.2.6?type=jar", + "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-spi@1.2.6?type=jar" + ] + }, + { + "ref": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api-maven-archive@3.1.3?type=jar", + "dependsOn": [ + "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-api@1.2.6?type=jar", + "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api-maven@3.1.3?type=jar", + "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-spi@3.1.3?type=jar" + ] + }, + { + "ref": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-spi-maven-archive@3.1.3?type=jar", + "dependsOn": [ + "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-api@1.2.6?type=jar", + "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api-maven@3.1.3?type=jar", + "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-spi@3.1.3?type=jar" + ] + }, + { + "ref": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-impl-maven-archive@3.1.3?type=jar", + "dependsOn": [ + "pkg:maven/org.codehaus.plexus/plexus-compiler-javac@2.7?type=jar", + "pkg:maven/org.codehaus.plexus/plexus-utils@3.3.0.redhat-00003?type=jar", + "pkg:maven/org.eclipse.sisu/org.eclipse.sisu.plexus@0.3.5?type=jar", + "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-impl-base@1.2.6?type=jar", + "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api-maven@3.1.3?type=jar", + "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api-maven-archive@3.1.3?type=jar", + "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-impl-maven@3.1.3?type=jar", + "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-spi-maven-archive@3.1.3?type=jar" + ] + }, + { + "ref": "pkg:maven/org.infinispan/infinispan-server-testdriver-core@14.0.9.Final?type=jar", + "dependsOn": [ + "pkg:maven/junit/junit@4.13.2?type=jar", + "pkg:maven/net.spy/spymemcached@2.12.1?type=jar", + "pkg:maven/org.infinispan/infinispan-commons@14.0.9.Final-redhat-00001?type=jar", + "pkg:maven/org.infinispan/infinispan-commons-test@14.0.9.Final?type=jar", + "pkg:maven/org.infinispan/infinispan-server-runtime@14.0.9.Final?type=jar", + "pkg:maven/org.infinispan/infinispan-server-runtime@14.0.9.Final?classifier=loader&type=jar", + "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api@3.1.3?type=jar", + "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api-maven@3.1.3?type=jar", + "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-impl-maven@3.1.3?type=jar", + "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-impl-maven-archive@3.1.3?type=jar", + "o.t:testcontainers:1.17.3#1" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-infinispan-client-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-caffeine-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-devservices-deployment:2.13.9.Final-redhat-00003#1", + "pkg:maven/io.quarkus/quarkus-elytron-security-common-deployment@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-infinispan-client:2.13.9.Final-redhat-00003#1", + "pkg:maven/io.quarkus/quarkus-jsonp-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-netty-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-smallrye-health-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/org.infinispan/infinispan-server-testdriver-core@14.0.9.Final?type=jar" + ] + }, + { + "ref": "pkg:maven/org.jacoco/org.jacoco.core@0.8.8?type=jar", + "dependsOn": [ + "pkg:maven/org.ow2.asm/asm@9.3.0.redhat-00001?type=jar", + "pkg:maven/org.ow2.asm/asm-commons@9.3.0.redhat-00001?type=jar", + "pkg:maven/org.ow2.asm/asm-tree@9.3.0.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/org.jacoco/org.jacoco.report@0.8.8?type=jar", + "dependsOn": [ + "pkg:maven/org.jacoco/org.jacoco.core@0.8.8?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-jacoco@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/org.jacoco/org.jacoco.agent@0.8.8?type=jar", + "pkg:maven/org.jacoco/org.jacoco.agent@0.8.8?classifier=runtime&type=jar", + "pkg:maven/org.jacoco/org.jacoco.core@0.8.8?type=jar", + "pkg:maven/org.jacoco/org.jacoco.report@0.8.8?type=jar", + "pkg:maven/org.ow2.asm/asm-commons@9.3.0.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-jacoco-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-jacoco@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/org.codehaus.plexus/plexus-utils@3.3.0.redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-jaxp@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-jaxb@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-jaxp@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/org.glassfish.jaxb/jaxb-runtime@2.3.3.b02-redhat-00004?type=jar", + "pkg:maven/org.jboss.spec.javax.xml.bind/jboss-jaxb-api_2.3_spec@2.0.0.Final-redhat-00004?type=jar" + ] + }, + { + "ref": "i.q:quarkus-jaxb:2.13.9.Final-redhat-00003#1", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-jaxp@2.13.9.Final-redhat-00003?type=jar", + "o.g.j:jaxb-runtime:2.3.3.b02-redhat-00004#1", + "pkg:maven/org.jboss.spec.javax.xml.bind/jboss-jaxb-api_2.3_spec@2.0.0.Final-redhat-00004?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-jaxp-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-jaxp@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-jaxb-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-jaxb:2.13.9.Final-redhat-00003#1", + "pkg:maven/io.quarkus/quarkus-jaxp-deployment@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-common@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-jsonp@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-mutiny@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-common@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.vertx/vertx-web-client@4.3.4.redhat-00008?type=jar", + "dependsOn": [ + "pkg:maven/io.vertx/vertx-auth-common@4.3.4.redhat-00008?type=jar", + "pkg:maven/io.vertx/vertx-core@4.3.4.redhat-00008?type=jar", + "pkg:maven/io.vertx/vertx-uri-template@4.3.4.redhat-00008?type=jar", + "pkg:maven/io.vertx/vertx-web-common@4.3.4.redhat-00008?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-client@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-common@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.smallrye.common/smallrye-common-vertx-context@1.13.1.redhat-00001?type=jar", + "pkg:maven/io.smallrye.stork/stork-core@1.1.2.redhat-00002?type=jar", + "pkg:maven/io.vertx/vertx-core@4.3.4.redhat-00008?type=jar", + "pkg:maven/io.vertx/vertx-web-client@4.3.4.redhat-00008?type=jar", + "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5.redhat-00008?type=jar", + "pkg:maven/jakarta.enterprise/jakarta.enterprise.cdi-api@2.0.2.redhat-00005?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar", + "pkg:maven/org.jboss.spec.javax.ws.rs/jboss-jaxrs-api_2.1_spec@2.0.1.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-jaxrs-client-reactive@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-resteasy-reactive-common@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-client@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-security-spi@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus.security/quarkus-security@1.1.4.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-common-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-jsonp-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-mutiny-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-resteasy-reactive-common@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-resteasy-reactive-spi-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-security-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-common-processor@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-client-processor@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus.gizmo/gizmo@1.1.1.Final-redhat-00001?type=jar", + "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-client@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-common-processor@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5.redhat-00008?type=jar", + "pkg:maven/jakarta.enterprise/jakarta.enterprise.cdi-api@2.0.2.redhat-00005?type=jar", + "pkg:maven/org.jboss/jandex@2.4.3.Final-redhat-00001?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar", + "pkg:maven/org.jboss.spec.javax.ws.rs/jboss-jaxrs-api_2.1_spec@2.0.1.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-jaxrs-client-reactive-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-jaxrs-client-reactive@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-jsonp-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-resteasy-reactive-common-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-resteasy-reactive-spi-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-security-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-client-processor@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-jdbc-db2@2.13.9.Final?type=jar", + "dependsOn": [ + "pkg:maven/com.ibm.db2/jcc@11.5.7.0?type=jar", + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/org.testcontainers/database-commons@1.17.3?type=jar", + "dependsOn": [ + "pkg:maven/org.testcontainers/testcontainers@1.17.3?type=jar" + ] + }, + { + "ref": "pkg:maven/org.testcontainers/jdbc@1.17.3?type=jar", + "dependsOn": [ + "pkg:maven/org.testcontainers/database-commons@1.17.3?type=jar" + ] + }, + { + "ref": "pkg:maven/org.testcontainers/db2@1.17.3?type=jar", + "dependsOn": [ + "pkg:maven/org.testcontainers/jdbc@1.17.3?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-devservices-db2@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/com.ibm.db2/jcc@11.5.7.0?type=jar", + "pkg:maven/io.quarkus/quarkus-datasource-deployment-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-devservices-common@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/org.testcontainers/db2@1.17.3?type=jar" + ] + }, + { + "ref": "pkg:maven/biz.aQute.bnd/biz.aQute.bnd.transform@6.3.1?type=jar", + "dependsOn": [ + "pkg:maven/org.slf4j/slf4j-api@1.7.36.redhat-00005?type=jar" + ] + }, + { + "ref": "pkg:maven/org.eclipse.transformer/org.eclipse.transformer@0.5.0?type=jar", + "dependsOn": [ + "pkg:maven/biz.aQute.bnd/biz.aQute.bnd.transform@6.3.1?type=jar", + "pkg:maven/org.slf4j/slf4j-api@1.7.36.redhat-00005?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-jdbc-db2-deployment@2.13.9.Final?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-agroal-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-datasource-deployment-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-devservices-db2@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-jdbc-db2@2.13.9.Final?type=jar", + "pkg:maven/org.eclipse.transformer/org.eclipse.transformer@0.5.0?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-jdbc-derby@2.13.9.Final?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/org.apache.derby/derbyclient@10.14.2.0?type=jar" + ] + }, + { + "ref": "pkg:maven/org.apache.derby/derbynet@10.14.2.0?type=jar", + "dependsOn": [ + "pkg:maven/org.apache.derby/derby@10.14.2.0?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-devservices-derby@2.13.9.Final?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-datasource-deployment-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/org.apache.derby/derbynet@10.14.2.0?type=jar", + "pkg:maven/org.apache.derby/derbytools@10.14.2.0?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-jdbc-derby-deployment@2.13.9.Final?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-agroal-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-datasource-deployment-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-devservices-derby@2.13.9.Final?type=jar", + "pkg:maven/io.quarkus/quarkus-jdbc-derby@2.13.9.Final?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-jdbc-h2@2.13.9.Final?type=jar", + "dependsOn": [ + "pkg:maven/com.h2database/h2@2.1.214?type=jar", + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/org.locationtech.jts/jts-core@1.17.0?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-devservices-h2@2.13.9.Final?type=jar", + "dependsOn": [ + "pkg:maven/com.h2database/h2@2.1.214?type=jar", + "pkg:maven/io.quarkus/quarkus-datasource-deployment-spi@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-jdbc-h2-deployment@2.13.9.Final?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-agroal-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-datasource-deployment-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-devservices-h2@2.13.9.Final?type=jar", + "pkg:maven/io.quarkus/quarkus-jdbc-h2@2.13.9.Final?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-jdbc-mariadb@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/org.mariadb.jdbc/mariadb-java-client@3.0.8.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/org.testcontainers/mariadb@1.17.3?type=jar", + "dependsOn": [ + "pkg:maven/org.testcontainers/jdbc@1.17.3?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-devservices-mariadb@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-datasource-deployment-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-devservices-common@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/org.mariadb.jdbc/mariadb-java-client@3.0.8.redhat-00001?type=jar", + "pkg:maven/org.testcontainers/mariadb@1.17.3?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-jdbc-mariadb-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-agroal-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-datasource-deployment-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-devservices-mariadb@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-jdbc-mariadb@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-jdbc-mssql@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/com.microsoft.sqlserver/mssql-jdbc@11.2.0.jre11?type=jar", + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/org.antlr/antlr4-runtime@4.9.2.redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/org.testcontainers/mssqlserver@1.17.3?type=jar", + "dependsOn": [ + "pkg:maven/org.testcontainers/jdbc@1.17.3?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-devservices-mssql@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/com.microsoft.sqlserver/mssql-jdbc@11.2.0.jre11?type=jar", + "pkg:maven/io.quarkus/quarkus-datasource-deployment-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-devservices-common@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/org.testcontainers/mssqlserver@1.17.3?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-jdbc-mssql-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-agroal-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-datasource-deployment-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-devservices-mssql@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-jdbc-mssql@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-jdbc-mysql@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/mysql/mysql-connector-java@8.0.30.redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/org.testcontainers/mysql@1.17.3?type=jar", + "dependsOn": [ + "pkg:maven/org.testcontainers/jdbc@1.17.3?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-devservices-mysql@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-datasource-deployment-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-devservices-common@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/mysql/mysql-connector-java@8.0.30.redhat-00003?type=jar", + "pkg:maven/org.testcontainers/mysql@1.17.3?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-jdbc-mysql-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-agroal-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-datasource-deployment-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-devservices-mysql@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-jdbc-mysql@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-jdbc-oracle@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/com.oracle.database.jdbc/ojdbc11@21.5.0.0?type=jar", + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/org.testcontainers/oracle-xe@1.17.3?type=jar", + "dependsOn": [ + "pkg:maven/org.testcontainers/jdbc@1.17.3?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-devservices-oracle@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/com.oracle.database.jdbc/ojdbc11@21.5.0.0?type=jar", + "pkg:maven/io.quarkus/quarkus-datasource-deployment-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-devservices-common@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/org.testcontainers/oracle-xe@1.17.3?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-jdbc-oracle-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-agroal-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-datasource-deployment-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-devservices-oracle@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-jdbc-oracle@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-jdbc-postgresql@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/org.postgresql/postgresql@42.5.6.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/org.testcontainers/postgresql@1.17.3?type=jar", + "dependsOn": [ + "pkg:maven/org.testcontainers/jdbc@1.17.3?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-devservices-postgresql@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-datasource-deployment-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-devservices-common@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/org.postgresql/postgresql@42.5.6.redhat-00001?type=jar", + "pkg:maven/org.testcontainers/postgresql@1.17.3?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-jdbc-postgresql-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-agroal-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-datasource-deployment-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-devservices-postgresql@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-jdbc-postgresql@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/org.eclipse/yasson@1.0.11.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/jakarta.json.bind/jakarta.json.bind-api@1.0.2.redhat-00004?type=jar", + "pkg:maven/org.glassfish/jakarta.json@1.1.6?classifier=module&type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-jsonb@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-jsonp@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/org.eclipse/yasson@1.0.11.redhat-00002?type=jar" + ] + }, + { + "ref": "o.e:yasson:1.0.11.redhat-00002#1", + "dependsOn": [ + "pkg:maven/jakarta.json.bind/jakarta.json.bind-api@1.0.2.redhat-00004?type=jar" + ] + }, + { + "ref": "i.q:quarkus-jsonb:2.13.9.Final-redhat-00003#1", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-jsonp@2.13.9.Final-redhat-00003?type=jar", + "o.e:yasson:1.0.11.redhat-00002#1" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-jsonb-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-jsonb:2.13.9.Final-redhat-00003#1", + "pkg:maven/io.quarkus/quarkus-jsonb-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-jsonp-deployment@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-kafka-client@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-caffeine@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-jackson@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx-http-dev-console-runtime-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/org.apache.kafka/kafka-clients@3.2.3.redhat-00016?type=jar" + ] + }, + { + "ref": "o.t:testcontainers:1.17.3#2", + "dependsOn": [ + "pkg:maven/com.github.docker-java/docker-java-api@3.2.13?type=jar", + "pkg:maven/com.github.docker-java/docker-java-transport-zerodep@3.2.13?type=jar", + "j:junit:4.13.2#1", + "pkg:maven/org.apache.commons/commons-compress@1.26.1.redhat-00001?type=jar", + "pkg:maven/org.rnorth.duct-tape/duct-tape@1.0.8?type=jar", + "pkg:maven/org.slf4j/slf4j-api@1.7.36.redhat-00005?type=jar" + ] + }, + { + "ref": "i.q:quarkus-devservices-common:2.13.9.Final-redhat-00003#2", + "dependsOn": [ + "pkg:maven/com.github.docker-java/docker-java-api@3.2.13?type=jar", + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-junit4-mock@2.13.9.Final?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar", + "o.t:testcontainers:1.17.3#2" + ] + }, + { + "ref": "i.q:quarkus-devservices-deployment:2.13.9.Final-redhat-00003#2", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-devservices-common:2.13.9.Final-redhat-00003#2" + ] + }, + { + "ref": "pkg:maven/io.strimzi/strimzi-test-container@0.100.0?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.13.4.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2-redhat-00001?type=jar", + "pkg:maven/com.github.docker-java/docker-java-api@3.2.13?type=jar", + "pkg:maven/org.apache.commons/commons-compress@1.26.1.redhat-00001?type=jar", + "pkg:maven/org.apache.kafka/kafka-clients@3.2.3.redhat-00016?type=jar", + "pkg:maven/org.slf4j/slf4j-api@1.7.36.redhat-00005?type=jar", + "o.t:testcontainers:1.17.3#2" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-kafka-client-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-caffeine-deployment@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-devservices-deployment:2.13.9.Final-redhat-00003#2", + "pkg:maven/io.quarkus/quarkus-jackson-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-junit4-mock@2.13.9.Final?type=jar", + "pkg:maven/io.quarkus/quarkus-kafka-client@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-smallrye-health-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx-http-dev-console-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.strimzi/strimzi-test-container@0.100.0?type=jar", + "o.t:testcontainers:1.17.3#2" + ] + }, + { + "ref": "pkg:maven/org.apache.kafka/kafka-streams@3.2.3.redhat-00016?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2-redhat-00001?type=jar", + "pkg:maven/org.apache.kafka/kafka-clients@3.2.3.redhat-00016?type=jar", + "pkg:maven/org.rocksdb/rocksdbjni@6.29.4.redhat-00003?type=jar", + "pkg:maven/org.slf4j/slf4j-api@1.7.36.redhat-00005?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-kafka-streams@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-kafka-client@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/org.apache.kafka/kafka-streams@3.2.3.redhat-00016?type=jar" + ] + }, + { + "ref": "i.s:strimzi-test-container:0.100.0#1", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.13.4.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2-redhat-00001?type=jar", + "pkg:maven/com.github.docker-java/docker-java-api@3.2.13?type=jar", + "pkg:maven/org.apache.commons/commons-compress@1.26.1.redhat-00001?type=jar", + "pkg:maven/org.apache.kafka/kafka-clients@3.2.3.redhat-00016?type=jar", + "pkg:maven/org.slf4j/slf4j-api@1.7.36.redhat-00005?type=jar", + "pkg:maven/org.testcontainers/testcontainers@1.17.3?type=jar" + ] + }, + { + "ref": "i.q:quarkus-kafka-client-deployment:2.13.9.Final-redhat-00003#1", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-caffeine-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-devservices-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-jackson-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-junit4-mock@2.13.9.Final?type=jar", + "pkg:maven/io.quarkus/quarkus-kafka-client@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-smallrye-health-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx-http-dev-console-spi@2.13.9.Final-redhat-00003?type=jar", + "i.s:strimzi-test-container:0.100.0#1", + "pkg:maven/org.testcontainers/testcontainers@1.17.3?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-kafka-streams-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-kafka-client-deployment:2.13.9.Final-redhat-00003#1", + "pkg:maven/io.quarkus/quarkus-kafka-streams@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-smallrye-health-spi@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "o.a.h:httpclient:4.5.13.redhat-00006#2", + "dependsOn": [ + "pkg:maven/commons-codec/commons-codec@1.15.0.redhat-00014?type=jar", + "pkg:maven/commons-logging/commons-logging@1.2.0.redhat-00008?type=jar", + "pkg:maven/org.apache.httpcomponents/httpcore@4.4.15.redhat-00008?type=jar" + ] + }, + { + "ref": "i.q:quarkus-apache-httpclient:2.13.9.Final-redhat-00003#2", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "o.a.h:httpclient:4.5.13.redhat-00006#2", + "pkg:maven/org.jboss.logging/commons-logging-jboss-logging@1.0.0.Final-redhat-1?type=jar" + ] + }, + { + "ref": "pkg:maven/org.bitbucket.b_c/jose4j@0.9.3.redhat-00004?type=jar", + "dependsOn": [ + "pkg:maven/org.slf4j/slf4j-api@1.7.36.redhat-00005?type=jar" + ] + }, + { + "ref": "pkg:maven/io.smallrye/smallrye-jwt-common@3.5.4.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/org.bitbucket.b_c/jose4j@0.9.3.redhat-00004?type=jar" + ] + }, + { + "ref": "pkg:maven/io.smallrye/smallrye-jwt-build@3.5.4.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.smallrye/smallrye-jwt-common@3.5.4.redhat-00001?type=jar", + "pkg:maven/org.bitbucket.b_c/jose4j@0.9.3.redhat-00004?type=jar", + "pkg:maven/org.eclipse.microprofile.config/microprofile-config-api@2.0.1.redhat-00001?type=jar", + "pkg:maven/org.eclipse.microprofile.jwt/microprofile-jwt-auth-api@1.2.0.redhat-00002?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-smallrye-jwt-build@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-jsonp@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.smallrye/smallrye-jwt-build@3.5.4.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web-client@2.27.0.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-auth-common@2.27.0.redhat-00001?type=jar", + "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-core@2.27.0.redhat-00001?type=jar", + "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-uri-template@2.27.0.redhat-00001?type=jar", + "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web-common@2.27.0.redhat-00001?type=jar", + "pkg:maven/io.vertx/vertx-web-client@4.3.4.redhat-00008?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-oidc-common@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-credentials@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-mutiny@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-smallrye-jwt-build@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web-client@2.27.0.redhat-00001?type=jar", + "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5.redhat-00008?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-security@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-security-runtime-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus.security/quarkus-security@1.1.4.Final-redhat-00001?type=jar", + "pkg:maven/jakarta.enterprise/jakarta.enterprise.cdi-api@2.0.2.redhat-00005?type=jar", + "pkg:maven/jakarta.interceptor/jakarta.interceptor-api@1.2.5.redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.smallrye/smallrye-jwt@3.5.4.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.smallrye/smallrye-jwt-common@3.5.4.redhat-00001?type=jar", + "pkg:maven/org.bitbucket.b_c/jose4j@0.9.3.redhat-00004?type=jar", + "pkg:maven/org.eclipse.microprofile.config/microprofile-config-api@2.0.1.redhat-00001?type=jar", + "pkg:maven/org.eclipse.microprofile.jwt/microprofile-jwt-auth-api@1.2.0.redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-oidc@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-jsonp@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-oidc-common@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-security@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx-http@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.smallrye/smallrye-jwt@3.5.4.redhat-00001?type=jar", + "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5.redhat-00008?type=jar" + ] + }, + { + "ref": "pkg:maven/org.bouncycastle/bcutil-jdk15on@1.70.0.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/org.bouncycastle/bcprov-jdk15on@1.70.0.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/org.bouncycastle/bcpkix-jdk15on@1.70.0.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/org.bouncycastle/bcprov-jdk15on@1.70.0.redhat-00001?type=jar", + "pkg:maven/org.bouncycastle/bcutil-jdk15on@1.70.0.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/org.keycloak/keycloak-common@18.0.6.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/com.sun.activation/jakarta.activation@1.2.1.redhat-00005?type=jar", + "pkg:maven/org.bouncycastle/bcpkix-jdk15on@1.70.0.redhat-00001?type=jar", + "pkg:maven/org.bouncycastle/bcprov-jdk15on@1.70.0.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/org.keycloak/keycloak-core@18.0.6.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.13.4.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2-redhat-00001?type=jar", + "pkg:maven/org.bouncycastle/bcpkix-jdk15on@1.70.0.redhat-00001?type=jar", + "pkg:maven/org.bouncycastle/bcprov-jdk15on@1.70.0.redhat-00001?type=jar", + "pkg:maven/org.keycloak/keycloak-common@18.0.6.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/org.keycloak/keycloak-authz-client@18.0.6.redhat-00001?type=jar", + "dependsOn": [ + "o.a.h:httpclient:4.5.13.redhat-00006#2", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar", + "pkg:maven/org.keycloak/keycloak-core@18.0.6.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-keycloak-authorization@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/com.sun.activation/jakarta.activation@1.2.1.redhat-00005?type=jar", + "i.q:quarkus-apache-httpclient:2.13.9.Final-redhat-00003#2", + "pkg:maven/io.quarkus/quarkus-oidc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/org.jboss.logging/commons-logging-jboss-logging@1.0.0.Final-redhat-1?type=jar", + "pkg:maven/org.keycloak/keycloak-adapter-core@18.0.6.redhat-00001?type=jar", + "pkg:maven/org.keycloak/keycloak-adapter-spi@18.0.6.redhat-00001?type=jar", + "pkg:maven/org.keycloak/keycloak-authz-client@18.0.6.redhat-00001?type=jar", + "pkg:maven/org.keycloak/keycloak-core@18.0.6.redhat-00001?type=jar" + ] + }, + { + "ref": "o.k:keycloak-common:18.0.6.redhat-00001#1", + "dependsOn": [ + "pkg:maven/org.bouncycastle/bcpkix-jdk15on@1.70.0.redhat-00001?type=jar", + "pkg:maven/org.bouncycastle/bcprov-jdk15on@1.70.0.redhat-00001?type=jar" + ] + }, + { + "ref": "o.k:keycloak-core:18.0.6.redhat-00001#1", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.13.4.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2-redhat-00001?type=jar", + "pkg:maven/org.bouncycastle/bcpkix-jdk15on@1.70.0.redhat-00001?type=jar", + "pkg:maven/org.bouncycastle/bcprov-jdk15on@1.70.0.redhat-00001?type=jar", + "o.k:keycloak-common:18.0.6.redhat-00001#1" + ] + }, + { + "ref": "o.k:keycloak-authz-client:18.0.6.redhat-00001#1", + "dependsOn": [ + "o.a.h:httpclient:4.5.13.redhat-00006#1", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar", + "o.k:keycloak-core:18.0.6.redhat-00001#1" + ] + }, + { + "ref": "i.q:quarkus-keycloak-authorization:2.13.9.Final-redhat-00003#1", + "dependsOn": [ + "pkg:maven/com.sun.activation/jakarta.activation@1.2.1.redhat-00005?type=jar", + "i.q:quarkus-apache-httpclient:2.13.9.Final-redhat-00003#1", + "pkg:maven/io.quarkus/quarkus-oidc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/org.jboss.logging/commons-logging-jboss-logging@1.0.0.Final-redhat-1?type=jar", + "pkg:maven/org.keycloak/keycloak-adapter-core@18.0.6.redhat-00001?type=jar", + "pkg:maven/org.keycloak/keycloak-adapter-spi@18.0.6.redhat-00001?type=jar", + "o.k:keycloak-authz-client:18.0.6.redhat-00001#1", + "o.k:keycloak-core:18.0.6.redhat-00001#1" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-smallrye-jwt-build-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-jsonp-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-smallrye-jwt-build@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-oidc-common-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-credentials-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-mutiny-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-oidc-common@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-smallrye-jwt-build-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx-deployment@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-security-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-security@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-security-runtime-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-security-spi@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-oidc-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/com.sun.activation/jakarta.activation@1.2.1.redhat-00005?type=jar", + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-devservices-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-jsonp-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-junit4-mock@2.13.9.Final?type=jar", + "pkg:maven/io.quarkus/quarkus-oidc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-oidc-common-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-security-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx-http-deployment@2.13.9.Final-redhat-00003?type=jar", + "o.k:keycloak-core:18.0.6.redhat-00001#1", + "pkg:maven/org.testcontainers/testcontainers@1.17.3?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-keycloak-authorization-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-apache-httpclient-deployment@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-keycloak-authorization:2.13.9.Final-redhat-00003#1", + "pkg:maven/io.quarkus/quarkus-oidc-deployment@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-kubernetes@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-container-image@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-kubernetes-client-internal@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-kubernetes-client@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-client@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-jackson@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-kubernetes-client-internal@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.smallrye.config/smallrye-config-source-yaml@2.12.3.redhat-00001?type=jar", + "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5.redhat-00008?type=jar", + "pkg:maven/org.apache.commons/commons-compress@1.26.1.redhat-00001?type=jar", + "pkg:maven/org.jboss.spec.javax.xml.bind/jboss-jaxb-api_2.3_spec@2.0.0.Final-redhat-00004?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-kubernetes-config@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-kubernetes-client@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "i.q:quarkus-kubernetes-client-spi:2.13.9.Final-redhat-00003#1", + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-client@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "i.q:quarkus-kubernetes-client-internal-deployment:2.13.9.Final-redhat-00003#1", + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-client@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-kubernetes-client-internal@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-kubernetes-client-spi:2.13.9.Final-redhat-00003#1", + "i.q:quarkus-kubernetes-spi:2.13.9.Final-redhat-00003#1" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-kubernetes-client-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-jackson-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-kubernetes-client@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-kubernetes-client-internal-deployment:2.13.9.Final-redhat-00003#1" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-kubernetes-config-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-kubernetes-client-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-kubernetes-config@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.fabric8/knative-model@5.12.4.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/io.fabric8/kubernetes-model-core@5.12.4.redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/io.fabric8/knative-client@5.12.4.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/io.fabric8/knative-model@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.fabric8/kubernetes-client@5.12.4.redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/io.dekorate/knative-annotations@2.11.3.redhat-00001?classifier=noapt&type=jar", + "dependsOn": [ + "pkg:maven/io.dekorate/dekorate-core@2.11.3.redhat-00001?type=jar", + "pkg:maven/io.dekorate/option-annotations@2.11.3.redhat-00001?type=jar", + "pkg:maven/io.fabric8/knative-client@5.12.4.redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/io.dekorate/docker-annotations@2.11.3.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.dekorate/dekorate-core@2.11.3.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.dekorate/kubernetes-annotations@2.11.3.redhat-00001?classifier=noapt&type=jar", + "dependsOn": [ + "pkg:maven/io.dekorate/dekorate-core@2.11.3.redhat-00001?type=jar", + "pkg:maven/io.dekorate/docker-annotations@2.11.3.redhat-00001?type=jar", + "pkg:maven/io.dekorate/option-annotations@2.11.3.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-kubernetes-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.dekorate/knative-annotations@2.11.3.redhat-00001?classifier=noapt&type=jar", + "pkg:maven/io.dekorate/kubernetes-annotations@2.11.3.redhat-00001?classifier=noapt&type=jar", + "pkg:maven/io.dekorate/openshift-annotations@2.11.3.redhat-00001?classifier=noapt&type=jar", + "pkg:maven/io.quarkus/quarkus-container-image-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-kubernetes@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-kubernetes-client-internal-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-kubernetes-spi@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-kubernetes-service-binding@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "i.d:dekorate-core:2.11.3.redhat-00001#1", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.13.4.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2-redhat-00001?type=jar", + "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-properties@2.13.4.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml@2.13.4.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jsr310@2.13.4.redhat-00004?type=jar", + "pkg:maven/commons-codec/commons-codec@1.15.0.redhat-00014?type=jar", + "pkg:maven/io.fabric8/kubernetes-client@5.12.4.redhat-00002?type=jar", + "pkg:maven/org.apache.commons/commons-compress@1.26.1.redhat-00001?type=jar", + "pkg:maven/org.fusesource.jansi/jansi@1.18?type=jar" + ] + }, + { + "ref": "pkg:maven/io.dekorate/servicebinding-annotations@2.11.3.redhat-00001?classifier=noapt&type=jar", + "dependsOn": [ + "i.d:dekorate-core:2.11.3.redhat-00001#1" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-kubernetes-service-binding-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.dekorate/servicebinding-annotations@2.11.3.redhat-00001?classifier=noapt&type=jar", + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-kubernetes-service-binding@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-kubernetes-service-binding-spi@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-kubernetes-spi:2.13.9.Final-redhat-00003#1" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-logging-json@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-jsonp@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/org.jboss.logmanager/jboss-logmanager-embedded@1.0.10.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-logging-json-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-jsonp-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-logging-json@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-qute@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus.qute/qute-core@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.vertx/vertx-mail-client@4.3.4.redhat-00008?type=jar", + "dependsOn": [ + "pkg:maven/io.vertx/vertx-auth-common@4.3.4.redhat-00008?type=jar", + "pkg:maven/io.vertx/vertx-core@4.3.4.redhat-00008?type=jar" + ] + }, + { + "ref": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mail-client@2.27.0.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-core@2.27.0.redhat-00001?type=jar", + "pkg:maven/io.vertx/vertx-mail-client@4.3.4.redhat-00008?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-mailer@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-mutiny@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-qute@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mail-client@2.27.0.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus.qute/qute-generator@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus.gizmo/gizmo@1.1.1.Final-redhat-00001?type=jar", + "pkg:maven/io.quarkus.qute/qute-core@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/org.jboss/jandex@2.4.3.Final-redhat-00001?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-qute-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2-redhat-00001?type=jar", + "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-panache-common-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-qute@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx-http-dev-console-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus.qute/qute-generator@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-mailer-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-mailer@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-mutiny-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-qute-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx-deployment@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.fabric8/maven-model-helper@20?type=jar", + "dependsOn": [ + "pkg:maven/org.apache.maven/maven-model@3.8.6.redhat-00002?type=jar", + "pkg:maven/org.jdom/jdom@1.1.3?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-devtools-message-writer@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.smallrye.common/smallrye-common-os@1.13.1.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-devtools-codestarts@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2-redhat-00001?type=jar", + "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml@2.13.4.redhat-00004?type=jar", + "pkg:maven/commons-io/commons-io@2.15.1.redhat-00001?type=jar", + "pkg:maven/io.fabric8/maven-model-helper@20?type=jar", + "pkg:maven/io.quarkus/quarkus-bootstrap-app-model@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-devtools-message-writer@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus.qute/qute-core@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-devtools-registry-client@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2-redhat-00001?type=jar", + "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml@2.13.4.redhat-00004?type=jar", + "pkg:maven/io.quarkus/quarkus-bootstrap-maven-resolver@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-devtools-message-writer@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.smallrye.common/smallrye-common-version@1.13.1.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.smallrye.common/smallrye-common-constraint@1.13.1.redhat-00001?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-devtools-common@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2-redhat-00001?type=jar", + "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml@2.13.4.redhat-00004?type=jar", + "pkg:maven/io.fabric8/maven-model-helper@20?type=jar", + "pkg:maven/io.quarkus/quarkus-devtools-base-codestarts@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-devtools-codestarts@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-devtools-registry-client@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-devtools-utilities@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.smallrye.common/smallrye-common-version@1.13.1.redhat-00001?type=jar", + "pkg:maven/jakarta.enterprise/jakarta.enterprise.cdi-api@2.0.2.redhat-00005?type=jar", + "pkg:maven/org.apache.commons/commons-compress@1.26.1.redhat-00001?type=jar", + "pkg:maven/org.apache.maven/maven-core@3.8.6.redhat-00002?type=jar", + "pkg:maven/org.apache.maven/maven-plugin-api@3.8.6.redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/org.twdata.maven/mojo-executor@2.3.1.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/org.apache.maven/maven-core@3.8.6.redhat-00002?type=jar", + "pkg:maven/org.apache.maven/maven-model@3.8.6.redhat-00002?type=jar", + "pkg:maven/org.apache.maven/maven-plugin-api@3.8.6.redhat-00002?type=jar", + "pkg:maven/org.codehaus.plexus/plexus-utils@3.3.0.redhat-00003?type=jar", + "pkg:maven/org.slf4j/slf4j-api@1.7.36.redhat-00005?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-maven-plugin@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2-redhat-00001?type=jar", + "pkg:maven/io.quarkus/quarkus-bootstrap-core@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-bootstrap-maven-resolver@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-devtools-common@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-project-core-extension-codestarts@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/jakarta.enterprise/jakarta.enterprise.cdi-api@2.0.2.redhat-00005?type=jar", + "pkg:maven/jakarta.inject/jakarta.inject-api@1.0.0.redhat-00002?type=jar", + "pkg:maven/org.apache.maven/maven-core@3.8.6.redhat-00002?type=jar", + "pkg:maven/org.apache.maven/maven-plugin-api@3.8.6.redhat-00002?type=jar", + "pkg:maven/org.freemarker/freemarker@2.3.31.redhat-00001?type=jar", + "pkg:maven/org.glassfish/jakarta.json@1.1.6.redhat-00003?type=jar", + "pkg:maven/org.jboss.slf4j/slf4j-jboss-logmanager@1.2.0.Final-redhat-00001?type=jar", + "pkg:maven/org.twdata.maven/mojo-executor@2.3.1.redhat-00001?type=jar" + ] + }, + { + "ref": "i.m:micrometer-core:1.9.4.redhat-00001#1", + "dependsOn": [ + "pkg:maven/org.hdrhistogram/HdrHistogram@2.1.12.redhat-00004?type=jar", + "pkg:maven/org.latencyutils/LatencyUtils@2.0.3.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-micrometer@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "i.m:micrometer-core:1.9.4.redhat-00001#1", + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-jsonp@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx-http@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/org.jboss.slf4j/slf4j-jboss-logmanager@1.2.0.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus.http/quarkus-http-http-core@4.1.9.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.netty/netty-buffer@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus.http/quarkus-http-core@4.1.9.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.netty/netty-codec-http@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.quarkus.http/quarkus-http-http-core@4.1.9.redhat-00001?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus.http/quarkus-http-servlet@4.1.9.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus.http/quarkus-http-core@4.1.9.redhat-00001?type=jar", + "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5.redhat-00008?type=jar", + "pkg:maven/jakarta.servlet/jakarta.servlet-api@4.0.3.redhat-00006?type=jar" + ] + }, + { + "ref": "pkg:maven/org.jboss.metadata/jboss-metadata-web@15.1.0.Final-redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/org.jboss.metadata/jboss-metadata-common@15.1.0.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-undertow-spi@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus.http/quarkus-http-servlet@4.1.9.redhat-00001?type=jar", + "pkg:maven/jakarta.servlet/jakarta.servlet-api@4.0.3.redhat-00006?type=jar", + "pkg:maven/org.jboss.metadata/jboss-metadata-web@15.1.0.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-micrometer-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "i.m:micrometer-core:1.9.4.redhat-00001#1", + "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-jsonp-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-micrometer@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-resteasy-common-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-resteasy-reactive-spi-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-undertow-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx-http-deployment@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "i.m:micrometer-registry-prometheus:1.9.4.redhat-00001#1", + "dependsOn": [ + "i.m:micrometer-core:1.9.4.redhat-00001#1", + "pkg:maven/io.prometheus/simpleclient_common@0.15.0.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-micrometer-registry-prometheus@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "i.m:micrometer-registry-prometheus:1.9.4.redhat-00001#1", + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-micrometer@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-micrometer-registry-prometheus-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "i.m:micrometer-registry-prometheus:1.9.4.redhat-00001#1", + "pkg:maven/io.quarkus/quarkus-micrometer-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-micrometer-registry-prometheus@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/org.eclipse.microprofile.reactive-streams-operators/microprofile-reactive-streams-operators-api@1.0.1.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/org.reactivestreams/reactive-streams@1.0.3.redhat-00006?type=jar" + ] + }, + { + "ref": "pkg:maven/org.eclipse.microprofile.reactive-streams-operators/microprofile-reactive-streams-operators-core@1.0.1.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/org.eclipse.microprofile.reactive-streams-operators/microprofile-reactive-streams-operators-api@1.0.1.redhat-00001?type=jar", + "pkg:maven/org.reactivestreams/reactive-streams@1.0.3.redhat-00006?type=jar" + ] + }, + { + "ref": "pkg:maven/io.smallrye.reactive/mutiny-reactive-streams-operators@1.7.0.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.smallrye.reactive/mutiny@1.7.0.redhat-00001?type=jar", + "pkg:maven/org.eclipse.microprofile.reactive-streams-operators/microprofile-reactive-streams-operators-api@1.0.1.redhat-00001?type=jar", + "pkg:maven/org.eclipse.microprofile.reactive-streams-operators/microprofile-reactive-streams-operators-core@1.0.1.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-mutiny-reactive-streams-operators@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-mutiny@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-smallrye-context-propagation@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.smallrye.reactive/mutiny-reactive-streams-operators@1.7.0.redhat-00001?type=jar", + "pkg:maven/io.smallrye.reactive/mutiny-smallrye-context-propagation@1.7.0.redhat-00001?type=jar", + "pkg:maven/org.eclipse.microprofile.reactive-streams-operators/microprofile-reactive-streams-operators-api@1.0.1.redhat-00001?type=jar", + "pkg:maven/org.eclipse.microprofile.reactive-streams-operators/microprofile-reactive-streams-operators-core@1.0.1.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/org.mongodb/mongodb-crypt@1.5.2?type=jar", + "dependsOn": [ + "pkg:maven/net.java.dev.jna/jna@5.8.0?type=jar", + "pkg:maven/org.mongodb/bson@4.7.2?type=jar", + "pkg:maven/org.slf4j/slf4j-api@1.7.36.redhat-00005?type=jar" + ] + }, + { + "ref": "pkg:maven/io.projectreactor/reactor-core@3.2.22.RELEASE?type=jar", + "dependsOn": [ + "pkg:maven/org.reactivestreams/reactive-streams@1.0.3.redhat-00006?type=jar" + ] + }, + { + "ref": "pkg:maven/org.mongodb/bson-record-codec@4.7.2?type=jar", + "dependsOn": [ + "pkg:maven/org.mongodb/bson@4.7.2?type=jar" + ] + }, + { + "ref": "pkg:maven/org.mongodb/mongodb-driver-core@4.7.2?type=jar", + "dependsOn": [ + "pkg:maven/org.mongodb/bson@4.7.2?type=jar", + "pkg:maven/org.mongodb/bson-record-codec@4.7.2?type=jar" + ] + }, + { + "ref": "pkg:maven/org.mongodb/mongodb-driver-reactivestreams@4.7.2?type=jar", + "dependsOn": [ + "pkg:maven/io.projectreactor/reactor-core@3.2.22.RELEASE?type=jar", + "pkg:maven/org.mongodb/bson@4.7.2?type=jar", + "pkg:maven/org.mongodb/mongodb-driver-core@4.7.2?type=jar", + "pkg:maven/org.reactivestreams/reactive-streams@1.0.3.redhat-00006?type=jar" + ] + }, + { + "ref": "pkg:maven/org.mongodb/mongodb-driver-sync@4.7.2?type=jar", + "dependsOn": [ + "pkg:maven/org.mongodb/bson@4.7.2?type=jar", + "pkg:maven/org.mongodb/mongodb-driver-core@4.7.2?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-mongodb-client@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-mutiny@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-mutiny-reactive-streams-operators@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/org.mongodb/mongodb-crypt@1.5.2?type=jar", + "pkg:maven/org.mongodb/mongodb-driver-reactivestreams@4.7.2?type=jar", + "pkg:maven/org.mongodb/mongodb-driver-sync@4.7.2?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-mutiny-reactive-streams-operators-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-mutiny-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-mutiny-reactive-streams-operators@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/org.testcontainers/mongodb@1.17.3?type=jar", + "dependsOn": [ + "o.t:testcontainers:1.17.3#2" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-mongodb-client-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-devservices-deployment:2.13.9.Final-redhat-00003#2", + "pkg:maven/io.quarkus/quarkus-kubernetes-service-binding-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-mongodb-client@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-mutiny-reactive-streams-operators-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-smallrye-health-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/org.testcontainers/mongodb@1.17.3?type=jar" + ] + }, + { + "ref": "i.s:smallrye-context-propagation-jta:1.2.2.redhat-00001#1", + "dependsOn": [ + "pkg:maven/javax.transaction/javax.transaction-api@1.3?type=jar", + "pkg:maven/org.eclipse.microprofile.context-propagation/microprofile-context-propagation-api@1.2.0.redhat-00012?type=jar" + ] + }, + { + "ref": "i.q:quarkus-narayana-jta:2.13.9.Final-redhat-00003#2", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-mutiny@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-transaction-annotations@2.13.9.Final-redhat-00003?type=jar", + "i.s:smallrye-context-propagation-jta:1.2.2.redhat-00001#1", + "pkg:maven/io.smallrye.reactive/smallrye-reactive-converter-api@2.7.0.redhat-00001?type=jar", + "pkg:maven/io.smallrye.reactive/smallrye-reactive-converter-mutiny@2.7.0.redhat-00001?type=jar", + "pkg:maven/jakarta.transaction/jakarta.transaction-api@1.3.3.redhat-00004?type=jar", + "o.j.n.j:narayana-jta:5.13.1.Final-redhat-00001#1", + "pkg:maven/org.jboss.narayana.jts/narayana-jts-integration@5.13.1.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "i.s:smallrye-jwt-common:3.5.4.redhat-00001#1", + "dependsOn": [ + "pkg:maven/org.bitbucket.b_c/jose4j@0.9.3.redhat-00004?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "i.s:smallrye-jwt-build:3.5.4.redhat-00001#1", + "dependsOn": [ + "i.s:smallrye-jwt-common:3.5.4.redhat-00001#1", + "pkg:maven/org.bitbucket.b_c/jose4j@0.9.3.redhat-00004?type=jar", + "pkg:maven/org.eclipse.microprofile.config/microprofile-config-api@2.0.1.redhat-00001?type=jar", + "pkg:maven/org.eclipse.microprofile.jwt/microprofile-jwt-auth-api@1.2.0.redhat-00002?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "i.q:quarkus-smallrye-jwt-build:2.13.9.Final-redhat-00003#1", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-jsonp@2.13.9.Final-redhat-00003?type=jar", + "i.s:smallrye-jwt-build:3.5.4.redhat-00001#1" + ] + }, + { + "ref": "i.q:quarkus-oidc-common:2.13.9.Final-redhat-00003#1", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-credentials@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-mutiny@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-smallrye-jwt-build:2.13.9.Final-redhat-00003#1", + "pkg:maven/io.quarkus/quarkus-vertx@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web-client@2.27.0.redhat-00001?type=jar", + "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5.redhat-00008?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-oidc-client@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-oidc-common:2.13.9.Final-redhat-00003#1", + "pkg:maven/io.quarkus/quarkus-vertx@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "i.q:quarkus-smallrye-jwt-build-deployment:2.13.9.Final-redhat-00003#1", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-jsonp-deployment@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-smallrye-jwt-build:2.13.9.Final-redhat-00003#1" + ] + }, + { + "ref": "i.q:quarkus-oidc-common-deployment:2.13.9.Final-redhat-00003#1", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-credentials-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-mutiny-deployment@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-oidc-common:2.13.9.Final-redhat-00003#1", + "i.q:quarkus-smallrye-jwt-build-deployment:2.13.9.Final-redhat-00003#1", + "pkg:maven/io.quarkus/quarkus-vertx-deployment@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-oidc-client-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-devservices-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-oidc-client@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-oidc-common-deployment:2.13.9.Final-redhat-00003#1", + "pkg:maven/io.quarkus/quarkus-vertx-deployment@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-rest-client-config@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/org.eclipse.microprofile.rest.client/microprofile-rest-client-api@2.0.0.redhat-00003?type=jar", + "pkg:maven/org.jboss/jandex@2.4.3.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/org.jboss.resteasy/resteasy-core-spi@4.7.9.Final-redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/jakarta.validation/jakarta.validation-api@2.0.2.redhat-00007?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar", + "pkg:maven/org.jboss.spec.javax.ws.rs/jboss-jaxrs-api_2.1_spec@2.0.1.Final-redhat-00001?type=jar", + "pkg:maven/org.jboss.spec.javax.xml.bind/jboss-jaxb-api_2.3_spec@2.0.0.Final-redhat-00004?type=jar", + "pkg:maven/org.reactivestreams/reactive-streams@1.0.3.redhat-00006?type=jar" + ] + }, + { + "ref": "pkg:maven/org.jboss.resteasy/resteasy-core@4.7.9.Final-redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/com.ibm.async/asyncutil@0.1.0.redhat-00010?type=jar", + "pkg:maven/io.smallrye.config/smallrye-config@2.12.3.redhat-00001?type=jar", + "pkg:maven/jakarta.validation/jakarta.validation-api@2.0.2.redhat-00007?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar", + "pkg:maven/org.jboss.resteasy/resteasy-core-spi@4.7.9.Final-redhat-00001?type=jar", + "pkg:maven/org.jboss.spec.javax.ws.rs/jboss-jaxrs-api_2.1_spec@2.0.1.Final-redhat-00001?type=jar", + "pkg:maven/org.jboss.spec.javax.xml.bind/jboss-jaxb-api_2.3_spec@2.0.0.Final-redhat-00004?type=jar", + "pkg:maven/org.reactivestreams/reactive-streams@1.0.3.redhat-00006?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-resteasy-common@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/com.sun.activation/jakarta.activation@1.2.1.redhat-00005?type=jar", + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/org.jboss.resteasy/resteasy-core@4.7.9.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "o.a.h:httpcore-nio:4.4.15.redhat-00008#1", + "dependsOn": [ + "pkg:maven/org.apache.httpcomponents/httpcore@4.4.15.redhat-00008?type=jar" + ] + }, + { + "ref": "o.a.h:httpasyncclient:4.1.5.redhat-00004#1", + "dependsOn": [ + "o.a.h:httpclient:4.5.13.redhat-00006#1", + "pkg:maven/org.apache.httpcomponents/httpcore@4.4.15.redhat-00008?type=jar", + "o.a.h:httpcore-nio:4.4.15.redhat-00008#1" + ] + }, + { + "ref": "pkg:maven/org.jboss.resteasy/resteasy-cdi@4.7.9.Final-redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/jakarta.validation/jakarta.validation-api@2.0.2.redhat-00007?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar", + "pkg:maven/org.jboss.resteasy/resteasy-core@4.7.9.Final-redhat-00001?type=jar", + "pkg:maven/org.jboss.resteasy/resteasy-core-spi@4.7.9.Final-redhat-00001?type=jar", + "pkg:maven/org.jboss.spec.javax.ws.rs/jboss-jaxrs-api_2.1_spec@2.0.1.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/org.jboss.resteasy/resteasy-client-api@4.7.9.Final-redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar", + "pkg:maven/org.jboss.resteasy/resteasy-core-spi@4.7.9.Final-redhat-00001?type=jar", + "pkg:maven/org.jboss.spec.javax.ws.rs/jboss-jaxrs-api_2.1_spec@2.0.1.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/org.jboss.resteasy/resteasy-client@4.7.9.Final-redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/commons-codec/commons-codec@1.15.0.redhat-00014?type=jar", + "pkg:maven/commons-io/commons-io@2.15.1.redhat-00001?type=jar", + "o.a.h:httpclient:4.5.13.redhat-00006#1", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar", + "pkg:maven/org.jboss.resteasy/resteasy-client-api@4.7.9.Final-redhat-00001?type=jar", + "pkg:maven/org.jboss.resteasy/resteasy-core@4.7.9.Final-redhat-00001?type=jar", + "pkg:maven/org.jboss.resteasy/resteasy-core-spi@4.7.9.Final-redhat-00001?type=jar", + "pkg:maven/org.jboss.spec.javax.ws.rs/jboss-jaxrs-api_2.1_spec@2.0.1.Final-redhat-00001?type=jar", + "pkg:maven/org.reactivestreams/reactive-streams@1.0.3.redhat-00006?type=jar" + ] + }, + { + "ref": "pkg:maven/org.jboss.resteasy/resteasy-client-microprofile-base@4.7.9.Final-redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/org.eclipse.microprofile.rest.client/microprofile-rest-client-api@2.0.0.redhat-00003?type=jar", + "pkg:maven/org.jboss.resteasy/resteasy-cdi@4.7.9.Final-redhat-00001?type=jar", + "pkg:maven/org.jboss.resteasy/resteasy-client@4.7.9.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/org.jboss.resteasy/resteasy-client-microprofile@4.7.9.Final-redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/org.jboss.resteasy/resteasy-client-microprofile-base@4.7.9.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-rest-client@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "i.q:quarkus-apache-httpclient:2.13.9.Final-redhat-00003#1", + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-rest-client-config@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-resteasy-common@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/jakarta.interceptor/jakarta.interceptor-api@1.2.5.redhat-00003?type=jar", + "o.a.h:httpasyncclient:4.1.5.redhat-00004#1", + "pkg:maven/org.jboss.logging/commons-logging-jboss-logging@1.0.0.Final-redhat-1?type=jar", + "pkg:maven/org.jboss.resteasy/resteasy-client-microprofile@4.7.9.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-oidc-client-filter@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-oidc-client@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-rest-client@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-rest-client-config-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-rest-client-config@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-resteasy-common-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-resteasy-common@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-resteasy-common-spi@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-rest-client-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-apache-httpclient-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-rest-client@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-rest-client-config-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-resteasy-common-deployment@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-oidc-client-filter-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-oidc-client-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-oidc-client-filter@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-rest-client-deployment@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-rest-client-reactive@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-jaxrs-client-reactive@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-rest-client-config@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-smallrye-stork@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.smallrye.stork/stork-api@1.1.2.redhat-00002?type=jar", + "pkg:maven/io.smallrye.stork/stork-core@1.1.2.redhat-00002?type=jar", + "pkg:maven/org.eclipse.microprofile.rest.client/microprofile-rest-client-api@2.0.0.redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-oidc-client-reactive-filter@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-oidc-client@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-rest-client-reactive@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-rest-client-reactive-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-jaxrs-client-reactive-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-rest-client-config-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-rest-client-reactive@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-smallrye-stork-deployment@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-oidc-client-reactive-filter-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-oidc-client-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-oidc-client-reactive-filter@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-rest-client-reactive-deployment@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "i.q:quarkus-oidc-deployment:2.13.9.Final-redhat-00003#1", + "dependsOn": [ + "pkg:maven/com.sun.activation/jakarta.activation@1.2.1.redhat-00005?type=jar", + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-devservices-deployment:2.13.9.Final-redhat-00003#2", + "pkg:maven/io.quarkus/quarkus-jsonp-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-junit4-mock@2.13.9.Final?type=jar", + "pkg:maven/io.quarkus/quarkus-oidc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-oidc-common-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-security-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx-http-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/org.keycloak/keycloak-core@18.0.6.redhat-00001?type=jar", + "o.t:testcontainers:1.17.3#2" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-openshift@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-container-image-openshift@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-kubernetes@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-kubernetes-client-internal@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-openshift-client@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.fabric8/openshift-client@5.12.4.redhat-00002?type=jar", + "pkg:maven/io.quarkus/quarkus-kubernetes-client@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-openshift-client-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-kubernetes-client-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-openshift-client@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-openshift-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.dekorate/openshift-annotations@2.11.3.redhat-00001?classifier=noapt&type=jar", + "pkg:maven/io.quarkus/quarkus-container-image-openshift-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-kubernetes-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-openshift@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.opentelemetry/opentelemetry-extension-annotations@1.17.0.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.opentelemetry/opentelemetry-api@1.17.0.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-annotations@1.17.0.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.opentelemetry/opentelemetry-api@1.17.0.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-api@1.17.0.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.opentelemetry/opentelemetry-api@1.17.0.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-annotations-support@1.17.0.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.opentelemetry/opentelemetry-api@1.17.0.redhat-00001?type=jar", + "pkg:maven/io.opentelemetry/opentelemetry-semconv@1.17.0.redhat-00001?type=jar", + "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-api@1.17.0.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-api-semconv@1.17.0.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.opentelemetry/opentelemetry-semconv@1.17.0.redhat-00001?type=jar", + "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-api@1.17.0.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-opentelemetry@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.opentelemetry/opentelemetry-extension-annotations@1.17.0.redhat-00001?type=jar", + "pkg:maven/io.opentelemetry/opentelemetry-sdk@1.17.0.redhat-00001?type=jar", + "pkg:maven/io.opentelemetry/opentelemetry-sdk-extension-autoconfigure-spi@1.17.0.redhat-00001?type=jar", + "pkg:maven/io.opentelemetry/opentelemetry-semconv@1.17.0.redhat-00001?type=jar", + "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-annotations@1.17.0.redhat-00001?type=jar", + "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-annotations-support@1.17.0.redhat-00001?type=jar", + "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-api@1.17.0.redhat-00001?type=jar", + "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-api-semconv@1.17.0.redhat-00001?type=jar", + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.smallrye.common/smallrye-common-vertx-context@1.13.1.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-opentelemetry-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-agroal-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-datasource-deployment-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-opentelemetry@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx-http-deployment-spi@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/com.cronutils/cron-utils@9.2.0.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/org.slf4j/slf4j-api@1.7.36.redhat-00005?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-scheduler-api@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-scheduler-common@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/com.cronutils/cron-utils@9.2.0.redhat-00001?type=jar", + "pkg:maven/io.quarkus/quarkus-scheduler-api@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-scheduler-kotlin@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-scheduler-common@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-scheduler@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-scheduler-kotlin@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/org.glassfish/jakarta.el@3.0.4.redhat-00002?type=jar", + "pkg:maven/org.jboss.slf4j/slf4j-jboss-logmanager@1.2.0.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/com.mchange/c3p0@0.9.5.4?type=jar", + "dependsOn": [ + "pkg:maven/com.mchange/mchange-commons-java@0.2.15.redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/com.zaxxer/HikariCP-java7@2.4.13?type=jar", + "dependsOn": [ + "pkg:maven/org.slf4j/slf4j-api@1.7.36.redhat-00005?type=jar" + ] + }, + { + "ref": "pkg:maven/org.quartz-scheduler/quartz@2.3.2.redhat-00007?type=jar", + "dependsOn": [ + "pkg:maven/com.mchange/c3p0@0.9.5.4?type=jar", + "pkg:maven/com.mchange/mchange-commons-java@0.2.15.redhat-00003?type=jar", + "pkg:maven/com.zaxxer/HikariCP-java7@2.4.13?type=jar", + "pkg:maven/org.slf4j/slf4j-api@1.7.36.redhat-00005?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-quartz@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-scheduler@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/jakarta.transaction/jakarta.transaction-api@1.3.3.redhat-00004?type=jar", + "pkg:maven/org.quartz-scheduler/quartz@2.3.2.redhat-00007?type=jar" + ] + }, + { + "ref": "o.q:quartz:2.3.2.redhat-00007#1", + "dependsOn": [ + "pkg:maven/com.mchange/mchange-commons-java@0.2.15.redhat-00003?type=jar", + "pkg:maven/org.slf4j/slf4j-api@1.7.36.redhat-00005?type=jar" + ] + }, + { + "ref": "i.q:quarkus-quartz:2.13.9.Final-redhat-00003#1", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-scheduler@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/jakarta.transaction/jakarta.transaction-api@1.3.3.redhat-00004?type=jar", + "o.q:quartz:2.3.2.redhat-00007#1" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-scheduler-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-scheduler@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx-deployment@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/org.eclipse.transformer/org.eclipse.transformer@0.5.0.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/biz.aQute.bnd/biz.aQute.bnd.transform@6.3.1?type=jar", + "pkg:maven/org.slf4j/slf4j-api@1.7.36.redhat-00005?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-quartz-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-agroal-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-quartz:2.13.9.Final-redhat-00003#1", + "pkg:maven/io.quarkus/quarkus-scheduler-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/org.eclipse.transformer/org.eclipse.transformer@0.5.0.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-sql-client@2.27.0.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-core@2.27.0.redhat-00001?type=jar", + "pkg:maven/io.vertx/vertx-sql-client@4.3.4.redhat-00008?type=jar" + ] + }, + { + "ref": "pkg:maven/io.vertx/vertx-mssql-client@4.3.4.redhat-00008?type=jar", + "dependsOn": [ + "pkg:maven/io.vertx/vertx-core@4.3.4.redhat-00008?type=jar", + "pkg:maven/io.vertx/vertx-sql-client@4.3.4.redhat-00008?type=jar" + ] + }, + { + "ref": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mssql-client@2.27.0.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-core@2.27.0.redhat-00001?type=jar", + "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-sql-client@2.27.0.redhat-00001?type=jar", + "pkg:maven/io.vertx/vertx-mssql-client@4.3.4.redhat-00008?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-reactive-mssql-client@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-credentials@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-reactive-datasource@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mssql-client@2.27.0.redhat-00001?type=jar", + "pkg:maven/io.vertx/vertx-mssql-client@4.3.4.redhat-00008?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-reactive-mssql-client-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-credentials-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-devservices-mssql@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-reactive-datasource-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-reactive-mssql-client@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-smallrye-health-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx-deployment@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.vertx/vertx-mysql-client@4.3.4.redhat-00008?type=jar", + "dependsOn": [ + "pkg:maven/io.vertx/vertx-core@4.3.4.redhat-00008?type=jar", + "pkg:maven/io.vertx/vertx-sql-client@4.3.4.redhat-00008?type=jar" + ] + }, + { + "ref": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mysql-client@2.27.0.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-core@2.27.0.redhat-00001?type=jar", + "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-sql-client@2.27.0.redhat-00001?type=jar", + "pkg:maven/io.vertx/vertx-mysql-client@4.3.4.redhat-00008?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-reactive-mysql-client@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-credentials@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-reactive-datasource@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mysql-client@2.27.0.redhat-00001?type=jar", + "pkg:maven/io.vertx/vertx-mysql-client@4.3.4.redhat-00008?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-reactive-mysql-client-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-credentials-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-devservices-mysql@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-reactive-datasource-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-reactive-mysql-client@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-smallrye-health-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx-deployment@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.vertx/vertx-oracle-client@4.3.4?type=jar", + "dependsOn": [ + "pkg:maven/com.oracle.database.jdbc/ojdbc11@21.5.0.0?type=jar", + "pkg:maven/io.vertx/vertx-core@4.3.4.redhat-00008?type=jar", + "pkg:maven/io.vertx/vertx-sql-client@4.3.4.redhat-00008?type=jar" + ] + }, + { + "ref": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-oracle-client@2.27.0?type=jar", + "dependsOn": [ + "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-core@2.27.0.redhat-00001?type=jar", + "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-sql-client@2.27.0.redhat-00001?type=jar", + "pkg:maven/io.vertx/vertx-oracle-client@4.3.4?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-reactive-oracle-client@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/com.oracle.database.jdbc/ojdbc11@21.5.0.0?type=jar", + "pkg:maven/io.quarkus/quarkus-credentials@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-jdbc-oracle@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-reactive-datasource@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-oracle-client@2.27.0?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-reactive-oracle-client-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-credentials-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-devservices-oracle@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-jdbc-oracle-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-reactive-datasource-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-reactive-oracle-client@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-smallrye-health-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx-deployment@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/com.ongres.stringprep/saslprep@1.1.0.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/com.ongres.stringprep/stringprep@1.1.0.redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/com.ongres.scram/common@2.1.0.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/com.ongres.stringprep/saslprep@1.1.0.redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/com.ongres.scram/client@2.1.0.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/com.ongres.scram/common@2.1.0.redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/io.vertx/vertx-pg-client@4.3.4.redhat-00008?type=jar", + "dependsOn": [ + "pkg:maven/io.vertx/vertx-core@4.3.4.redhat-00008?type=jar", + "pkg:maven/io.vertx/vertx-sql-client@4.3.4.redhat-00008?type=jar" + ] + }, + { + "ref": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-pg-client@2.27.0.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/com.ongres.scram/client@2.1.0.redhat-00002?type=jar", + "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-core@2.27.0.redhat-00001?type=jar", + "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-sql-client@2.27.0.redhat-00001?type=jar", + "pkg:maven/io.vertx/vertx-pg-client@4.3.4.redhat-00008?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-reactive-pg-client@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/com.ongres.scram/client@2.1.0.redhat-00002?type=jar", + "pkg:maven/io.quarkus/quarkus-credentials@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-reactive-datasource@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-pg-client@2.27.0.redhat-00001?type=jar", + "pkg:maven/io.vertx/vertx-pg-client@4.3.4.redhat-00008?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-reactive-pg-client-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-credentials-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-devservices-postgresql@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-reactive-datasource-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-reactive-pg-client@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-smallrye-health-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx-deployment@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-reactive-routes@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-jackson@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx-http@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus.security/quarkus-security@1.1.4.Final-redhat-00001?type=jar", + "pkg:maven/io.smallrye.common/smallrye-common-annotation@1.13.1.redhat-00001?type=jar", + "pkg:maven/jakarta.enterprise/jakarta.enterprise.cdi-api@2.0.2.redhat-00005?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-reactive-routes-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-hibernate-validator-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-jackson-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-reactive-routes@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx-http-deployment@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "o.a.h:httpasyncclient:4.1.5.redhat-00004#2", + "dependsOn": [ + "pkg:maven/commons-logging/commons-logging@1.2.0.redhat-00008?type=jar", + "o.a.h:httpclient:4.5.13.redhat-00006#1", + "pkg:maven/org.apache.httpcomponents/httpcore@4.4.15.redhat-00008?type=jar", + "o.a.h:httpcore-nio:4.4.15.redhat-00008#1" + ] + }, + { + "ref": "pkg:maven/org.jboss.weld/weld-api@3.1.0.SP4-redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/jakarta.enterprise/jakarta.enterprise.cdi-api@2.0.2.redhat-00005?type=jar" + ] + }, + { + "ref": "o.j.r:resteasy-cdi:4.7.9.Final-redhat-00001#1", + "dependsOn": [ + "pkg:maven/jakarta.validation/jakarta.validation-api@2.0.2.redhat-00007?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar", + "pkg:maven/org.jboss.resteasy/resteasy-core@4.7.9.Final-redhat-00001?type=jar", + "pkg:maven/org.jboss.resteasy/resteasy-core-spi@4.7.9.Final-redhat-00001?type=jar", + "pkg:maven/org.jboss.spec.javax.interceptor/jboss-interceptors-api_1.2_spec@2.0.0.Final-redhat-00002?type=jar", + "pkg:maven/org.jboss.spec.javax.ws.rs/jboss-jaxrs-api_2.1_spec@2.0.1.Final-redhat-00001?type=jar", + "pkg:maven/org.jboss.weld/weld-api@3.1.0.SP4-redhat-00001?type=jar" + ] + }, + { + "ref": "o.j.r:resteasy-client-microprofile-base:4.7.9.Final-redhat-00001#1", + "dependsOn": [ + "pkg:maven/org.eclipse.microprofile.rest.client/microprofile-rest-client-api@2.0.0.redhat-00003?type=jar", + "o.j.r:resteasy-cdi:4.7.9.Final-redhat-00001#1", + "pkg:maven/org.jboss.resteasy/resteasy-client@4.7.9.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "o.j.r:resteasy-client-microprofile:4.7.9.Final-redhat-00001#1", + "dependsOn": [ + "o.j.r:resteasy-client-microprofile-base:4.7.9.Final-redhat-00001#1" + ] + }, + { + "ref": "i.q:quarkus-rest-client:2.13.9.Final-redhat-00003#1", + "dependsOn": [ + "i.q:quarkus-apache-httpclient:2.13.9.Final-redhat-00003#1", + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-rest-client-config@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-resteasy-common@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/jakarta.interceptor/jakarta.interceptor-api@1.2.5.redhat-00003?type=jar", + "o.a.h:httpasyncclient:4.1.5.redhat-00004#2", + "pkg:maven/org.jboss.logging/commons-logging-jboss-logging@1.0.0.Final-redhat-1?type=jar", + "o.j.r:resteasy-client-microprofile:4.7.9.Final-redhat-00001#1" + ] + }, + { + "ref": "pkg:maven/com.fasterxml.jackson.jaxrs/jackson-jaxrs-base@2.13.4.redhat-00004?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.13.4.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/com.fasterxml.jackson.module/jackson-module-jaxb-annotations@2.13.4.redhat-00004?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.13.4.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2-redhat-00001?type=jar", + "pkg:maven/jakarta.activation/jakarta.activation-api@1.2.1.redhat-00005?type=jar" + ] + }, + { + "ref": "pkg:maven/com.fasterxml.jackson.jaxrs/jackson-jaxrs-json-provider@2.13.4.redhat-00004?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.jaxrs/jackson-jaxrs-base@2.13.4.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.module/jackson-module-jaxb-annotations@2.13.4.redhat-00004?type=jar" + ] + }, + { + "ref": "pkg:maven/com.github.java-json-tools/msg-simple@1.2.0.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/com.github.java-json-tools/btf@1.3.0.redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/com.github.java-json-tools/jackson-coreutils@2.0.0.redhat-00005?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2-redhat-00001?type=jar", + "pkg:maven/com.github.java-json-tools/msg-simple@1.2.0.redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/com.github.java-json-tools/json-patch@1.13.0.redhat-00007?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2-redhat-00001?type=jar", + "pkg:maven/com.github.java-json-tools/jackson-coreutils@2.0.0.redhat-00005?type=jar", + "pkg:maven/com.github.java-json-tools/msg-simple@1.2.0.redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/org.jboss.resteasy/resteasy-jackson2-provider@4.7.9.Final-redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.13.4.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2-redhat-00001?type=jar", + "pkg:maven/com.fasterxml.jackson.jaxrs/jackson-jaxrs-json-provider@2.13.4.redhat-00004?type=jar", + "pkg:maven/com.github.java-json-tools/json-patch@1.13.0.redhat-00007?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-rest-client-jackson@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-jackson@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-rest-client@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/org.jboss.resteasy/resteasy-jackson2-provider@4.7.9.Final-redhat-00001?type=jar", + "pkg:maven/org.jboss.spec.javax.xml.bind/jboss-jaxb-api_2.3_spec@2.0.0.Final-redhat-00004?type=jar" + ] + }, + { + "ref": "c.f.j.m:jackson-module-jaxb-annotations:2.13.4.redhat-00004#1", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.13.4.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2-redhat-00001?type=jar" + ] + }, + { + "ref": "c.f.j.j:jackson-jaxrs-json-provider:2.13.4.redhat-00004#1", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.jaxrs/jackson-jaxrs-base@2.13.4.redhat-00004?type=jar", + "c.f.j.m:jackson-module-jaxb-annotations:2.13.4.redhat-00004#1" + ] + }, + { + "ref": "o.j.r:resteasy-jackson2-provider:4.7.9.Final-redhat-00001#1", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.13.4.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2-redhat-00001?type=jar", + "c.f.j.j:jackson-jaxrs-json-provider:2.13.4.redhat-00004#1", + "pkg:maven/com.github.java-json-tools/json-patch@1.13.0.redhat-00007?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "i.q:quarkus-rest-client-jackson:2.13.9.Final-redhat-00003#1", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-jackson@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-rest-client@2.13.9.Final-redhat-00003?type=jar", + "o.j.r:resteasy-jackson2-provider:4.7.9.Final-redhat-00001#1", + "pkg:maven/org.jboss.spec.javax.xml.bind/jboss-jaxb-api_2.3_spec@2.0.0.Final-redhat-00004?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-rest-client-jackson-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-jackson-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-rest-client-deployment@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-rest-client-jackson:2.13.9.Final-redhat-00003#1" + ] + }, + { + "ref": "pkg:maven/org.jboss.resteasy/resteasy-jaxb-provider@4.7.9.Final-redhat-00001?type=jar", + "dependsOn": [ + "o.g.j:jaxb-runtime:2.3.3.b02-redhat-00004#1", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar", + "pkg:maven/org.jboss.spec.javax.xml.bind/jboss-jaxb-api_2.3_spec@2.0.0.Final-redhat-00004?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-rest-client-jaxb@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/com.sun.activation/jakarta.activation@1.2.1.redhat-00005?type=jar", + "i.q:quarkus-jaxb:2.13.9.Final-redhat-00003#1", + "pkg:maven/io.quarkus/quarkus-rest-client@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/org.jboss.resteasy/resteasy-jaxb-provider@4.7.9.Final-redhat-00001?type=jar", + "pkg:maven/org.jboss.spec.javax.xml.bind/jboss-jaxb-api_2.3_spec@2.0.0.Final-redhat-00004?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-rest-client-jaxb-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-jaxb-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-rest-client-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-rest-client-jaxb@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/org.jboss.resteasy/resteasy-json-binding-provider@4.7.9.Final-redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/jakarta.json.bind/jakarta.json.bind-api@1.0.2.redhat-00004?type=jar", + "o.e:yasson:1.0.11.redhat-00002#1", + "pkg:maven/org.glassfish/jakarta.json@1.1.6.redhat-00003?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/org.jboss.resteasy/resteasy-json-p-provider@4.7.9.Final-redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-rest-client-jsonb@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/commons-io/commons-io@2.15.1.redhat-00001?type=jar", + "i.q:quarkus-jsonb:2.13.9.Final-redhat-00003#1", + "pkg:maven/io.quarkus/quarkus-rest-client@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/org.jboss.resteasy/resteasy-json-binding-provider@4.7.9.Final-redhat-00001?type=jar", + "pkg:maven/org.jboss.resteasy/resteasy-json-p-provider@4.7.9.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "o.j.r:resteasy-json-binding-provider:4.7.9.Final-redhat-00001#1", + "dependsOn": [ + "pkg:maven/jakarta.json.bind/jakarta.json.bind-api@1.0.2.redhat-00004?type=jar", + "o.e:yasson:1.0.11.redhat-00002#1", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "i.q:quarkus-rest-client-jsonb:2.13.9.Final-redhat-00003#1", + "dependsOn": [ + "pkg:maven/commons-io/commons-io@2.15.1.redhat-00001?type=jar", + "i.q:quarkus-jsonb:2.13.9.Final-redhat-00003#1", + "pkg:maven/io.quarkus/quarkus-rest-client@2.13.9.Final-redhat-00003?type=jar", + "o.j.r:resteasy-json-binding-provider:4.7.9.Final-redhat-00001#1", + "pkg:maven/org.jboss.resteasy/resteasy-json-p-provider@4.7.9.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-rest-client-jsonb-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-jsonb-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-rest-client-deployment@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-rest-client-jsonb:2.13.9.Final-redhat-00003#1" + ] + }, + { + "ref": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-jackson@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2-redhat-00001?type=jar", + "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5.redhat-00008?type=jar", + "pkg:maven/org.jboss.logging/commons-logging-jboss-logging@1.0.0.Final-redhat-1?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar", + "pkg:maven/org.jboss.spec.javax.xml.bind/jboss-jaxb-api_2.3_spec@2.0.0.Final-redhat-00004?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson-common@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-jackson@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-jsonp@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-resteasy-reactive-common@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-jackson@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-rest-client-reactive-jackson@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-rest-client-reactive@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson-common@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-jackson@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson-common-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-jackson-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-resteasy-reactive-common-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson-common@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-rest-client-reactive-jackson-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-rest-client-reactive-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-rest-client-reactive-jackson@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson-common-deployment@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-resteasy-server-common@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-resteasy-common@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/jakarta.validation/jakarta.validation-api@2.0.2.redhat-00007?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-resteasy@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-resteasy-server-common@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx-http@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-resteasy-server-common-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-jaxrs-spi-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-resteasy-common-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-resteasy-server-common@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-resteasy-server-common-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-undertow-spi@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-resteasy-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-resteasy@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-resteasy-server-common-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-security-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx-http-deployment@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-resteasy-jackson@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-jackson@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-resteasy@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/org.jboss.resteasy/resteasy-jackson2-provider@4.7.9.Final-redhat-00001?type=jar", + "pkg:maven/org.jboss.spec.javax.xml.bind/jboss-jaxb-api_2.3_spec@2.0.0.Final-redhat-00004?type=jar" + ] + }, + { + "ref": "i.q:quarkus-resteasy-jackson:2.13.9.Final-redhat-00003#1", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-jackson@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-resteasy@2.13.9.Final-redhat-00003?type=jar", + "o.j.r:resteasy-jackson2-provider:4.7.9.Final-redhat-00001#1", + "pkg:maven/org.jboss.spec.javax.xml.bind/jboss-jaxb-api_2.3_spec@2.0.0.Final-redhat-00004?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-resteasy-jackson-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-jackson-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-resteasy-deployment@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-resteasy-jackson:2.13.9.Final-redhat-00003#1" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-resteasy-jaxb@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/com.sun.activation/jakarta.activation@1.2.1.redhat-00005?type=jar", + "i.q:quarkus-jaxb:2.13.9.Final-redhat-00003#1", + "pkg:maven/io.quarkus/quarkus-resteasy@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/org.jboss.resteasy/resteasy-jaxb-provider@4.7.9.Final-redhat-00001?type=jar", + "pkg:maven/org.jboss.spec.javax.xml.bind/jboss-jaxb-api_2.3_spec@2.0.0.Final-redhat-00004?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-resteasy-jaxb-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-jaxb-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-resteasy-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-resteasy-jaxb@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-resteasy-jsonb@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/commons-io/commons-io@2.15.1.redhat-00001?type=jar", + "i.q:quarkus-jsonb:2.13.9.Final-redhat-00003#1", + "pkg:maven/io.quarkus/quarkus-resteasy@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/org.jboss.resteasy/resteasy-json-binding-provider@4.7.9.Final-redhat-00001?type=jar", + "pkg:maven/org.jboss.resteasy/resteasy-json-p-provider@4.7.9.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "i.q:quarkus-resteasy-jsonb:2.13.9.Final-redhat-00003#1", + "dependsOn": [ + "pkg:maven/commons-io/commons-io@2.15.1.redhat-00001?type=jar", + "i.q:quarkus-jsonb:2.13.9.Final-redhat-00003#1", + "pkg:maven/io.quarkus/quarkus-resteasy@2.13.9.Final-redhat-00003?type=jar", + "o.j.r:resteasy-json-binding-provider:4.7.9.Final-redhat-00001#1", + "pkg:maven/org.jboss.resteasy/resteasy-json-p-provider@4.7.9.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-resteasy-jsonb-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-jsonb-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-resteasy-deployment@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-resteasy-jsonb:2.13.9.Final-redhat-00003#1" + ] + }, + { + "ref": "o.j.r:resteasy-core:4.7.9.Final-redhat-00001#1", + "dependsOn": [ + "pkg:maven/com.ibm.async/asyncutil@0.1.0.redhat-00010?type=jar", + "pkg:maven/io.smallrye.config/smallrye-config@2.12.3.redhat-00001?type=jar", + "pkg:maven/jakarta.activation/jakarta.activation-api@1.2.1.redhat-00005?type=jar", + "pkg:maven/jakarta.validation/jakarta.validation-api@2.0.2.redhat-00007?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar", + "pkg:maven/org.jboss.resteasy/resteasy-core-spi@4.7.9.Final-redhat-00001?type=jar", + "pkg:maven/org.jboss.spec.javax.ws.rs/jboss-jaxrs-api_2.1_spec@2.0.1.Final-redhat-00001?type=jar", + "pkg:maven/org.jboss.spec.javax.xml.bind/jboss-jaxb-api_2.3_spec@2.0.0.Final-redhat-00004?type=jar", + "pkg:maven/org.reactivestreams/reactive-streams@1.0.3.redhat-00006?type=jar" + ] + }, + { + "ref": "i.q:quarkus-resteasy-common:2.13.9.Final-redhat-00003#1", + "dependsOn": [ + "pkg:maven/com.sun.activation/jakarta.activation@1.2.1.redhat-00005?type=jar", + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "o.j.r:resteasy-core:4.7.9.Final-redhat-00001#1" + ] + }, + { + "ref": "i.q:quarkus-resteasy-server-common:2.13.9.Final-redhat-00003#1", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-resteasy-common:2.13.9.Final-redhat-00003#1", + "pkg:maven/jakarta.validation/jakarta.validation-api@2.0.2.redhat-00007?type=jar" + ] + }, + { + "ref": "i.q:quarkus-resteasy:2.13.9.Final-redhat-00003#1", + "dependsOn": [ + "i.q:quarkus-resteasy-server-common:2.13.9.Final-redhat-00003#1", + "pkg:maven/io.quarkus/quarkus-vertx-http@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/com.sun.mail/jakarta.mail@1.6.7.redhat-00005?type=jar", + "dependsOn": [ + "pkg:maven/com.sun.activation/jakarta.activation@1.2.1.redhat-00005?type=jar" + ] + }, + { + "ref": "pkg:maven/org.apache.james/apache-mime4j-core@0.8.9.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/commons-io/commons-io@2.15.1.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/org.apache.james/apache-mime4j-dom@0.8.9.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/commons-io/commons-io@2.15.1.redhat-00001?type=jar", + "pkg:maven/org.apache.james/apache-mime4j-core@0.8.9.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/org.apache.james/apache-mime4j-storage@0.8.9.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/commons-io/commons-io@2.15.1.redhat-00001?type=jar", + "pkg:maven/org.apache.james/apache-mime4j-dom@0.8.9.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/org.jboss.resteasy/resteasy-multipart-provider@4.7.9.Final-redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/com.sun.mail/jakarta.mail@1.6.7.redhat-00005?type=jar", + "pkg:maven/org.apache.james/apache-mime4j-dom@0.8.9.redhat-00001?type=jar", + "pkg:maven/org.apache.james/apache-mime4j-storage@0.8.9.redhat-00001?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar", + "o.j.r:resteasy-core:4.7.9.Final-redhat-00001#1", + "pkg:maven/org.jboss.resteasy/resteasy-core-spi@4.7.9.Final-redhat-00001?type=jar", + "pkg:maven/org.jboss.resteasy/resteasy-jaxb-provider@4.7.9.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-resteasy-multipart@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/com.sun.activation/jakarta.activation@1.2.1.redhat-00005?type=jar", + "i.q:quarkus-resteasy:2.13.9.Final-redhat-00003#1", + "pkg:maven/org.jboss.logging/commons-logging-jboss-logging@1.0.0.Final-redhat-1?type=jar", + "pkg:maven/org.jboss.resteasy/resteasy-multipart-provider@4.7.9.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "o.g.j:jaxb-runtime:2.3.3.b02-redhat-00004#2", + "dependsOn": [ + "pkg:maven/com.sun.istack/istack-commons-runtime@3.0.10.redhat-00003?type=jar", + "pkg:maven/org.glassfish.jaxb/txw2@2.3.3.b02-redhat-00004?type=jar" + ] + }, + { + "ref": "o.j.r:resteasy-jaxb-provider:4.7.9.Final-redhat-00001#1", + "dependsOn": [ + "o.g.j:jaxb-runtime:2.3.3.b02-redhat-00004#2", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar", + "pkg:maven/org.jboss.spec.javax.xml.bind/jboss-jaxb-api_2.3_spec@2.0.0.Final-redhat-00004?type=jar" + ] + }, + { + "ref": "o.j.r:resteasy-multipart-provider:4.7.9.Final-redhat-00001#1", + "dependsOn": [ + "c.s.m:jakarta.mail:1.6.7.redhat-00005#1", + "pkg:maven/org.apache.james/apache-mime4j-dom@0.8.9.redhat-00001?type=jar", + "pkg:maven/org.apache.james/apache-mime4j-storage@0.8.9.redhat-00001?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar", + "pkg:maven/org.jboss.resteasy/resteasy-core@4.7.9.Final-redhat-00001?type=jar", + "pkg:maven/org.jboss.resteasy/resteasy-core-spi@4.7.9.Final-redhat-00001?type=jar", + "o.j.r:resteasy-jaxb-provider:4.7.9.Final-redhat-00001#1" + ] + }, + { + "ref": "i.q:quarkus-resteasy-multipart:2.13.9.Final-redhat-00003#1", + "dependsOn": [ + "pkg:maven/com.sun.activation/jakarta.activation@1.2.1.redhat-00005?type=jar", + "pkg:maven/io.quarkus/quarkus-resteasy@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/org.jboss.logging/commons-logging-jboss-logging@1.0.0.Final-redhat-1?type=jar", + "o.j.r:resteasy-multipart-provider:4.7.9.Final-redhat-00001#1" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-resteasy-multipart-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-resteasy-deployment@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-resteasy-multipart:2.13.9.Final-redhat-00003#1" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-resteasy-qute@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-qute@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-resteasy@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-resteasy-qute-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-qute-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-resteasy-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-resteasy-qute@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-vertx@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-core@2.27.0.redhat-00001?type=jar", + "pkg:maven/io.vertx/vertx-web@4.3.4.redhat-00008?type=jar", + "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5.redhat-00008?type=jar", + "pkg:maven/jakarta.enterprise/jakarta.enterprise.cdi-api@2.0.2.redhat-00005?type=jar", + "pkg:maven/org.jboss.logging/commons-logging-jboss-logging@1.0.0.Final-redhat-1?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar", + "pkg:maven/org.jboss.spec.javax.ws.rs/jboss-jaxrs-api_2.1_spec@2.0.1.Final-redhat-00001?type=jar", + "pkg:maven/org.jboss.spec.javax.xml.bind/jboss-jaxb-api_2.3_spec@2.0.0.Final-redhat-00004?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-resteasy-reactive@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-jsonp@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-resteasy-reactive-common@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx-http@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-vertx@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-jaxrs-spi-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-jsonp-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-resteasy-reactive@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-resteasy-reactive-common-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-resteasy-reactive-server-spi-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-security-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx-http-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-processor@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-resteasy-reactive@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson-common@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-resteasy-reactive-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson-common-deployment@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jaxb@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "i.q:quarkus-jaxb:2.13.9.Final-redhat-00003#1", + "pkg:maven/io.quarkus/quarkus-resteasy-reactive@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jaxb-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-jaxb-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-resteasy-reactive-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jaxb@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-jsonb@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5.redhat-00008?type=jar", + "pkg:maven/jakarta.json.bind/jakarta.json.bind-api@1.0.2.redhat-00004?type=jar", + "o.e:yasson:1.0.11.redhat-00002#1", + "pkg:maven/org.jboss.logging/commons-logging-jboss-logging@1.0.0.Final-redhat-1?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar", + "pkg:maven/org.jboss.spec.javax.xml.bind/jboss-jaxb-api_2.3_spec@2.0.0.Final-redhat-00004?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb-common@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "i.q:quarkus-jsonb:2.13.9.Final-redhat-00003#1", + "pkg:maven/io.quarkus/quarkus-resteasy-reactive-common@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-jsonb@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-resteasy-reactive@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb-common@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-jsonb@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb-common-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-jsonb-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-resteasy-reactive-common-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb-common@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-resteasy-reactive-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb-common-deployment@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-qute@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-qute@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-resteasy-reactive@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-qute-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-qute-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-resteasy-reactive-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-resteasy-reactive-qute@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.smallrye/smallrye-fault-tolerance-api@5.5.0.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/io.smallrye.common/smallrye-common-annotation@1.13.1.redhat-00001?type=jar", + "pkg:maven/jakarta.enterprise/jakarta.enterprise.cdi-api@2.0.2.redhat-00005?type=jar", + "pkg:maven/org.eclipse.microprofile.fault-tolerance/microprofile-fault-tolerance-api@3.0.0.redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/io.smallrye/smallrye-fault-tolerance-autoconfig-core@5.5.0.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/io.smallrye/smallrye-fault-tolerance-api@5.5.0.redhat-00002?type=jar", + "pkg:maven/org.eclipse.microprofile.config/microprofile-config-api@2.0.1.redhat-00001?type=jar", + "pkg:maven/org.eclipse.microprofile.fault-tolerance/microprofile-fault-tolerance-api@3.0.0.redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/io.smallrye/smallrye-fault-tolerance-core@5.5.0.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/io.smallrye/smallrye-fault-tolerance-api@5.5.0.redhat-00002?type=jar", + "pkg:maven/org.eclipse.microprofile.fault-tolerance/microprofile-fault-tolerance-api@3.0.0.redhat-00002?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.smallrye/smallrye-fault-tolerance@5.5.0.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/io.smallrye/smallrye-fault-tolerance-api@5.5.0.redhat-00002?type=jar", + "pkg:maven/io.smallrye/smallrye-fault-tolerance-autoconfig-core@5.5.0.redhat-00002?type=jar", + "pkg:maven/io.smallrye/smallrye-fault-tolerance-core@5.5.0.redhat-00002?type=jar", + "pkg:maven/jakarta.enterprise/jakarta.enterprise.cdi-api@2.0.2.redhat-00005?type=jar", + "pkg:maven/org.eclipse.microprofile.config/microprofile-config-api@2.0.1.redhat-00001?type=jar", + "pkg:maven/org.eclipse.microprofile.fault-tolerance/microprofile-fault-tolerance-api@3.0.0.redhat-00002?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.smallrye/smallrye-fault-tolerance-context-propagation@5.5.0.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/io.smallrye/smallrye-fault-tolerance@5.5.0.redhat-00002?type=jar", + "pkg:maven/org.eclipse.microprofile.context-propagation/microprofile-context-propagation-api@1.2.0.redhat-00012?type=jar" + ] + }, + { + "ref": "pkg:maven/io.smallrye/smallrye-fault-tolerance-mutiny@5.5.0.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/io.smallrye/smallrye-fault-tolerance-api@5.5.0.redhat-00002?type=jar", + "pkg:maven/io.smallrye/smallrye-fault-tolerance-core@5.5.0.redhat-00002?type=jar", + "pkg:maven/io.smallrye.reactive/mutiny@1.7.0.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-smallrye-fault-tolerance@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-mutiny@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-smallrye-context-propagation@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.smallrye/smallrye-fault-tolerance@5.5.0.redhat-00002?type=jar", + "pkg:maven/io.smallrye/smallrye-fault-tolerance-context-propagation@5.5.0.redhat-00002?type=jar", + "pkg:maven/io.smallrye/smallrye-fault-tolerance-mutiny@5.5.0.redhat-00002?type=jar", + "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5.redhat-00008?type=jar", + "pkg:maven/jakarta.enterprise/jakarta.enterprise.cdi-api@2.0.2.redhat-00005?type=jar", + "pkg:maven/org.jboss.logging/commons-logging-jboss-logging@1.0.0.Final-redhat-1?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-smallrye-fault-tolerance-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-mutiny-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-smallrye-context-propagation-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-smallrye-fault-tolerance@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/com.graphql-java/java-dataloader@3.2.0.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/org.slf4j/slf4j-api@1.7.36.redhat-00005?type=jar" + ] + }, + { + "ref": "pkg:maven/com.graphql-java/graphql-java@19.4.0.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/com.graphql-java/java-dataloader@3.2.0.redhat-00001?type=jar", + "pkg:maven/org.reactivestreams/reactive-streams@1.0.3.redhat-00006?type=jar", + "pkg:maven/org.slf4j/slf4j-api@1.7.36.redhat-00005?type=jar" + ] + }, + { + "ref": "pkg:maven/io.smallrye/smallrye-graphql-api@1.7.3.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.smallrye.common/smallrye-common-annotation@1.13.1.redhat-00001?type=jar", + "pkg:maven/org.eclipse.microprofile.graphql/microprofile-graphql-api@1.1.0.redhat-00010?type=jar" + ] + }, + { + "ref": "pkg:maven/io.smallrye/smallrye-graphql@1.7.3.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/com.graphql-java/graphql-java@19.4.0.redhat-00001?type=jar", + "pkg:maven/io.smallrye/smallrye-graphql-api@1.7.3.redhat-00001?type=jar", + "pkg:maven/io.smallrye/smallrye-graphql-schema-model@1.7.3.redhat-00001?type=jar", + "pkg:maven/io.smallrye.reactive/mutiny@1.7.0.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.smallrye/smallrye-graphql-cdi@1.7.3.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.smallrye/smallrye-graphql@1.7.3.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.smallrye/smallrye-graphql-schema-builder@1.7.3.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.smallrye/smallrye-graphql-schema-model@1.7.3.redhat-00001?type=jar", + "pkg:maven/org.jboss/jandex@2.4.3.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-smallrye-graphql@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-jsonb:2.13.9.Final-redhat-00003#1", + "pkg:maven/io.quarkus/quarkus-smallrye-context-propagation@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx-http@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.smallrye/smallrye-graphql-cdi@1.7.3.redhat-00001?type=jar", + "pkg:maven/io.smallrye/smallrye-graphql-schema-builder@1.7.3.redhat-00001?type=jar", + "pkg:maven/org.eclipse.microprofile.metrics/microprofile-metrics-api@3.0.1.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.smallrye/smallrye-graphql-client@1.7.3.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.smallrye/smallrye-graphql-api@1.7.3.redhat-00001?type=jar", + "pkg:maven/io.smallrye/smallrye-graphql-client-api@1.7.3.redhat-00001?type=jar", + "pkg:maven/io.smallrye.reactive/mutiny@1.7.0.redhat-00001?type=jar", + "pkg:maven/jakarta.enterprise/jakarta.enterprise.cdi-api@2.0.2.redhat-00005?type=jar", + "o.e:yasson:1.0.11.redhat-00002#1", + "pkg:maven/org.eclipse.microprofile.graphql/microprofile-graphql-api@1.1.0.redhat-00010?type=jar", + "pkg:maven/org.glassfish/jakarta.json@1.1.6.redhat-00003?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.smallrye/smallrye-graphql-client-implementation-vertx@1.7.3.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.smallrye/smallrye-graphql-client@1.7.3.redhat-00001?type=jar", + "pkg:maven/io.smallrye.config/smallrye-config@2.12.3.redhat-00001?type=jar", + "pkg:maven/io.vertx/vertx-web-client@4.3.4.redhat-00008?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-smallrye-graphql-client@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-jsonb:2.13.9.Final-redhat-00003#1", + "pkg:maven/io.quarkus/quarkus-smallrye-stork@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.smallrye/smallrye-graphql-client-implementation-vertx@1.7.3.redhat-00001?type=jar" + ] + }, + { + "ref": "i.s:smallrye-graphql-client:1.7.3.redhat-00001#1", + "dependsOn": [ + "pkg:maven/io.smallrye/smallrye-graphql-api@1.7.3.redhat-00001?type=jar", + "pkg:maven/io.smallrye/smallrye-graphql-client-api@1.7.3.redhat-00001?type=jar", + "pkg:maven/io.smallrye.reactive/mutiny@1.7.0.redhat-00001?type=jar", + "pkg:maven/jakarta.enterprise/jakarta.enterprise.cdi-api@2.0.2.redhat-00005?type=jar", + "o.e:yasson:1.0.11.redhat-00002#1", + "pkg:maven/org.eclipse.microprofile.graphql/microprofile-graphql-api@1.1.0.redhat-00010?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "i.s:smallrye-graphql-client-implementation-vertx:1.7.3.redhat-00001#1", + "dependsOn": [ + "i.s:smallrye-graphql-client:1.7.3.redhat-00001#1", + "pkg:maven/io.smallrye.config/smallrye-config@2.12.3.redhat-00001?type=jar", + "pkg:maven/io.vertx/vertx-web-client@4.3.4.redhat-00008?type=jar" + ] + }, + { + "ref": "i.q:quarkus-smallrye-graphql-client:2.13.9.Final-redhat-00003#1", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-jsonb:2.13.9.Final-redhat-00003#1", + "pkg:maven/io.quarkus/quarkus-smallrye-stork@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx@2.13.9.Final-redhat-00003?type=jar", + "i.s:smallrye-graphql-client-implementation-vertx:1.7.3.redhat-00001#1" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-smallrye-graphql-client-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-jsonb-deployment@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-smallrye-graphql-client:2.13.9.Final-redhat-00003#1", + "pkg:maven/io.quarkus/quarkus-smallrye-stork-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx-deployment@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-smallrye-graphql-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-jsonb-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-smallrye-context-propagation-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-smallrye-graphql@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx-http-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.smallrye/smallrye-graphql-schema-builder@1.7.3.redhat-00001?type=jar", + "pkg:maven/io.smallrye/smallrye-graphql-ui-graphiql@1.7.3?type=jar" + ] + }, + { + "ref": "pkg:maven/io.smallrye/smallrye-health-api@3.3.0.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/io.smallrye.common/smallrye-common-annotation@1.13.1.redhat-00001?type=jar", + "pkg:maven/io.smallrye.reactive/mutiny@1.7.0.redhat-00001?type=jar", + "pkg:maven/org.eclipse.microprofile.health/microprofile-health-api@3.1.0.redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/io.smallrye/smallrye-health@3.3.0.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/io.smallrye/smallrye-health-api@3.3.0.redhat-00002?type=jar", + "pkg:maven/io.smallrye.config/smallrye-config@2.12.3.redhat-00001?type=jar", + "pkg:maven/jakarta.enterprise/jakarta.enterprise.cdi-api@2.0.2.redhat-00005?type=jar", + "pkg:maven/org.eclipse.microprofile.health/microprofile-health-api@3.1.0.redhat-00002?type=jar", + "pkg:maven/org.glassfish/jakarta.json@1.1.6.redhat-00003?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.smallrye/smallrye-health-provided-checks@3.3.0.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/io.smallrye/smallrye-health@3.3.0.redhat-00002?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-smallrye-health@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-jsonp@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx-http@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.smallrye/smallrye-health@3.3.0.redhat-00002?type=jar", + "pkg:maven/io.smallrye/smallrye-health-provided-checks@3.3.0.redhat-00002?type=jar" + ] + }, + { + "ref": "i.s:smallrye-health:3.3.0.redhat-00002#1", + "dependsOn": [ + "pkg:maven/io.smallrye/smallrye-health-api@3.3.0.redhat-00002?type=jar", + "pkg:maven/io.smallrye.config/smallrye-config@2.12.3.redhat-00001?type=jar", + "pkg:maven/jakarta.enterprise/jakarta.enterprise.cdi-api@2.0.2.redhat-00005?type=jar", + "pkg:maven/org.eclipse.microprofile.health/microprofile-health-api@3.1.0.redhat-00002?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "i.s:smallrye-health-provided-checks:3.3.0.redhat-00002#1", + "dependsOn": [ + "i.s:smallrye-health:3.3.0.redhat-00002#1", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "i.q:quarkus-smallrye-health:2.13.9.Final-redhat-00003#1", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-jsonp@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx-http@2.13.9.Final-redhat-00003?type=jar", + "i.s:smallrye-health:3.3.0.redhat-00002#1", + "i.s:smallrye-health-provided-checks:3.3.0.redhat-00002#1" + ] + }, + { + "ref": "pkg:maven/io.smallrye/smallrye-open-api-core@2.2.1.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.13.4.redhat-00004?type=jar", + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2-redhat-00001?type=jar", + "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml@2.13.4.redhat-00004?type=jar", + "pkg:maven/org.eclipse.microprofile.config/microprofile-config-api@2.0.1.redhat-00001?type=jar", + "pkg:maven/org.eclipse.microprofile.openapi/microprofile-openapi-api@2.0.1.redhat-00001?type=jar", + "pkg:maven/org.jboss/jandex@2.4.3.Final-redhat-00001?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-smallrye-openapi-spi@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.smallrye/smallrye-open-api-core@2.2.1.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-smallrye-health-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-jsonp-deployment@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-smallrye-health:2.13.9.Final-redhat-00003#1", + "pkg:maven/io.quarkus/quarkus-smallrye-health-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-smallrye-openapi-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx-http-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.smallrye/smallrye-health-ui@3.3.0.redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-smallrye-jwt@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-jsonp@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-reactive-routes@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-security@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-smallrye-jwt-build@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.smallrye/smallrye-jwt@3.5.4.redhat-00001?type=jar", + "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5.redhat-00008?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-smallrye-jwt-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-jsonp-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-reactive-routes-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-security-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-smallrye-jwt@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-smallrye-jwt-build-deployment@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.smallrye/smallrye-metrics@3.0.5.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-smallrye-metrics@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-jsonp@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx-http@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.smallrye/smallrye-metrics@3.0.5.redhat-00001?type=jar", + "pkg:maven/org.eclipse.microprofile.metrics/microprofile-metrics-api@3.0.1.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-smallrye-metrics-spi@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/org.eclipse.microprofile.metrics/microprofile-metrics-api@3.0.1.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-smallrye-metrics-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-jsonp-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-resteasy-common-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-resteasy-reactive-spi-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-smallrye-metrics@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-smallrye-metrics-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-undertow-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx-http-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/org.eclipse.microprofile.metrics/microprofile-metrics-api@3.0.1.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-swagger-ui@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx-http@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-smallrye-openapi@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-swagger-ui@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx-http@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.smallrye/smallrye-open-api-core@2.2.1.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-smallrye-openapi-common-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-swagger-ui-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-smallrye-openapi-common-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-swagger-ui@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx-http-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.smallrye/smallrye-open-api-ui@2.2.1.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.smallrye/smallrye-open-api-jaxrs@2.2.1.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.smallrye/smallrye-open-api-core@2.2.1.redhat-00001?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.smallrye/smallrye-open-api-spring@2.2.1.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.smallrye/smallrye-open-api-core@2.2.1.redhat-00001?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.smallrye/smallrye-open-api-vertx@2.2.1.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.smallrye/smallrye-open-api-core@2.2.1.redhat-00001?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-smallrye-openapi-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-resteasy-common-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-resteasy-server-common-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-smallrye-openapi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-smallrye-openapi-common-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-smallrye-openapi-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-swagger-ui-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx-http-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.smallrye/smallrye-open-api-jaxrs@2.2.1.redhat-00001?type=jar", + "pkg:maven/io.smallrye/smallrye-open-api-spring@2.2.1.redhat-00001?type=jar", + "pkg:maven/io.smallrye/smallrye-open-api-vertx@2.2.1.redhat-00001?type=jar" + ] + }, + { + "ref": "j.e:jakarta.enterprise.cdi-api:2.0.2.redhat-00005#1", + "dependsOn": [ + "pkg:maven/jakarta.inject/jakarta.inject-api@1.0.0.redhat-00002?type=jar", + "pkg:maven/jakarta.interceptor/jakarta.interceptor-api@1.2.5.redhat-00003?type=jar" + ] + }, + { + "ref": "i.q:quarkus-core:2.13.9.Final-redhat-00003#1", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-bootstrap-runner@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-development-mode-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-fs-util@0.0.9.redhat-00005?type=jar", + "pkg:maven/io.quarkus/quarkus-ide-launcher@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.smallrye.config/smallrye-config@2.12.3.redhat-00001?type=jar", + "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5.redhat-00008?type=jar", + "j.e:jakarta.enterprise.cdi-api:2.0.2.redhat-00005#1", + "pkg:maven/jakarta.inject/jakarta.inject-api@1.0.0.redhat-00002?type=jar", + "pkg:maven/org.graalvm.sdk/graal-sdk@22.3.4.0-1-redhat-00001?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging-annotations@2.2.1.Final-redhat-00002?type=jar", + "pkg:maven/org.jboss.logmanager/jboss-logmanager-embedded@1.0.10.redhat-00001?type=jar", + "pkg:maven/org.jboss.slf4j/slf4j-jboss-logmanager@1.2.0.Final-redhat-00001?type=jar", + "pkg:maven/org.jboss.threads/jboss-threads@3.4.3.Final-redhat-00001?type=jar", + "pkg:maven/org.slf4j/slf4j-api@1.7.36.redhat-00005?type=jar", + "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00002?type=jar" + ] + }, + { + "ref": "i.q.a:arc:2.13.9.Final-redhat-00003#1", + "dependsOn": [ + "pkg:maven/io.smallrye.reactive/mutiny@1.7.0.redhat-00001?type=jar", + "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5.redhat-00008?type=jar", + "j.e:jakarta.enterprise.cdi-api:2.0.2.redhat-00005#1", + "pkg:maven/jakarta.transaction/jakarta.transaction-api@1.3.3.redhat-00004?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "i.q:quarkus-arc:2.13.9.Final-redhat-00003#1", + "dependsOn": [ + "i.q:quarkus-core:2.13.9.Final-redhat-00003#1", + "i.q.a:arc:2.13.9.Final-redhat-00003#1", + "pkg:maven/org.eclipse.microprofile.context-propagation/microprofile-context-propagation-api@1.2.0.redhat-00012?type=jar" + ] + }, + { + "ref": "pkg:maven/io.opentracing/opentracing-noop@0.33.0.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.opentracing/opentracing-api@0.33.0.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.opentracing/opentracing-util@0.33.0.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.opentracing/opentracing-api@0.33.0.redhat-00001?type=jar", + "pkg:maven/io.opentracing/opentracing-noop@0.33.0.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.jaegertracing/jaeger-core@1.8.1.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/com.google.code.gson/gson@2.9.1.redhat-00003?type=jar", + "pkg:maven/io.opentracing/opentracing-api@0.33.0.redhat-00001?type=jar", + "pkg:maven/io.opentracing/opentracing-util@0.33.0.redhat-00001?type=jar", + "pkg:maven/org.slf4j/slf4j-api@1.7.36.redhat-00005?type=jar" + ] + }, + { + "ref": "pkg:maven/org.apache.thrift/libthrift@0.15.0.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/org.slf4j/slf4j-api@1.7.36.redhat-00005?type=jar" + ] + }, + { + "ref": "pkg:maven/io.jaegertracing/jaeger-thrift@1.8.1.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/com.squareup.okhttp3/okhttp@3.14.9.redhat-00010?type=jar", + "pkg:maven/io.jaegertracing/jaeger-core@1.8.1.redhat-00002?type=jar", + "pkg:maven/org.apache.thrift/libthrift@0.15.0.redhat-00001?type=jar", + "pkg:maven/org.slf4j/slf4j-api@1.7.36.redhat-00005?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-jaeger@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/com.sun.activation/jakarta.activation@1.2.1.redhat-00005?type=jar", + "pkg:maven/io.jaegertracing/jaeger-core@1.8.1.redhat-00002?type=jar", + "pkg:maven/io.jaegertracing/jaeger-thrift@1.8.1.redhat-00002?type=jar", + "i.q:quarkus-arc:2.13.9.Final-redhat-00003#1", + "i.q:quarkus-core:2.13.9.Final-redhat-00003#1", + "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5.redhat-00008?type=jar" + ] + }, + { + "ref": "i.q:quarkus-jsonp:2.13.9.Final-redhat-00003#2", + "dependsOn": [ + "i.q:quarkus-core:2.13.9.Final-redhat-00003#1", + "pkg:maven/org.glassfish/jakarta.json@1.1.6.redhat-00003?type=jar" + ] + }, + { + "ref": "i.s:smallrye-fault-tolerance-api:5.5.0.redhat-00002#1", + "dependsOn": [ + "pkg:maven/io.smallrye.common/smallrye-common-annotation@1.13.1.redhat-00001?type=jar", + "j.e:jakarta.enterprise.cdi-api:2.0.2.redhat-00005#1", + "pkg:maven/org.eclipse.microprofile.fault-tolerance/microprofile-fault-tolerance-api@3.0.0.redhat-00002?type=jar" + ] + }, + { + "ref": "i.s:smallrye-fault-tolerance-autoconfig-core:5.5.0.redhat-00002#1", + "dependsOn": [ + "i.s:smallrye-fault-tolerance-api:5.5.0.redhat-00002#1", + "pkg:maven/org.eclipse.microprofile.config/microprofile-config-api@2.0.1.redhat-00001?type=jar", + "pkg:maven/org.eclipse.microprofile.fault-tolerance/microprofile-fault-tolerance-api@3.0.0.redhat-00002?type=jar" + ] + }, + { + "ref": "i.s:smallrye-fault-tolerance-core:5.5.0.redhat-00002#1", + "dependsOn": [ + "i.s:smallrye-fault-tolerance-api:5.5.0.redhat-00002#1", + "pkg:maven/org.eclipse.microprofile.fault-tolerance/microprofile-fault-tolerance-api@3.0.0.redhat-00002?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "i.s:smallrye-fault-tolerance:5.5.0.redhat-00002#1", + "dependsOn": [ + "i.s:smallrye-fault-tolerance-api:5.5.0.redhat-00002#1", + "i.s:smallrye-fault-tolerance-autoconfig-core:5.5.0.redhat-00002#1", + "i.s:smallrye-fault-tolerance-core:5.5.0.redhat-00002#1", + "j.e:jakarta.enterprise.cdi-api:2.0.2.redhat-00005#1", + "pkg:maven/org.eclipse.microprofile.config/microprofile-config-api@2.0.1.redhat-00001?type=jar", + "pkg:maven/org.eclipse.microprofile.fault-tolerance/microprofile-fault-tolerance-api@3.0.0.redhat-00002?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "i.s:smallrye-fault-tolerance-context-propagation:5.5.0.redhat-00002#1", + "dependsOn": [ + "i.s:smallrye-fault-tolerance:5.5.0.redhat-00002#1", + "pkg:maven/org.eclipse.microprofile.context-propagation/microprofile-context-propagation-api@1.2.0.redhat-00012?type=jar" + ] + }, + { + "ref": "pkg:maven/io.smallrye/smallrye-fault-tolerance-tracing-propagation@5.5.0.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/io.opentracing/opentracing-api@0.33.0.redhat-00001?type=jar", + "pkg:maven/io.opentracing/opentracing-util@0.33.0.redhat-00001?type=jar", + "i.s:smallrye-fault-tolerance:5.5.0.redhat-00002#1", + "i.s:smallrye-fault-tolerance-context-propagation:5.5.0.redhat-00002#1" + ] + }, + { + "ref": "pkg:maven/io.opentracing.contrib/opentracing-concurrent@0.4.0.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/io.opentracing/opentracing-api@0.33.0.redhat-00001?type=jar", + "pkg:maven/io.opentracing/opentracing-noop@0.33.0.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.smallrye/smallrye-opentracing-contrib@2.1.1.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/io.opentracing/opentracing-api@0.33.0.redhat-00001?type=jar", + "pkg:maven/io.opentracing/opentracing-noop@0.33.0.redhat-00001?type=jar", + "pkg:maven/io.opentracing/opentracing-util@0.33.0.redhat-00001?type=jar", + "pkg:maven/io.opentracing.contrib/opentracing-concurrent@0.4.0.redhat-00002?type=jar", + "pkg:maven/org.eclipse.microprofile.opentracing/microprofile-opentracing-api@2.0.0.redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/io.smallrye/smallrye-opentracing@2.1.1.redhat-00002?type=jar", + "dependsOn": [ + "pkg:maven/io.smallrye/smallrye-opentracing-contrib@2.1.1.redhat-00002?type=jar", + "pkg:maven/org.eclipse.microprofile.opentracing/microprofile-opentracing-api@2.0.0.redhat-00002?type=jar", + "pkg:maven/org.eclipse.microprofile.rest.client/microprofile-rest-client-api@2.0.0.redhat-00003?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-smallrye-opentracing@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "i.q:quarkus-arc:2.13.9.Final-redhat-00003#1", + "pkg:maven/io.quarkus/quarkus-jaeger@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-jsonp:2.13.9.Final-redhat-00003#2", + "pkg:maven/io.smallrye/smallrye-fault-tolerance-tracing-propagation@5.5.0.redhat-00002?type=jar", + "pkg:maven/io.smallrye/smallrye-opentracing@2.1.1.redhat-00002?type=jar", + "pkg:maven/jakarta.inject/jakarta.inject-api@1.0.0.redhat-00002?type=jar", + "pkg:maven/jakarta.servlet/jakarta.servlet-api@4.0.3.redhat-00006?type=jar", + "pkg:maven/org.eclipse.microprofile.config/microprofile-config-api@2.0.1.redhat-00001?type=jar", + "pkg:maven/org.eclipse.microprofile.opentracing/microprofile-opentracing-api@2.0.0.redhat-00002?type=jar", + "pkg:maven/org.jboss.spec.javax.ws.rs/jboss-jaxrs-api_2.1_spec@2.0.1.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "i.q:quarkus-jaeger:2.13.9.Final-redhat-00003#1", + "dependsOn": [ + "pkg:maven/com.sun.activation/jakarta.activation@1.2.1.redhat-00005?type=jar", + "pkg:maven/io.jaegertracing/jaeger-core@1.8.1.redhat-00002?type=jar", + "pkg:maven/io.jaegertracing/jaeger-thrift@1.8.1.redhat-00002?type=jar", + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5.redhat-00008?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-jaeger-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-jaeger:2.13.9.Final-redhat-00003#1", + "pkg:maven/jakarta.enterprise/jakarta.enterprise.cdi-api@2.0.2.redhat-00005?type=jar" + ] + }, + { + "ref": "i.q:quarkus-smallrye-opentracing:2.13.9.Final-redhat-00003#1", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-jaeger:2.13.9.Final-redhat-00003#1", + "pkg:maven/io.quarkus/quarkus-jsonp@2.13.9.Final-redhat-00003?type=jar", + "i.s:smallrye-fault-tolerance-tracing-propagation:5.5.0.redhat-00002#1", + "pkg:maven/io.smallrye/smallrye-opentracing@2.1.1.redhat-00002?type=jar", + "pkg:maven/jakarta.inject/jakarta.inject-api@1.0.0.redhat-00002?type=jar", + "pkg:maven/jakarta.servlet/jakarta.servlet-api@4.0.3.redhat-00006?type=jar", + "pkg:maven/org.eclipse.microprofile.config/microprofile-config-api@2.0.1.redhat-00001?type=jar", + "pkg:maven/org.eclipse.microprofile.opentracing/microprofile-opentracing-api@2.0.0.redhat-00002?type=jar", + "pkg:maven/org.jboss.spec.javax.ws.rs/jboss-jaxrs-api_2.1_spec@2.0.1.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-smallrye-opentracing-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-jaeger-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-jsonp-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-resteasy-common-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-resteasy-reactive-spi-deployment@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-smallrye-opentracing:2.13.9.Final-redhat-00003#1", + "pkg:maven/io.quarkus/quarkus-undertow-spi@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-api@3.21.0.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.opentelemetry/opentelemetry-api@1.17.0.redhat-00001?type=jar", + "pkg:maven/io.smallrye.common/smallrye-common-annotation@1.13.1.redhat-00001?type=jar", + "pkg:maven/io.smallrye.reactive/mutiny@1.7.0.redhat-00001?type=jar", + "pkg:maven/io.smallrye.reactive/smallrye-reactive-converter-api@2.7.0.redhat-00001?type=jar", + "pkg:maven/jakarta.enterprise/jakarta.enterprise.cdi-api@2.0.2.redhat-00005?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-kotlin@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-api@3.21.0.redhat-00001?type=jar", + "pkg:maven/io.vertx/vertx-web@4.3.4.redhat-00008?type=jar" + ] + }, + { + "ref": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-provider@3.21.0.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.smallrye.common/smallrye-common-vertx-context@1.13.1.redhat-00001?type=jar", + "pkg:maven/io.smallrye.reactive/mutiny@1.7.0.redhat-00001?type=jar", + "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-core@2.27.0.redhat-00001?type=jar", + "pkg:maven/io.smallrye.reactive/smallrye-reactive-converter-api@2.7.0.redhat-00001?type=jar", + "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-api@3.21.0.redhat-00001?type=jar", + "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5.redhat-00008?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-health@3.21.0.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.smallrye.reactive/mutiny@1.7.0.redhat-00001?type=jar", + "pkg:maven/io.smallrye.reactive/smallrye-reactive-converter-api@2.7.0.redhat-00001?type=jar", + "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-api@3.21.0.redhat-00001?type=jar", + "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-provider@3.21.0.redhat-00001?type=jar", + "pkg:maven/org.eclipse.microprofile.health/microprofile-health-api@3.1.0.redhat-00002?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-mutiny-reactive-streams-operators@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-kotlin@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.smallrye.common/smallrye-common-annotation@1.13.1.redhat-00001?type=jar", + "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-health@3.21.0.redhat-00001?type=jar", + "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-provider@3.21.0.redhat-00001?type=jar", + "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5.redhat-00008?type=jar" + ] + }, + { + "ref": "i.v:vertx-core:4.3.4.redhat-00008#1", + "dependsOn": [ + "pkg:maven/io.netty/netty-buffer@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-codec-http@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-codec-http2@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-common@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-handler@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-handler-proxy@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-resolver@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-resolver-dns@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.netty/netty-transport@4.1.100.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "i.v:vertx-auth-common:4.3.4.redhat-00008#1", + "dependsOn": [ + "i.v:vertx-core:4.3.4.redhat-00008#1" + ] + }, + { + "ref": "i.v:vertx-bridge-common:4.3.4.redhat-00008#1", + "dependsOn": [ + "i.v:vertx-core:4.3.4.redhat-00008#1" + ] + }, + { + "ref": "i.v:vertx-web-common:4.3.4.redhat-00008#1", + "dependsOn": [ + "i.v:vertx-core:4.3.4.redhat-00008#1" + ] + }, + { + "ref": "i.v:vertx-web:4.3.4.redhat-00008#1", + "dependsOn": [ + "i.v:vertx-auth-common:4.3.4.redhat-00008#1", + "i.v:vertx-bridge-common:4.3.4.redhat-00008#1", + "i.v:vertx-core:4.3.4.redhat-00008#1", + "i.v:vertx-web-common:4.3.4.redhat-00008#1" + ] + }, + { + "ref": "i.q:quarkus-smallrye-reactive-messaging-kotlin:2.13.9.Final-redhat-00003#1", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-api@3.21.0.redhat-00001?type=jar", + "i.v:vertx-web:4.3.4.redhat-00008#1" + ] + }, + { + "ref": "i.s.c:smallrye-common-vertx-context:1.13.1.redhat-00001#1", + "dependsOn": [ + "pkg:maven/io.smallrye.common/smallrye-common-constraint@1.13.1.redhat-00001?type=jar", + "i.v:vertx-core:4.3.4.redhat-00008#1" + ] + }, + { + "ref": "i.s.r:smallrye-mutiny-vertx-runtime:2.27.0.redhat-00001#1", + "dependsOn": [ + "pkg:maven/io.smallrye.reactive/mutiny@1.7.0.redhat-00001?type=jar", + "i.v:vertx-core:4.3.4.redhat-00008#1" + ] + }, + { + "ref": "i.s.r:vertx-mutiny-generator:2.27.0.redhat-00001#1", + "dependsOn": [ + "pkg:maven/io.smallrye.common/smallrye-common-annotation@1.13.1.redhat-00001?type=jar", + "i.s.r:smallrye-mutiny-vertx-runtime:2.27.0.redhat-00001#1", + "pkg:maven/io.vertx/vertx-codegen@4.3.4.redhat-00008?type=jar" + ] + }, + { + "ref": "i.s.r:smallrye-mutiny-vertx-core:2.27.0.redhat-00001#1", + "dependsOn": [ + "pkg:maven/io.smallrye.reactive/mutiny@1.7.0.redhat-00001?type=jar", + "i.s.r:smallrye-mutiny-vertx-runtime:2.27.0.redhat-00001#1", + "i.s.r:vertx-mutiny-generator:2.27.0.redhat-00001#1", + "i.v:vertx-core:4.3.4.redhat-00008#1" + ] + }, + { + "ref": "i.q:quarkus-vertx:2.13.9.Final-redhat-00003#1", + "dependsOn": [ + "pkg:maven/io.netty/netty-codec-haproxy@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-mutiny@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-netty@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx-latebound-mdc-provider@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.smallrye/smallrye-fault-tolerance-vertx@5.5.0.redhat-00002?type=jar", + "pkg:maven/io.smallrye.common/smallrye-common-annotation@1.13.1.redhat-00001?type=jar", + "i.s.c:smallrye-common-vertx-context:1.13.1.redhat-00001#1", + "i.s.r:smallrye-mutiny-vertx-core:2.27.0.redhat-00001#1" + ] + }, + { + "ref": "i.s.r:smallrye-reactive-messaging-provider:3.21.0.redhat-00001#1", + "dependsOn": [ + "i.s.c:smallrye-common-vertx-context:1.13.1.redhat-00001#1", + "pkg:maven/io.smallrye.reactive/mutiny@1.7.0.redhat-00001?type=jar", + "i.s.r:smallrye-mutiny-vertx-core:2.27.0.redhat-00001#1", + "pkg:maven/io.smallrye.reactive/smallrye-reactive-converter-api@2.7.0.redhat-00001?type=jar", + "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-api@3.21.0.redhat-00001?type=jar", + "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5.redhat-00008?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "i.s.r:smallrye-reactive-messaging-health:3.21.0.redhat-00001#1", + "dependsOn": [ + "pkg:maven/io.smallrye.reactive/mutiny@1.7.0.redhat-00001?type=jar", + "pkg:maven/io.smallrye.reactive/smallrye-reactive-converter-api@2.7.0.redhat-00001?type=jar", + "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-api@3.21.0.redhat-00001?type=jar", + "i.s.r:smallrye-reactive-messaging-provider:3.21.0.redhat-00001#1", + "pkg:maven/org.eclipse.microprofile.health/microprofile-health-api@3.1.0.redhat-00002?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "i.q:quarkus-smallrye-reactive-messaging:2.13.9.Final-redhat-00003#1", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-mutiny-reactive-streams-operators@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-smallrye-reactive-messaging-kotlin:2.13.9.Final-redhat-00003#1", + "i.q:quarkus-vertx:2.13.9.Final-redhat-00003#1", + "pkg:maven/io.smallrye.common/smallrye-common-annotation@1.13.1.redhat-00001?type=jar", + "i.s.r:smallrye-reactive-messaging-health:3.21.0.redhat-00001#1", + "i.s.r:smallrye-reactive-messaging-provider:3.21.0.redhat-00001#1", + "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5.redhat-00008?type=jar" + ] + }, + { + "ref": "pkg:maven/io.vertx/vertx-proton@4.3.4.redhat-00008?type=jar", + "dependsOn": [ + "i.v:vertx-core:4.3.4.redhat-00008#1", + "pkg:maven/org.apache.qpid/proton-j@0.34.0.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.vertx/vertx-amqp-client@4.3.4.redhat-00008?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2-redhat-00001?type=jar", + "i.v:vertx-core:4.3.4.redhat-00008#1", + "pkg:maven/io.vertx/vertx-proton@4.3.4.redhat-00008?type=jar" + ] + }, + { + "ref": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-amqp-client@2.27.0.redhat-00001?type=jar", + "dependsOn": [ + "i.s.r:smallrye-mutiny-vertx-core:2.27.0.redhat-00001#1", + "pkg:maven/io.vertx/vertx-amqp-client@4.3.4.redhat-00008?type=jar" + ] + }, + { + "ref": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-amqp@3.21.0.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.opentelemetry/opentelemetry-api@1.17.0.redhat-00001?type=jar", + "pkg:maven/io.opentelemetry/opentelemetry-semconv@1.17.0.redhat-00001?type=jar", + "pkg:maven/io.smallrye.reactive/mutiny@1.7.0.redhat-00001?type=jar", + "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-amqp-client@2.27.0.redhat-00001?type=jar", + "pkg:maven/io.smallrye.reactive/smallrye-reactive-converter-api@2.7.0.redhat-00001?type=jar", + "i.s.r:smallrye-reactive-messaging-provider:3.21.0.redhat-00001#1", + "pkg:maven/io.vertx/vertx-amqp-client@4.3.4.redhat-00008?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-amqp@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-jackson@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-mutiny-reactive-streams-operators@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-smallrye-reactive-messaging:2.13.9.Final-redhat-00003#1", + "i.q:quarkus-vertx:2.13.9.Final-redhat-00003#1", + "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-amqp@3.21.0.redhat-00001?type=jar", + "i.s.r:smallrye-reactive-messaging-provider:3.21.0.redhat-00001#1", + "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5.redhat-00008?type=jar" + ] + }, + { + "ref": "i.q:quarkus-vertx-http-dev-console-runtime-spi:2.13.9.Final-redhat-00003#1", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus.arc/arc@2.13.9.Final-redhat-00003?type=jar", + "i.v:vertx-web:4.3.4.redhat-00008#1" + ] + }, + { + "ref": "i.q:quarkus-vertx-http-dev-console-spi:2.13.9.Final-redhat-00003#2", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-vertx-http-dev-console-runtime-spi:2.13.9.Final-redhat-00003#1", + "pkg:maven/io.quarkus.arc/arc@2.13.9.Final-redhat-00003?type=jar", + "i.v:vertx-web:4.3.4.redhat-00008#1" + ] + }, + { + "ref": "i.q:quarkus-arc-deployment:2.13.9.Final-redhat-00003#2", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-smallrye-context-propagation-spi@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-vertx-http-dev-console-spi:2.13.9.Final-redhat-00003#2", + "pkg:maven/io.quarkus.arc/arc-processor@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "i.q:quarkus-devservices-deployment:2.13.9.Final-redhat-00003#3", + "dependsOn": [ + "i.q:quarkus-arc-deployment:2.13.9.Final-redhat-00003#2", + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-devservices-common:2.13.9.Final-redhat-00003#2" + ] + }, + { + "ref": "i.q:quarkus-jackson-deployment:2.13.9.Final-redhat-00003#2", + "dependsOn": [ + "i.q:quarkus-arc-deployment:2.13.9.Final-redhat-00003#2", + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-jackson@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-jackson-spi@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "i.q:quarkus-smallrye-context-propagation-deployment:2.13.9.Final-redhat-00003#2", + "dependsOn": [ + "i.q:quarkus-arc-deployment:2.13.9.Final-redhat-00003#2", + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-smallrye-context-propagation@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-smallrye-context-propagation-spi@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "i.q:quarkus-mutiny-deployment:2.13.9.Final-redhat-00003#2", + "dependsOn": [ + "i.q:quarkus-arc-deployment:2.13.9.Final-redhat-00003#2", + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-mutiny@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-smallrye-context-propagation-deployment:2.13.9.Final-redhat-00003#2" + ] + }, + { + "ref": "i.q:quarkus-mutiny-reactive-streams-operators-deployment:2.13.9.Final-redhat-00003#1", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-mutiny-deployment:2.13.9.Final-redhat-00003#2", + "pkg:maven/io.quarkus/quarkus-mutiny-reactive-streams-operators@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "i.q:quarkus-netty-deployment:2.13.9.Final-redhat-00003#1", + "dependsOn": [ + "i.q:quarkus-arc-deployment:2.13.9.Final-redhat-00003#2", + "pkg:maven/io.quarkus/quarkus-netty@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "i.q:quarkus-vertx-deployment:2.13.9.Final-redhat-00003#1", + "dependsOn": [ + "i.q:quarkus-arc-deployment:2.13.9.Final-redhat-00003#2", + "i.q:quarkus-mutiny-deployment:2.13.9.Final-redhat-00003#2", + "i.q:quarkus-netty-deployment:2.13.9.Final-redhat-00003#1", + "i.q:quarkus-vertx:2.13.9.Final-redhat-00003#1" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "i.q:quarkus-arc-deployment:2.13.9.Final-redhat-00003#2", + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-mutiny-reactive-streams-operators-deployment:2.13.9.Final-redhat-00003#1", + "pkg:maven/io.quarkus/quarkus-smallrye-health-spi@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-smallrye-reactive-messaging:2.13.9.Final-redhat-00003#1", + "i.q:quarkus-vertx-deployment:2.13.9.Final-redhat-00003#1", + "pkg:maven/org.commonmark/commonmark@0.19.0.redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-amqp-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-devservices-deployment:2.13.9.Final-redhat-00003#3", + "i.q:quarkus-jackson-deployment:2.13.9.Final-redhat-00003#2", + "pkg:maven/io.quarkus/quarkus-junit4-mock@2.13.9.Final?type=jar", + "i.q:quarkus-mutiny-reactive-streams-operators-deployment:2.13.9.Final-redhat-00003#1", + "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-amqp@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-deployment@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-vertx-deployment:2.13.9.Final-redhat-00003#1", + "o.t:testcontainers:1.17.3#2" + ] + }, + { + "ref": "i.q:quarkus-smallrye-reactive-messaging-deployment:2.13.9.Final-redhat-00003#1", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-mutiny-reactive-streams-operators-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-smallrye-health-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/org.commonmark/commonmark@0.19.0.redhat-00002?type=jar" + ] + }, + { + "ref": "i.q:quarkus-kafka-client:2.13.9.Final-redhat-00003#1", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-caffeine@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-jackson@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-vertx-http-dev-console-runtime-spi:2.13.9.Final-redhat-00003#1", + "pkg:maven/org.apache.kafka/kafka-clients@3.2.3.redhat-00016?type=jar" + ] + }, + { + "ref": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-kafka-api@3.21.0.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.smallrye.reactive/mutiny@1.7.0.redhat-00001?type=jar", + "pkg:maven/io.smallrye.reactive/smallrye-reactive-converter-api@2.7.0.redhat-00001?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-kafka@3.21.0.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.opentelemetry/opentelemetry-api@1.17.0.redhat-00001?type=jar", + "pkg:maven/io.opentelemetry/opentelemetry-semconv@1.17.0.redhat-00001?type=jar", + "pkg:maven/io.smallrye.reactive/mutiny@1.7.0.redhat-00001?type=jar", + "pkg:maven/io.smallrye.reactive/smallrye-reactive-converter-api@2.7.0.redhat-00001?type=jar", + "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-kafka-api@3.21.0.redhat-00001?type=jar", + "i.s.r:smallrye-reactive-messaging-provider:3.21.0.redhat-00001#1", + "pkg:maven/org.eclipse.microprofile.metrics/microprofile-metrics-api@3.0.1.redhat-00001?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.vertx/vertx-kafka-client@4.3.4.redhat-00008?type=jar", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2-redhat-00001?type=jar", + "i.v:vertx-core:4.3.4.redhat-00008#1", + "pkg:maven/org.slf4j/slf4j-api@1.7.36.redhat-00005?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-kafka@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-jackson@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-kafka-client:2.13.9.Final-redhat-00003#1", + "i.q:quarkus-smallrye-reactive-messaging:2.13.9.Final-redhat-00003#1", + "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-kafka@3.21.0.redhat-00001?type=jar", + "i.s.r:smallrye-reactive-messaging-provider:3.21.0.redhat-00001#1", + "pkg:maven/io.vertx/vertx-kafka-client@4.3.4.redhat-00008?type=jar", + "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5.redhat-00008?type=jar", + "pkg:maven/org.apache.kafka/kafka-clients@3.2.3.redhat-00016?type=jar" + ] + }, + { + "ref": "i.q:quarkus-devservices-deployment:2.13.9.Final-redhat-00003#4", + "dependsOn": [ + "i.q:quarkus-arc-deployment:2.13.9.Final-redhat-00003#2", + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-devservices-common@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "i.q:quarkus-kafka-client-deployment:2.13.9.Final-redhat-00003#2", + "dependsOn": [ + "i.q:quarkus-arc-deployment:2.13.9.Final-redhat-00003#2", + "pkg:maven/io.quarkus/quarkus-caffeine-deployment@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-devservices-deployment:2.13.9.Final-redhat-00003#4", + "i.q:quarkus-jackson-deployment:2.13.9.Final-redhat-00003#2", + "pkg:maven/io.quarkus/quarkus-junit4-mock@2.13.9.Final?type=jar", + "i.q:quarkus-kafka-client:2.13.9.Final-redhat-00003#1", + "pkg:maven/io.quarkus/quarkus-smallrye-health-spi@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-vertx-http-dev-console-spi:2.13.9.Final-redhat-00003#2", + "i.s:strimzi-test-container:0.100.0#1", + "pkg:maven/org.testcontainers/testcontainers@1.17.3?type=jar" + ] + }, + { + "ref": "i.s.r:vertx-mutiny-generator:2.27.0.redhat-00001#2", + "dependsOn": [ + "pkg:maven/io.smallrye.common/smallrye-common-annotation@1.13.1.redhat-00001?type=jar", + "i.s.r:smallrye-mutiny-vertx-runtime:2.27.0.redhat-00001#1", + "i.v:vertx-codegen:4.3.4.redhat-00008#1" + ] + }, + { + "ref": "i.s.r:smallrye-mutiny-vertx-core:2.27.0.redhat-00001#2", + "dependsOn": [ + "pkg:maven/io.smallrye.reactive/mutiny@1.7.0.redhat-00001?type=jar", + "i.s.r:smallrye-mutiny-vertx-runtime:2.27.0.redhat-00001#1", + "i.s.r:vertx-mutiny-generator:2.27.0.redhat-00001#2", + "i.v:vertx-core:4.3.4.redhat-00008#1" + ] + }, + { + "ref": "i.q:quarkus-vertx:2.13.9.Final-redhat-00003#2", + "dependsOn": [ + "pkg:maven/io.netty/netty-codec-haproxy@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-mutiny@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-netty@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx-latebound-mdc-provider@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.smallrye/smallrye-fault-tolerance-vertx@5.5.0.redhat-00002?type=jar", + "pkg:maven/io.smallrye.common/smallrye-common-annotation@1.13.1.redhat-00001?type=jar", + "i.s.c:smallrye-common-vertx-context:1.13.1.redhat-00001#1", + "i.s.r:smallrye-mutiny-vertx-core:2.27.0.redhat-00001#2" + ] + }, + { + "ref": "i.s.r:smallrye-reactive-messaging-provider:3.21.0.redhat-00001#2", + "dependsOn": [ + "i.s.c:smallrye-common-vertx-context:1.13.1.redhat-00001#1", + "pkg:maven/io.smallrye.reactive/mutiny@1.7.0.redhat-00001?type=jar", + "i.s.r:smallrye-mutiny-vertx-core:2.27.0.redhat-00001#2", + "pkg:maven/io.smallrye.reactive/smallrye-reactive-converter-api@2.7.0.redhat-00001?type=jar", + "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-api@3.21.0.redhat-00001?type=jar", + "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5.redhat-00008?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "i.s.r:smallrye-reactive-messaging-health:3.21.0.redhat-00001#2", + "dependsOn": [ + "pkg:maven/io.smallrye.reactive/mutiny@1.7.0.redhat-00001?type=jar", + "pkg:maven/io.smallrye.reactive/smallrye-reactive-converter-api@2.7.0.redhat-00001?type=jar", + "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-api@3.21.0.redhat-00001?type=jar", + "i.s.r:smallrye-reactive-messaging-provider:3.21.0.redhat-00001#2", + "pkg:maven/org.eclipse.microprofile.health/microprofile-health-api@3.1.0.redhat-00002?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "i.q:quarkus-smallrye-reactive-messaging:2.13.9.Final-redhat-00003#2", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-mutiny-reactive-streams-operators@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-smallrye-reactive-messaging-kotlin:2.13.9.Final-redhat-00003#1", + "i.q:quarkus-vertx:2.13.9.Final-redhat-00003#2", + "pkg:maven/io.smallrye.common/smallrye-common-annotation@1.13.1.redhat-00001?type=jar", + "i.s.r:smallrye-reactive-messaging-health:3.21.0.redhat-00001#2", + "i.s.r:smallrye-reactive-messaging-provider:3.21.0.redhat-00001#2", + "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5.redhat-00008?type=jar" + ] + }, + { + "ref": "i.q:quarkus-vertx-deployment:2.13.9.Final-redhat-00003#2", + "dependsOn": [ + "i.q:quarkus-arc-deployment:2.13.9.Final-redhat-00003#2", + "i.q:quarkus-mutiny-deployment:2.13.9.Final-redhat-00003#2", + "i.q:quarkus-netty-deployment:2.13.9.Final-redhat-00003#1", + "i.q:quarkus-vertx:2.13.9.Final-redhat-00003#2" + ] + }, + { + "ref": "i.q:quarkus-smallrye-reactive-messaging-deployment:2.13.9.Final-redhat-00003#2", + "dependsOn": [ + "i.q:quarkus-arc-deployment:2.13.9.Final-redhat-00003#2", + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-mutiny-reactive-streams-operators-deployment:2.13.9.Final-redhat-00003#1", + "pkg:maven/io.quarkus/quarkus-smallrye-health-spi@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-smallrye-reactive-messaging:2.13.9.Final-redhat-00003#2", + "i.q:quarkus-vertx-deployment:2.13.9.Final-redhat-00003#2", + "pkg:maven/org.commonmark/commonmark@0.19.0.redhat-00002?type=jar" + ] + }, + { + "ref": "i.s.r:smallrye-reactive-messaging-kafka:3.21.0.redhat-00001#1", + "dependsOn": [ + "pkg:maven/io.opentelemetry/opentelemetry-api@1.17.0.redhat-00001?type=jar", + "pkg:maven/io.opentelemetry/opentelemetry-semconv@1.17.0.redhat-00001?type=jar", + "pkg:maven/io.smallrye.reactive/mutiny@1.7.0.redhat-00001?type=jar", + "pkg:maven/io.smallrye.reactive/smallrye-reactive-converter-api@2.7.0.redhat-00001?type=jar", + "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-kafka-api@3.21.0.redhat-00001?type=jar", + "i.s.r:smallrye-reactive-messaging-provider:3.21.0.redhat-00001#2", + "pkg:maven/org.eclipse.microprofile.metrics/microprofile-metrics-api@3.0.1.redhat-00001?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "i.q:quarkus-smallrye-reactive-messaging-kafka:2.13.9.Final-redhat-00003#1", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-jackson@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-kafka-client:2.13.9.Final-redhat-00003#1", + "i.q:quarkus-smallrye-reactive-messaging:2.13.9.Final-redhat-00003#2", + "i.s.r:smallrye-reactive-messaging-kafka:3.21.0.redhat-00001#1", + "i.s.r:smallrye-reactive-messaging-provider:3.21.0.redhat-00001#2", + "pkg:maven/io.vertx/vertx-kafka-client@4.3.4.redhat-00008?type=jar", + "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5.redhat-00008?type=jar", + "pkg:maven/org.apache.kafka/kafka-clients@3.2.3.redhat-00016?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-kafka-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-jackson-deployment:2.13.9.Final-redhat-00003#2", + "i.q:quarkus-kafka-client-deployment:2.13.9.Final-redhat-00003#2", + "i.q:quarkus-mutiny-reactive-streams-operators-deployment:2.13.9.Final-redhat-00003#1", + "i.q:quarkus-smallrye-reactive-messaging-deployment:2.13.9.Final-redhat-00003#2", + "i.q:quarkus-smallrye-reactive-messaging-kafka:2.13.9.Final-redhat-00003#1", + "i.q:quarkus-vertx-deployment:2.13.9.Final-redhat-00003#2" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-spring-boot-properties@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-spring-boot-properties-api@2.1.0.SP1-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-spring-core-api@5.2.0.SP7-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-spring-boot-properties-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-spring-boot-properties@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-spring-cache@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-cache@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-spring-context-api@5.2.0.SP7-redhat-00001?type=jar", + "pkg:maven/io.quarkus/quarkus-spring-core-api@5.2.0.SP7-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-spring-cache-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-cache-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-spring-cache@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-spring-cloud-config-client@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-jackson@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-mutiny@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web-client@2.27.0.redhat-00001?type=jar", + "pkg:maven/org.jboss.logging/commons-logging-jboss-logging@1.0.0.Final-redhat-1?type=jar", + "pkg:maven/org.jboss.spec.javax.ws.rs/jboss-jaxrs-api_2.1_spec@2.0.1.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-spring-cloud-config-client-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-jackson-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-mutiny-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-spring-cloud-config-client@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx-deployment@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-spring-di@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-spring-beans-api@5.2.0.SP7-redhat-00001?type=jar", + "pkg:maven/io.quarkus/quarkus-spring-context-api@5.2.0.SP7-redhat-00001?type=jar", + "pkg:maven/io.quarkus/quarkus-spring-core-api@5.2.0.SP7-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-spring-data-jpa@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-spring-boot-orm-api@2.1.0.SP1-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-spring-context-api@5.2.0.SP7-redhat-00001?type=jar", + "pkg:maven/io.quarkus/quarkus-spring-core-api@5.2.0.SP7-redhat-00001?type=jar", + "pkg:maven/io.quarkus/quarkus-spring-data-commons-api@2.1.0.SP2-redhat-00002?type=jar", + "pkg:maven/io.quarkus/quarkus-spring-data-jpa-api@2.1.0.SP2-redhat-00002?type=jar", + "pkg:maven/io.quarkus/quarkus-spring-di@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-spring-di-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-spring-di@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-spring-data-jpa-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-spring-data-jpa@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-spring-di-deployment@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-spring-data-rest@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-rest-data-panache@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-spring-data-jpa@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-spring-data-rest-api@2.1.0.SP2-redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-spring-data-rest-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-rest-data-panache-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-spring-data-jpa-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-spring-data-rest@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-spring-scheduled@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-scheduler@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-spring-context-api@5.2.0.SP7-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-spring-scheduled-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-scheduler-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-spring-scheduled@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-spring-security@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-security@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-spring-beans-api@5.2.0.SP7-redhat-00001?type=jar", + "pkg:maven/io.quarkus/quarkus-spring-context-api@5.2.0.SP7-redhat-00001?type=jar", + "pkg:maven/io.quarkus/quarkus-spring-core-api@5.2.0.SP7-redhat-00001?type=jar", + "pkg:maven/io.quarkus/quarkus-spring-di@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-spring-security-core-api@5.3.0.Final-redhat-00001?type=jar", + "pkg:maven/io.quarkus/quarkus-spring-web-api@5.2.0.SP7-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-spring-security-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-security-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-spring-di-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-spring-security@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus.security/quarkus-security@1.1.4.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-spring-web@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-spring-context-api@5.2.0.SP7-redhat-00001?type=jar", + "pkg:maven/io.quarkus/quarkus-spring-core-api@5.2.0.SP7-redhat-00001?type=jar", + "pkg:maven/io.quarkus/quarkus-spring-di@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-spring-web-api@5.2.0.SP7-redhat-00001?type=jar", + "pkg:maven/io.quarkus/quarkus-spring-webmvc-api@5.2.0.SP7-redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-spring-web-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-jaxrs-spi-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-resteasy-common-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-resteasy-reactive-spi-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-spring-di-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-spring-web@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "i.s.r:smallrye-mutiny-vertx-auth-common:2.27.0.redhat-00001#1", + "dependsOn": [ + "i.s.r:smallrye-mutiny-vertx-core:2.27.0.redhat-00001#1", + "i.v:vertx-auth-common:4.3.4.redhat-00008#1" + ] + }, + { + "ref": "i.s.r:smallrye-mutiny-vertx-bridge-common:2.27.0.redhat-00001#1", + "dependsOn": [ + "i.s.r:smallrye-mutiny-vertx-core:2.27.0.redhat-00001#1", + "i.v:vertx-bridge-common:4.3.4.redhat-00008#1" + ] + }, + { + "ref": "i.v:vertx-uri-template:4.3.4.redhat-00008#1", + "dependsOn": [ + "i.v:vertx-core:4.3.4.redhat-00008#1" + ] + }, + { + "ref": "i.s.r:smallrye-mutiny-vertx-uri-template:2.27.0.redhat-00001#1", + "dependsOn": [ + "i.s.r:smallrye-mutiny-vertx-core:2.27.0.redhat-00001#1", + "i.v:vertx-uri-template:4.3.4.redhat-00008#1" + ] + }, + { + "ref": "i.s.r:smallrye-mutiny-vertx-web-common:2.27.0.redhat-00001#1", + "dependsOn": [ + "i.s.r:smallrye-mutiny-vertx-core:2.27.0.redhat-00001#1", + "i.v:vertx-web-common:4.3.4.redhat-00008#1" + ] + }, + { + "ref": "i.s.r:smallrye-mutiny-vertx-web:2.27.0.redhat-00001#1", + "dependsOn": [ + "i.s.r:smallrye-mutiny-vertx-auth-common:2.27.0.redhat-00001#1", + "i.s.r:smallrye-mutiny-vertx-bridge-common:2.27.0.redhat-00001#1", + "i.s.r:smallrye-mutiny-vertx-core:2.27.0.redhat-00001#1", + "i.s.r:smallrye-mutiny-vertx-uri-template:2.27.0.redhat-00001#1", + "i.s.r:smallrye-mutiny-vertx-web-common:2.27.0.redhat-00001#1", + "i.v:vertx-web:4.3.4.redhat-00008#1" + ] + }, + { + "ref": "i.q:quarkus-vertx-http:2.13.9.Final-redhat-00003#1", + "dependsOn": [ + "pkg:maven/io.github.crac/org-crac@0.1.1.redhat-00002?type=jar", + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-credentials@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-mutiny@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-security-runtime-spi@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-vertx:2.13.9.Final-redhat-00003#1", + "i.q:quarkus-vertx-http-dev-console-runtime-spi:2.13.9.Final-redhat-00003#1", + "pkg:maven/io.quarkus.security/quarkus-security@1.1.4.Final-redhat-00001?type=jar", + "i.s.c:smallrye-common-vertx-context:1.13.1.redhat-00001#1", + "i.s.r:smallrye-mutiny-vertx-web:2.27.0.redhat-00001#1", + "i.v:vertx-web:4.3.4.redhat-00008#1" + ] + }, + { + "ref": "pkg:maven/io.quarkus.http/quarkus-http-vertx-backend@4.1.9.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus.http/quarkus-http-http-core@4.1.9.redhat-00001?type=jar", + "i.v:vertx-core:4.3.4.redhat-00008#1", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-undertow@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-vertx-http:2.13.9.Final-redhat-00003#1", + "pkg:maven/io.quarkus.http/quarkus-http-core@4.1.9.redhat-00001?type=jar", + "pkg:maven/io.quarkus.http/quarkus-http-servlet@4.1.9.redhat-00001?type=jar", + "pkg:maven/io.quarkus.http/quarkus-http-vertx-backend@4.1.9.redhat-00001?type=jar", + "pkg:maven/io.quarkus.security/quarkus-security@1.1.4.Final-redhat-00001?type=jar", + "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5.redhat-00008?type=jar", + "pkg:maven/jakarta.enterprise/jakarta.enterprise.cdi-api@2.0.2.redhat-00005?type=jar", + "pkg:maven/jakarta.servlet/jakarta.servlet-api@4.0.3.redhat-00006?type=jar", + "pkg:maven/org.eclipse.microprofile.context-propagation/microprofile-context-propagation-api@1.2.0.redhat-00012?type=jar" + ] + }, + { + "ref": "i.q:quarkus-vertx-http-deployment:2.13.9.Final-redhat-00003#1", + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2-redhat-00001?type=jar", + "i.q:quarkus-kubernetes-spi:2.13.9.Final-redhat-00003#1", + "i.q:quarkus-mutiny-deployment:2.13.9.Final-redhat-00003#2", + "i.q:quarkus-vertx-deployment:2.13.9.Final-redhat-00003#1", + "i.q:quarkus-vertx-http:2.13.9.Final-redhat-00003#1", + "pkg:maven/io.quarkus/quarkus-vertx-http-deployment-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus.qute/qute-core@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/org.yaml/snakeyaml@1.33.0.redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-undertow-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "i.q:quarkus-arc-deployment:2.13.9.Final-redhat-00003#2", + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-kubernetes-spi:2.13.9.Final-redhat-00003#1", + "pkg:maven/io.quarkus/quarkus-undertow@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-undertow-spi@2.13.9.Final-redhat-00003?type=jar", + "i.q:quarkus-vertx-http-deployment:2.13.9.Final-redhat-00003#1", + "pkg:maven/io.quarkus.http/quarkus-http-servlet@4.1.9.redhat-00001?type=jar", + "pkg:maven/jakarta.servlet/jakarta.servlet-api@4.0.3.redhat-00006?type=jar", + "pkg:maven/org.jboss.metadata/jboss-metadata-web@15.1.0.Final-redhat-00001?type=jar" + ] + }, + { + "ref": "i.s:smallrye-fault-tolerance-vertx:5.5.0.redhat-00002#1", + "dependsOn": [ + "pkg:maven/io.smallrye/smallrye-fault-tolerance-core@5.5.0.redhat-00002?type=jar", + "pkg:maven/io.vertx/vertx-core@4.3.4.redhat-00008?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "i.q:quarkus-vertx:2.13.9.Final-redhat-00003#3", + "dependsOn": [ + "pkg:maven/io.netty/netty-codec-haproxy@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/io.quarkus/quarkus-arc@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-mutiny@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-netty@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx-latebound-mdc-provider@2.13.9.Final-redhat-00003?type=jar", + "i.s:smallrye-fault-tolerance-vertx:5.5.0.redhat-00002#1", + "pkg:maven/io.smallrye.common/smallrye-common-annotation@1.13.1.redhat-00001?type=jar", + "pkg:maven/io.smallrye.common/smallrye-common-vertx-context@1.13.1.redhat-00001?type=jar", + "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-core@2.27.0.redhat-00001?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus.http/quarkus-http-websocket-core@4.1.9.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.netty/netty-codec-http@4.1.100.Final-redhat-00001?type=jar", + "pkg:maven/jakarta.websocket/jakarta.websocket-api@1.1.2.redhat-00002?type=jar", + "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-websockets-client@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-vertx@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus.http/quarkus-http-websocket-core@4.1.9.redhat-00001?type=jar", + "pkg:maven/io.quarkus.security/quarkus-security@1.1.4.Final-redhat-00001?type=jar", + "pkg:maven/jakarta.websocket/jakarta.websocket-api@1.1.2.redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus.http/quarkus-http-websocket-vertx@4.1.9.redhat-00001?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus.http/quarkus-http-websocket-core@4.1.9.redhat-00001?type=jar", + "pkg:maven/io.vertx/vertx-web@4.3.4.redhat-00008?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-websockets@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-core@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx-http@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-websockets-client@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus.http/quarkus-http-websocket-vertx@4.1.9.redhat-00001?type=jar", + "pkg:maven/jakarta.websocket/jakarta.websocket-api@1.1.2.redhat-00002?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-websockets-client-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-undertow-spi@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-websockets-client@2.13.9.Final-redhat-00003?type=jar" + ] + }, + { + "ref": "pkg:maven/io.quarkus/quarkus-websockets-deployment@2.13.9.Final-redhat-00003?type=jar", + "dependsOn": [ + "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-vertx-http-deployment@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-websockets@2.13.9.Final-redhat-00003?type=jar", + "pkg:maven/io.quarkus/quarkus-websockets-client-deployment@2.13.9.Final-redhat-00003?type=jar" + ] + } + ] + }, + "configIndex": 0, + "generationRequest": { + "id": "1B4046D61C3B471", + "identifier": "A7OMLJYDW7QAA", + "config": { + "type": "pnc-build", + "apiVersion": "sbomer.jboss.org/v1alpha1", + "buildId": "A7OMLJYDW7QAA", + "environment": { + "java": "11", + "maven": "3.8.6", + "gradle": "7.5.1" + }, + "products": [ + { + "processors": [ + { + "type": "default" + }, + { + "type": "redhat-product", + "errata": { + "productName": "RHBQ", + "productVersion": "Middleware-RHBQ-2.13", + "productVariant": "8Base-MW-RHBQ-2.13" + } + } + ], + "generator": { + "type": "maven-domino", + "args": "--config-file .domino/manifest/quarkus-bom-config.json --warn-on-missing-scm --legacy-scm-locator", + "version": "0.0.104" + } + } + ] + }, + "type": "BUILD", + "creationTime": "2024-04-17T10:49:26.799349Z", + "status": "FINISHED", + "result": "SUCCESS", + "reason": "Generation finished successfully. Generated SBOMs: 6346322A131A437" + } + } \ No newline at end of file diff --git a/service/src/test/resources/errata/release/textOnly/manifests/errata.json b/service/src/test/resources/errata/release/textOnly/manifests/errata.json new file mode 100644 index 000000000..bfb462fa4 --- /dev/null +++ b/service/src/test/resources/errata/release/textOnly/manifests/errata.json @@ -0,0 +1,58 @@ +{ + "errata": { + "rhsa": { + "id": 130278, + "revision": 2, + "fulladvisory": "RHSA-2024:1797-02", + "issue_date": "2024-04-22T10:57:23Z", + "update_date": "2024-04-22T10:57:23Z", + "release_date": null, + "synopsis": "Important: Red Hat build of Quarkus 2.13.9.SP2 release and security update", + "pushed": 0, + "published": 1, + "deleted": 0, + "status": "SHIPPED_LIVE", + "product_id": 153, + "status_updated_at": "2024-04-22T10:59:06Z", + "group_id": 1245, + "created_at": "2024-04-11T07:32:23Z", + "updated_at": "2024-04-22T11:21:49Z", + "old_advisory": "RHSA-2024:130278-02", + "text_only": true, + "publish_date_override": null, + "actual_ship_date": "2024-04-22T10:59:06Z", + "content_types": [ + + ], + "errata_id": 1797, + "fulltype": "Red Hat Security Advisory", + "publish_date": null, + "labels": [ + "mw_manifest_present" + ], + "product": { + "id": 153, + "name": "Red Hat build of Quarkus", + "short_name": "RHBQ" + } + } + }, + "original_type": "RHSA", + "content": { + "content": { + "id": 127858, + "errata_id": 130278, + "topic": "An update is now available for Red Hat build of Quarkus.\n\nRed Hat Product Security has rated this update as having a security impact of\nImportant. A Common Vulnerability Scoring System (CVSS) base score, which gives\na\ndetailed severity rating, is available for each vulnerability. For more\ninformation, see the CVE links in the References section.", + "description": "This release of Red Hat build of Quarkus 2.13.9.SP2 includes security updates,\nbug fixes, and enhancements. For more information, see the release notes page\nlisted in the References section.\n\nSecurity Fix(es):\n\n* CVE-2024-1597 org.postgresql/postgresql: pgjdbc: PostgreSQL JDBC Driver allows attacker to inject SQL if using PreferQueryMode=SIMPLE [quarkus-2]\n\n* CVE-2024-25710 org.apache.commons/commons-compress: Denial of service caused by an infinite loop for a corrupted DUMP file [quarkus-2]\n\n* CVE-2024-26308 org.apache.commons/commons-compress: OutOfMemoryError unpacking broken Pack200 file [quarkus-2]", + "solution": "Before applying this update, make sure all previously released errata\nrelevant to your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258", + "keywords": "", + "cve": "CVE-2024-1597 CVE-2024-25710 CVE-2024-26308", + "how_to_test": "{\r\n \"manifest\": {\r\n \"refs\": [\r\n {\r\n \"type\": \"purl\",\r\n \"uri\": \"pkg:maven/com.redhat.quarkus.platform/quarkus-bom@2.13.9.SP2-redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=pom\"\r\n }\r\n ]\r\n },\r\n \"simple-mapper\": {\r\n \"refs\": [\r\n {\r\n \"fix\": {\r\n \"CVE-2024-1597\": [\r\n \"pkg:maven/org.postgresql/postgresql@42.5.6.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar\"\r\n ],\r\n \"CVE-2024-25710\": [\r\n \"pkg:maven/org.apache.commons/commons-compress@1.26.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar\"\r\n ],\r\n \"CVE-2024-26308\": [\r\n \"pkg:maven/org.apache.commons/commons-compress@1.26.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar\"\r\n ]\r\n },\r\n \"type\": \"cve-component-mapping\",\r\n \"version\": \"0.0.2\"\r\n }\r\n ]\r\n }\r\n}", + "updated_at": "2024-04-18T08:34:04Z", + "revision_count": 1, + "doc_review_due_at": null, + "text_only_cpe": "cpe:/a:redhat:quarkus:2.13", + "product_version_text": "Red Hat build of Quarkus 2.13.9.SP2" + } + } + } \ No newline at end of file diff --git a/service/src/test/resources/errata/release/textOnly/manifests/request_event.json b/service/src/test/resources/errata/release/textOnly/manifests/request_event.json new file mode 100644 index 000000000..d5247ad0a --- /dev/null +++ b/service/src/test/resources/errata/release/textOnly/manifests/request_event.json @@ -0,0 +1,20 @@ +{ + "id": "69436F788E634CB", + "receivalTime": "2024-12-09T15:49:02.983293Z", + "eventType": "REST", + "eventStatus": "SUCCESS", + "reason": "1/1 completed with success", + "requestConfig": { + "type": "errata-advisory", + "apiVersion": "sbomer.jboss.org/v1alpha1", + "advisoryId": "130278" + }, + "event": { + "method": "POST", + "address": "10.39.192.91", + "span_id": "de455e026ad1ad3e", + "trace_id": "713ccadb60ec75148909afc9b92ab46f", + "username": "", + "destination": "http://sbomer.pnc.engineering.redhat.com/api/v1beta1/generations" + } + } \ No newline at end of file