diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 20498b8..a19a2ec 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,5 +1,3 @@ -// For format details, see https://aka.ms/vscode-remote/devcontainer.json or this file's README at: -// https://github.com/microsoft/vscode-dev-containers/tree/v0.195.0/containers/go { "name": "sbom-convert", "image": "mcr.microsoft.com/devcontainers/base:ubuntu", @@ -27,8 +25,8 @@ "esbenp.prettier-vscode", "GitHub.copilot", "GitHub.copilot-chat", - "GitHub.copilot-labs", - "golang.Go" + "golang.Go", + "github.vscode-github-actions" ], "settings": { "editor.formatOnSave": true, @@ -40,6 +38,11 @@ "go.goroot": "/usr/local/go", "go.lintTool": "golangci-lint", "go.lintFlags": ["--fast", "--timeout", "5m"], + "go.testEnvVars": { + "NO_COLOR": "true" + }, + "go.buildTags": "unit,integration", + "go.testTags": "unit,integration", "gopls": { "formatting.gofumpt": true }, @@ -58,9 +61,11 @@ "workspaceMount": "source=${localWorkspaceFolder},target=/workspace,type=bind", "features": { "ghcr.io/devcontainers/features/go:1": { - "version": "1.20" + "version": "1.21.5" + }, + "ghcr.io/devcontainers/features/docker-in-docker:2": { + "moby": true }, - "ghcr.io/devcontainers/features/docker-in-docker:2": {}, "ghcr.io/devcontainers/features/git:1": {}, "ghcr.io/devcontainers/features/common-utils:2": { "configureZshAsDefaultShell": true diff --git a/.devcontainer/post-create.sh b/.devcontainer/post-create.sh index 4c5943d..b60db36 100755 --- a/.devcontainer/post-create.sh +++ b/.devcontainer/post-create.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash -PYTHON_UTILS=("yamllint" "pre-commit") +PYTHON_UTILS=("yamllint" "pre-commit" "semgrep") GITHUB_UTILS=("") -GOLANG_UTILS=("github.com/google/yamlfmt/cmd/yamlfmt@latest" "github.com/goreleaser/goreleaser@latest") +GOLANG_UTILS=("github.com/google/yamlfmt/cmd/yamlfmt@latest" "github.com/goreleaser/goreleaser@latest" "go.uber.org/mock/mockgen@latest" "github.com/mfridman/tparse@latest" "github.com/vburenin/ifacemaker@latest" "github.com/maxbrunsfeld/counterfeiter/v6@latest" "github.com/go-task/task/v3/cmd/task@latest") APT_UTILS=("shellcheck" "vim") NODE_UTILS=("@commitlint/cli" "@commitlint/config-conventional") set -e @@ -34,7 +34,8 @@ echo ==================================================== echo "Installing tools from Github..." for util in "${GITHUB_UTILS[@]}"; do if ! type "${util}" >/dev/null 2>&1; then - curl -s "https://raw.githubusercontent.com/${util}" | bash + echo "im installing ${util}" + curl -s "https://raw.githubusercontent.com/${util}" | sudo sh -s -- -b /usr/local/bin echo "" else echo "${util} already installed. Skipping." diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 91ac9f8..0356b27 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1,55 +1 @@ -# This is a comment. -# Each line is a file pattern followed by one or more owners. -# -# These owners will be the default owners for everything in -# the repo. Unless a later match takes precedence, -# @global-owner1 and @global-owner2 will be requested for -# review when someone opens a pull request. -# * @global-owner1 @global-owner2 -# -# Order is important; the last matching pattern takes the most -# precedence. When someone opens a pull request that only -# modifies JS files, only @js-owner and not the global -# owner(s) will be requested for a review. -# *.js @js-owner #This is an inline comment. -# -# You can also use email addresses if you prefer. They'll be -# used to look up users just like we do for commit author -# emails. -# *.go docs@example.com -# -# Teams can be specified as code owners as well. Teams should -# be identified in the format @org/team-name. Teams must have -# explicit write access to the repository. In this example, -# the octocats team in the octo-org organization owns all .txt files. -# *.txt @octo-org/octocats -# -# In this example, @doctocat owns any files in the build/logs -# directory at the root of the repository and any of its -# subdirectories. -# /build/logs/ @doctocat -# -# The `docs/*` pattern will match files like -# `docs/getting-started.md` but not further nested files like -# `docs/build-app/troubleshooting.md`. -# docs/* docs@example.com -# -# In this example, @octocat owns any file in an apps directory -# anywhere in your repository. -# apps/ @octocat -# -# In this example, @doctocat owns any file in the `/docs` -# directory in the root of your repository and any of its -# subdirectories. -# /docs/ @doctocat -# -# In this example, any change inside the `/scripts` directory -# will require approval from @doctocat or @octocat. -# /scripts/ @doctocat @octocat -# -# In this example, @octocat owns any file in the `/apps` -# directory in the root of your repository except for the `/apps/github` -# subdirectory, as its owners are left empty. -# /apps/ @octocat -# /apps/github -@manifestori @puerco @houdini91 +@manifestori @adefee @puerco @houdini91 diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000..bc0d38e --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,37 @@ +--- +name: Bug report +about: Report a bug +title: "" +labels: bug,triage +assignees: manifestori +--- + + + +**Description:** +A clear and concise description of what the bug is. + +**Version:** +Specify the tool version. + +**Platform:** + +- [ ] Ubuntu +- [ ] macOS +- [ ] Windows + +**Reproduction steps:** +A description with steps to reproduce the issue. If your have a public example or repositories to share, please provide the link. + +**Expected behavior:** +A description of what you expected to happen. + +**Actual behavior:** +A description of what is actually happening. diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 0000000..3ba13e0 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1 @@ +blank_issues_enabled: false diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 0000000..17a91f5 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,17 @@ +--- +name: Feature Request +about: Suggest a new feature +title: "" +labels: enhancement,triage +assignees: manifestori +--- + + diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..e69de29 diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..78a7d20 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,38 @@ +version: 2 +updates: + - package-ecosystem: "gomod" + directory: "/" + schedule: + interval: "daily" + reviewers: + - "manifestori" + labels: + - "dependencies" + commit-message: + prefix: "chore" + include: "scope" + open-pull-requests-limit: 10 + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" + reviewers: + - "manifestori" + labels: + - "dependencies" + commit-message: + prefix: "chore" + include: "scope" + open-pull-requests-limit: 10 + - package-ecosystem: "docker" + directory: "/" + schedule: + interval: "daily" + reviewers: + - "manifestori" + labels: + - "dependencies" + commit-message: + prefix: "chore" + include: "scope" + open-pull-requests-limit: 10 diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..9fc9a45 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,81 @@ +name: build + +on: + push: + branches: + - "main" + pull_request: + paths: + - "go.*" + - "**/*.go" + - "Dockerfile" + - ".github/workflows/*.yml" + +permissions: + contents: read + +jobs: + govulncheck: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-go@v5 + with: + go-version: 1.21.5 + - name: govulncheck + run: | + go install golang.org/x/vuln/cmd/govulncheck@latest + govulncheck ./... + semgrep: + runs-on: ubuntu-latest + container: + image: returntocorp/semgrep + steps: + - uses: actions/checkout@v4 + - uses: actions/checkout@v4 + with: + repository: dgryski/semgrep-go + path: rules + - name: semgrep + run: semgrep scan --error --enable-nosem -f ./rules . + ruleguard: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/checkout@v4 + with: + repository: dgryski/semgrep-go + path: rules + - uses: actions/setup-go@v5 + with: + go-version: 1.21.5 + - name: setup-ruleguard + run: go install github.com/quasilyte/go-ruleguard/cmd/ruleguard@latest + - name: ruleguard + run: | + mv rules ../ + go get -u github.com/quasilyte/go-ruleguard/dsl@latest + ruleguard -c=0 -rules ../rules/ruleguard.rules.go ./... + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-go@v5 + with: + go-version: 1.21.5 + - uses: arduino/setup-task@v1 + with: + version: 3.x + repo-token: ${{ secrets.GH_TOKEN }} + - name: setup-tparse + run: go install github.com/mfridman/tparse@latest + - name: setup + run: | + task setup + task build + - name: test + run: ./scripts/test.sh + - uses: codecov/codecov-action@v3 + with: + file: ./coverage.txt + token: ${{ secrets.CODECOV_TOKEN }} diff --git a/.github/workflows/gitleaks.yml b/.github/workflows/gitleaks.yml new file mode 100644 index 0000000..c92201e --- /dev/null +++ b/.github/workflows/gitleaks.yml @@ -0,0 +1,23 @@ +name: gitleaks + +on: + push: + branches: ["main"] + tags: ["v*"] + pull_request: + +permissions: + contents: read + +jobs: + gitleaks: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 + - uses: gitleaks/gitleaks-action@v2 + env: + GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} + GITLEAKS_LICENSE: ${{ secrets.GITLEAKS_LICENSE }} + if: ${{ env.GITLEAKS_LICENSE != '' }} diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml new file mode 100644 index 0000000..e346f7f --- /dev/null +++ b/.github/workflows/lint.yml @@ -0,0 +1,31 @@ +name: golangci-lint + +on: + push: + tags: + - v* + branches: + - main + pull_request: + +permissions: + contents: read + +jobs: + golangci: + permissions: + contents: read + pull-requests: read + name: lint + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-go@v5 + with: + go-version: 1.21.5 + cache: true + - name: golangci-lint + uses: golangci/golangci-lint-action@v3 + with: + args: --timeout=5m + version: v1.55.2 diff --git a/.github/workflows/semanticpr.yml b/.github/workflows/semanticpr.yml new file mode 100644 index 0000000..a2a5a54 --- /dev/null +++ b/.github/workflows/semanticpr.yml @@ -0,0 +1,20 @@ +name: "semantic PR" + +on: + pull_request: + types: + - opened + - edited + - synchronize + +permissions: + pull-requests: read + +jobs: + main: + name: validate PR title + runs-on: ubuntu-latest + steps: + - uses: amannn/action-semantic-pull-request@v5 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml new file mode 100644 index 0000000..e8c5faf --- /dev/null +++ b/.github/workflows/stale.yml @@ -0,0 +1,25 @@ +name: "stale issues and PR" +on: + schedule: + - cron: "30 1 * * *" + +permissions: + issues: write + pull-requests: write + +jobs: + stale: + runs-on: ubuntu-latest + steps: + - uses: actions/stale@v9 + with: + stale-issue-message: "This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days." + stale-pr-message: "This PR is stale because it has been open 45 days with no activity. Remove stale label or comment or this will be closed in 10 days." + close-issue-message: "This issue was closed because it has been stalled for 5 days with no activity." + close-pr-message: "This PR was closed because it has been stalled for 10 days with no activity." + days-before-issue-stale: 30 + days-before-pr-stale: 45 + days-before-issue-close: 5 + days-before-pr-close: 10 + stale-issue-label: wontfix + exempt-issue-labels: bug,security,pinned diff --git a/.gitignore b/.gitignore index bbb331b..9290b71 100644 --- a/.gitignore +++ b/.gitignore @@ -349,6 +349,10 @@ dist/ bin/ completions/ manpages/ +.task !log +coverage.json +coverage.txt +sbom-convert **/snapshot diff --git a/.golangci.yaml b/.golangci.yaml index 41b9cbc..76239cf 100644 --- a/.golangci.yaml +++ b/.golangci.yaml @@ -15,12 +15,12 @@ linters-settings: sections: - standard - default - - prefix(github.com/bom-squad/go-cli) + - prefix(github.com/bom-squad/sbom-convert) section-separators: - newLine goimports: - local-prefixes: github.com/bom-squad/go-cli + local-prefixes: github.com/bom-squad/sbom-convert goconst: min-len: 2 min-occurrences: 2 @@ -34,10 +34,10 @@ linters-settings: - condition - return ignored-numbers: - - '0' - - '1' - - '2' - - '3' + - "0" + - "1" + - "2" + - "3" ignored-functions: - strings.SplitN lll: diff --git a/Makefile b/Makefile index fa4f7dd..6de2374 100644 --- a/Makefile +++ b/Makefile @@ -46,4 +46,3 @@ upstream-protobom: ## Upstream protobom library .PHONY: unittest unittest: ## Run unittests go test -count=1 -v ./... - \ No newline at end of file diff --git a/README.md b/README.md index 182ab3d..312188a 100644 --- a/README.md +++ b/README.md @@ -1,41 +1,44 @@ # SBOM Convert CLI -This reporistory contains a command line interface (cli), based on the [protobom](https://github.com/bom-squad/protobom) library, that converts SBOMs across formats (SPDX and CycloneDX). +This reporistory contains a command line interface (cli), based on the [protobom](https://github.com/bom-squad/protobom) library, that converts SBOMs across formats (SPDX and CycloneDX). ## Usage ### Commands + `sbom-convert convert [input] [flags]` `sbom-convert [input] [flags]` ### Input -The `convert` command takes in a single - as of now - json file in either SPDX or CycloneDX format, and outputs an SBOM in a different format. + +The `convert` command takes in a single - as of now - json file in either SPDX or CycloneDX format, and outputs an SBOM in a different format. + - The file must be json - The file must be a valid CycloneDX / SPDX document ### Flags + - `-e`, `--encoding`: (string, optional) The output encoding [spdx: [text, json] cyclonedx: [json] (default "json") - `-f`, `--format`: (string, Required) The output format [spdx, spdx-2.3, cyclonedx, cyclonedx-1.4] - `-h`, `--help`:` help for convert -- `-o`, `--output`: (string, optional) Path to write the converted SBOM. Default: stdout. A user can provide just a string for the filename (e.g "mybom"), which will create a file `mybom.json`. Users can also specify an SPDX tag-value format, e.g. `myBOM.spdx`. +- `-o`, `--output`: (string, optional) Path to write the converted SBOM. Default: stdout. A user can provide just a string for the filename (e.g "mybom"), which will create a file `mybom.json`. Users can also specify an SPDX tag-value format, e.g. `myBOM.spdx`. Global Flags: + - `-c`, `--config`: (string, optional) Path to config file - `-v`, `--verbose`: log verbosity level (-v=info, -vv=debug, -vvv=trace) - ### Examples -`sbom-convert convert sbom.cdx.json` output to stdout in inverse format - -`sbom-convert convert sbom.spdx.json -o sbom.cdx.json` output to a file -`sbom-convert convert sbom.cdx.json -f spdx-2.3` select a specific target format +`sbom-convert convert sbom.cdx.json` output to stdout in inverse format -`sbom-convert convert sbom.cdx.json -f spdx -e text` select specific encoding +`sbom-convert convert sbom.spdx.json -o sbom.cdx.json` output to a file +`sbom-convert convert sbom.cdx.json -f spdx-2.3` select a specific target format +`sbom-convert convert sbom.cdx.json -f spdx -e text` select specific encoding -## Architecture +## Architecture The architecture of the CLI looks more or less like this: @@ -44,7 +47,7 @@ flowchart TB a2-->b2 b2-->c2 b2-->c3 - subgraph "go-cli" + subgraph "sbom-convert" subgraph "End User CLI" a2("internal/cmd") end @@ -56,4 +59,4 @@ flowchart TB c2("writer.Writer")-->c4("writer.Serializer") c3("reader.Reader")-->c5("reader.Unserializer") end -``` \ No newline at end of file +``` diff --git a/Taskfile.yml b/Taskfile.yml new file mode 100644 index 0000000..251d8ad --- /dev/null +++ b/Taskfile.yml @@ -0,0 +1,91 @@ +# https://taskfile.dev + +version: "3" + +env: + GO111MODULE: on + GOPROXY: https://proxy.golang.org,direct + +vars: + DOCKER: '{{default "docker" .DOCKER}}' + +tasks: + setup: + desc: Install dependencies + cmds: + - go mod tidy + + build: + desc: Build the binary + sources: + - ./**/*.go + generates: + - ./bin/sbom-convert + cmds: + - go build + + test: + desc: Run tests + env: + GOARCH: amd64 + GOOS: linux + vars: + TEST_OPTIONS: '{{default "" .TEST_OPTIONS}}' + TEST_SOURCES: '{{default "./..." .TEST_SOURCES}}' + TEST_PATTERN: '{{default "." .TEST_PATTERN}}' + TEST_TAGS: '{{default "unit integration" .TEST_TAGS}}' + cmds: + - go test {{.TEST_OPTIONS}} -failfast -coverpkg=./... -covermode=atomic -tags="{{.TEST_TAGS}}" -coverprofile=coverage.txt -run {{.TEST_PATTERN}} -timeout=10m {{.TEST_SOURCES}} + + unit-test: + desc: Run unit tests + vars: + TEST_OPTIONS: '{{default "" .TEST_OPTIONS}}' + TEST_SOURCES: '{{default "./..." .TEST_SOURCES}}' + TEST_PATTERN: '{{default "." .TEST_PATTERN}}' + TEST_TAGS: '{{default "unit" .TEST_TAGS}}' + TEST_RACE: + sh: "if [[ $CGO_ENABLED = 1 ]]; then echo -race; fi" + cmds: + - go test {{.TEST_OPTIONS}} {{.TEST_RACE}} -tags="{{.TEST_TAGS}}" -run {{.TEST_PATTERN}} -timeout=5m {{.TEST_SOURCES}} + + update-snapshots: + desc: Update snapshots + env: + CGO_ENABLED: 1 + GOARCH: amd64 + GOOS: linux + cmds: + - go test --tags="integration" ./... -update + + cover: + desc: Open the cover tool + cmds: + - go tool cover -html=coverage.txt + + lint: + desc: Lint the code with golangci-lint + cmds: + - golangci-lint run ./... + + ci: + desc: Run all CI steps + cmds: + - task: setup + - task: build + - task: test + + default: + desc: Runs the default tasks + cmds: + - task: ci + + goreleaser: + desc: Run GoReleaser either in snapshot or release mode + deps: + - build + vars: + SNAPSHOT: + sh: 'if [[ $GITHUB_REF != refs/tags/v* ]]; then echo "--snapshot"; fi' + cmds: + - goreleaser release --clean --timeout 60m {{.SNAPSHOT}} diff --git a/cmd/cli/convert.go b/cmd/cli/convert.go index fdd766b..3b0cde2 100644 --- a/cmd/cli/convert.go +++ b/cmd/cli/convert.go @@ -12,9 +12,9 @@ import ( "github.com/spf13/viper" "go.uber.org/zap" - "github.com/bom-squad/go-cli/cmd/cli/options" - "github.com/bom-squad/go-cli/pkg/convert" - "github.com/bom-squad/go-cli/pkg/format" + "github.com/bom-squad/sbom-convert/cmd/cli/options" + "github.com/bom-squad/sbom-convert/pkg/convert" + "github.com/bom-squad/sbom-convert/pkg/format" ) var outputDirPermissions = 0o755 @@ -58,7 +58,7 @@ sbom-convert convert sbom.cdx.json -f spdx -e text select specific en return c } -func validateConvertOptions(co *options.ConvertOptions, args []string) error { +func validateConvertOptions(_ *options.ConvertOptions, _ []string) error { return nil } diff --git a/cmd/cli/options/convert.go b/cmd/cli/options/convert.go index 60a518b..6c7b08c 100644 --- a/cmd/cli/options/convert.go +++ b/cmd/cli/options/convert.go @@ -13,7 +13,7 @@ type ConvertOptions struct { // AddFlags adds command line flags for the ConvertOptions struct func (o *ConvertOptions) AddFlags(cmd *cobra.Command) { - cmd.Flags().StringVarP(&o.Format, "format", "f", "", "the output format [spdx, spdx-2.3, cyclonedx, cyclonedx-1.4]") + cmd.Flags().StringVarP(&o.Format, "format", "f", "", "the output format [spdx, spdx-2.3, cyclonedx, cyclonedx-1.0, cyclonedx-1.1, cyclonedx-1.2, cyclonedx-1.3, cyclonedx-1.4, cyclonedx-1.5]") //nolint: lll cmd.Flags().StringVarP(&o.Encoding, "encoding", "e", "json", "the output encoding [spdx: [text, json] cyclonedx: [json]") cmd.Flags().StringVarP(&o.OutputPath, "output", "o", "", "path to write the converted SBOM") } diff --git a/cmd/cli/root.go b/cmd/cli/root.go index 6704731..b21bbf3 100644 --- a/cmd/cli/root.go +++ b/cmd/cli/root.go @@ -11,8 +11,8 @@ import ( "go.uber.org/zap" "go.uber.org/zap/zapcore" - "github.com/bom-squad/go-cli/cmd/cli/options" - "github.com/bom-squad/go-cli/pkg/log" + "github.com/bom-squad/sbom-convert/cmd/cli/options" + "github.com/bom-squad/sbom-convert/pkg/log" ) var ( diff --git a/config.yaml b/config.yaml index 9a65410..9778070 100644 --- a/config.yaml +++ b/config.yaml @@ -1,3 +1,3 @@ format: spdx -encoding: text +encoding: json verbose: 2 diff --git a/docs/PROJECT_SPEC.md b/docs/PROJECT_SPEC.md index 1d01ad9..c277adc 100644 --- a/docs/PROJECT_SPEC.md +++ b/docs/PROJECT_SPEC.md @@ -1,8 +1,8 @@ -Last updated: 8/15/2023 +Last updated: 8/15/2023 # 🎯 Objective -Collaboratively develop a command line interface (cli) to easily convert between (the most common) SBOM formats, CycloneDX and SPDX. +Collaboratively develop a command line interface (cli) to easily convert between (the most common) SBOM formats, CycloneDX and SPDX. # 🗒️ Primary User Workflows @@ -10,7 +10,7 @@ Collaboratively develop a command line interface (cli) to easily convert between 1. Users can convert SBOMs from SPDX to CycloneDX.* 2. Users can convert SBOMs from CycloneDX to SPDX.* -*this describes the desired user flow. More nuance will have to be considered when it comes to converting between specific SBOM formats. +*this describes the desired user flow. More nuance will have to be considered when it comes to converting between specific SBOM formats. # 🗒️ Requirements & Scope @@ -31,7 +31,7 @@ Inputs - `-e`, `--encoding`: (string) The output encoding [spdx: [text, json] cyclonedx: [json] (default "json")] - `-f`, `--format`: (string) The output format [spdx, spdx-2.3, cyclonedx, cyclonedx-1.4] - `-h`, `--help`:` help for convert -- `-o`, `--output`: (string) Path to write the converted SBOM. Default: stdout. If just a string is provided, the cli will append ".json" by default. Otherwise, users can specify full filenames+extensions, like myBom.spdx. +- `-o`, `--output`: (string) Path to write the converted SBOM. Default: stdout. If just a string is provided, the cli will append ".json" by default. Otherwise, users can specify full filenames+extensions, like myBom.spdx. Global Flags: - `-c`, `--config`: (string) Path to config file @@ -42,14 +42,14 @@ Global Flags: ## Outputs -- An SBOM of the desired format. .json as default, but other formats can be specified. +- An SBOM of the desired format. .json as default, but other formats can be specified. - Written to stdout unless `-o` is specified ### User Interaction ```jsx -sbom-convert input-sbom.json +sbom-convert input-sbom.json sbom-convert -o output-sbom.json -f spdx-3.0 ``` @@ -78,4 +78,4 @@ SPDX 2.2, 2.3+ | | # Out of Scope - Support for SWID format -- Support for XML \ No newline at end of file +- Support for XML diff --git a/go.mod b/go.mod index c800a93..655c289 100644 --- a/go.mod +++ b/go.mod @@ -1,42 +1,45 @@ -module github.com/bom-squad/go-cli +module github.com/bom-squad/sbom-convert -go 1.20 +go 1.21 require ( - github.com/bom-squad/protobom v0.1.1-0.20230806012403-3c13fe356f5d + github.com/bom-squad/protobom v0.2.1-0.20231219021915-5cdfd2b45eda github.com/muesli/mango-cobra v1.2.0 github.com/muesli/roff v0.1.0 - github.com/spf13/cobra v1.7.0 - go.uber.org/zap v1.25.0 + github.com/spf13/cobra v1.8.0 + github.com/spf13/pflag v1.0.5 + github.com/spf13/viper v1.18.2 + go.uber.org/zap v1.26.0 ) require ( - github.com/CycloneDX/cyclonedx-go v0.7.1 // indirect - github.com/anchore/go-struct-converter v0.0.0-20221118182256-c68fdcfa2092 // indirect + github.com/CycloneDX/cyclonedx-go v0.7.2 // indirect + github.com/anchore/go-struct-converter v0.0.0-20230627203149-c72ef8859ca9 // indirect github.com/common-nighthawk/go-figure v0.0.0-20210622060536-734e95fb86be // indirect - github.com/fsnotify/fsnotify v1.6.0 // indirect - github.com/google/go-cmp v0.5.9 // indirect - github.com/google/uuid v1.3.0 // indirect + github.com/fsnotify/fsnotify v1.7.0 // indirect + github.com/google/go-cmp v0.6.0 // indirect + github.com/google/uuid v1.5.0 // indirect github.com/hashicorp/hcl v1.0.0 // indirect github.com/inconshreveable/mousetrap v1.1.0 // indirect github.com/magiconair/properties v1.8.7 // indirect github.com/mitchellh/mapstructure v1.5.0 // indirect github.com/muesli/mango v0.1.0 // indirect github.com/muesli/mango-pflag v0.1.0 // indirect - github.com/pelletier/go-toml/v2 v2.0.8 // indirect + github.com/pelletier/go-toml/v2 v2.1.0 // indirect + github.com/sagikazarmark/locafero v0.4.0 // indirect + github.com/sagikazarmark/slog-shim v0.1.0 // indirect github.com/sirupsen/logrus v1.9.3 // indirect + github.com/sourcegraph/conc v0.3.0 // indirect github.com/spdx/tools-golang v0.5.3 // indirect - github.com/spf13/afero v1.9.5 // indirect - github.com/spf13/cast v1.5.1 // indirect - github.com/spf13/jwalterweatherman v1.1.0 // indirect - github.com/spf13/pflag v1.0.5 - github.com/spf13/viper v1.16.0 - github.com/subosito/gotenv v1.4.2 // indirect + github.com/spf13/afero v1.11.0 // indirect + github.com/spf13/cast v1.6.0 // indirect + github.com/subosito/gotenv v1.6.0 // indirect go.uber.org/multierr v1.10.0 // indirect - golang.org/x/sys v0.8.0 // indirect - golang.org/x/text v0.9.0 // indirect + golang.org/x/exp v0.0.0-20230905200255-921286631fa9 // indirect + golang.org/x/sys v0.15.0 // indirect + golang.org/x/text v0.14.0 // indirect google.golang.org/protobuf v1.31.0 // indirect gopkg.in/ini.v1 v1.67.0 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect - sigs.k8s.io/release-utils v0.7.4 // indirect + sigs.k8s.io/release-utils v0.7.7 // indirect ) diff --git a/go.sum b/go.sum index 2b43ffb..10a0858 100644 --- a/go.sum +++ b/go.sum @@ -1,154 +1,38 @@ -cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= -cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= -cloud.google.com/go v0.38.0/go.mod h1:990N+gfupTy94rShfmMCWGDn0LpTmnzTp2qbd1dvSRU= -cloud.google.com/go v0.44.1/go.mod h1:iSa0KzasP4Uvy3f1mN/7PiObzGgflwredwwASm/v6AU= -cloud.google.com/go v0.44.2/go.mod h1:60680Gw3Yr4ikxnPRS/oxxkBccT6SA1yMk63TGekxKY= -cloud.google.com/go v0.44.3/go.mod h1:60680Gw3Yr4ikxnPRS/oxxkBccT6SA1yMk63TGekxKY= -cloud.google.com/go v0.45.1/go.mod h1:RpBamKRgapWJb87xiFSdk4g1CME7QZg3uwTez+TSTjc= -cloud.google.com/go v0.46.3/go.mod h1:a6bKKbmY7er1mI7TEI4lsAkts/mkhTSZK8w33B4RAg0= -cloud.google.com/go v0.50.0/go.mod h1:r9sluTvynVuxRIOHXQEHMFffphuXHOMZMycpNR5e6To= -cloud.google.com/go v0.52.0/go.mod h1:pXajvRH/6o3+F9jDHZWQ5PbGhn+o8w9qiu/CffaVdO4= -cloud.google.com/go v0.53.0/go.mod h1:fp/UouUEsRkN6ryDKNW/Upv/JBKnv6WDthjR6+vze6M= -cloud.google.com/go v0.54.0/go.mod h1:1rq2OEkV3YMf6n/9ZvGWI3GWw0VoqH/1x2nd8Is/bPc= -cloud.google.com/go v0.56.0/go.mod h1:jr7tqZxxKOVYizybht9+26Z/gUq7tiRzu+ACVAMbKVk= -cloud.google.com/go v0.57.0/go.mod h1:oXiQ6Rzq3RAkkY7N6t3TcE6jE+CIBBbA36lwQ1JyzZs= -cloud.google.com/go v0.62.0/go.mod h1:jmCYTdRCQuc1PHIIJ/maLInMho30T/Y0M4hTdTShOYc= -cloud.google.com/go v0.65.0/go.mod h1:O5N8zS7uWy9vkA9vayVHs65eM1ubvY4h553ofrNHObY= -cloud.google.com/go v0.72.0/go.mod h1:M+5Vjvlc2wnp6tjzE102Dw08nGShTscUx2nZMufOKPI= -cloud.google.com/go v0.74.0/go.mod h1:VV1xSbzvo+9QJOxLDaJfTjx5e+MePCpCWwvftOeQmWk= -cloud.google.com/go v0.75.0/go.mod h1:VGuuCn7PG0dwsd5XPVm2Mm3wlh3EL55/79EKB6hlPTY= -cloud.google.com/go/bigquery v1.0.1/go.mod h1:i/xbL2UlR5RvWAURpBYZTtm/cXjCha9lbfbpx4poX+o= -cloud.google.com/go/bigquery v1.3.0/go.mod h1:PjpwJnslEMmckchkHFfq+HTD2DmtT67aNFKH1/VBDHE= -cloud.google.com/go/bigquery v1.4.0/go.mod h1:S8dzgnTigyfTmLBfrtrhyYhwRxG72rYxvftPBK2Dvzc= -cloud.google.com/go/bigquery v1.5.0/go.mod h1:snEHRnqQbz117VIFhE8bmtwIDY80NLUZUMb4Nv6dBIg= -cloud.google.com/go/bigquery v1.7.0/go.mod h1://okPTzCYNXSlb24MZs83e2Do+h+VXtc4gLoIoXIAPc= -cloud.google.com/go/bigquery v1.8.0/go.mod h1:J5hqkt3O0uAFnINi6JXValWIb1v0goeZM77hZzJN/fQ= -cloud.google.com/go/datastore v1.0.0/go.mod h1:LXYbyblFSglQ5pkeyhO+Qmw7ukd3C+pD7TKLgZqpHYE= -cloud.google.com/go/datastore v1.1.0/go.mod h1:umbIZjpQpHh4hmRpGhH4tLFup+FVzqBi1b3c64qFpCk= -cloud.google.com/go/pubsub v1.0.1/go.mod h1:R0Gpsv3s54REJCy4fxDixWD93lHJMoZTyQ2kNxGRt3I= -cloud.google.com/go/pubsub v1.1.0/go.mod h1:EwwdRX2sKPjnvnqCa270oGRyludottCI76h+R3AArQw= -cloud.google.com/go/pubsub v1.2.0/go.mod h1:jhfEVHT8odbXTkndysNHCcx0awwzvfOlguIAii9o8iA= -cloud.google.com/go/pubsub v1.3.1/go.mod h1:i+ucay31+CNRpDW4Lu78I4xXG+O1r/MAHgjpRVR+TSU= -cloud.google.com/go/storage v1.0.0/go.mod h1:IhtSnM/ZTZV8YYJWCY8RULGVqBDmpoyjwiyrjsg+URw= -cloud.google.com/go/storage v1.5.0/go.mod h1:tpKbwo567HUNpVclU5sGELwQWBDZ8gh0ZeosJ0Rtdos= -cloud.google.com/go/storage v1.6.0/go.mod h1:N7U0C8pVQ/+NIKOBQyamJIeKQKkZ+mxpohlUTyfDhBk= -cloud.google.com/go/storage v1.8.0/go.mod h1:Wv1Oy7z6Yz3DshWRJFhqM/UCfaWIRTdp0RXyy7KQOVs= -cloud.google.com/go/storage v1.10.0/go.mod h1:FLPqc6j+Ki4BU591ie1oL6qBQGu2Bl/tZ9ullr3+Kg0= -cloud.google.com/go/storage v1.14.0/go.mod h1:GrKmX003DSIwi9o29oFT7YDnHYwZoctc3fOKtUw0Xmo= -dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU= -github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= -github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo= -github.com/CycloneDX/cyclonedx-go v0.7.1 h1:5w1SxjGm9MTMNTuRbEPyw21ObdbaagTWF/KfF0qHTRE= -github.com/CycloneDX/cyclonedx-go v0.7.1/go.mod h1:N/nrdWQI2SIjaACyyDs/u7+ddCkyl/zkNs8xFsHF2Ps= -github.com/anchore/go-struct-converter v0.0.0-20221118182256-c68fdcfa2092 h1:aM1rlcoLz8y5B2r4tTLMiVTrMtpfY0O8EScKJxaSaEc= +github.com/CycloneDX/cyclonedx-go v0.7.2 h1:kKQ0t1dPOlugSIYVOMiMtFqeXI2wp/f5DBIdfux8gnQ= +github.com/CycloneDX/cyclonedx-go v0.7.2/go.mod h1:K2bA+324+Og0X84fA8HhN2X066K7Bxz4rpMQ4ZhjtSk= github.com/anchore/go-struct-converter v0.0.0-20221118182256-c68fdcfa2092/go.mod h1:rYqSE9HbjzpHTI74vwPvae4ZVYZd1lue2ta6xHPdblA= -github.com/benbjohnson/clock v1.3.0 h1:ip6w0uFQkncKQ979AypyG0ER7mqUSBdKLOgAle/AT8A= -github.com/bom-squad/protobom v0.1.1-0.20230806012403-3c13fe356f5d h1:0nQ3aXcKrnA0abjDjeikQgEeIFK/155h+EnGLROcXNM= -github.com/bom-squad/protobom v0.1.1-0.20230806012403-3c13fe356f5d/go.mod h1:a85o8s0U3d6BJclv6yF71AxS/2vHi7erIRNPRv0Gxd4= +github.com/anchore/go-struct-converter v0.0.0-20230627203149-c72ef8859ca9 h1:6COpXWpHbhWM1wgcQN95TdsmrLTba8KQfPgImBXzkjA= +github.com/anchore/go-struct-converter v0.0.0-20230627203149-c72ef8859ca9/go.mod h1:rYqSE9HbjzpHTI74vwPvae4ZVYZd1lue2ta6xHPdblA= +github.com/bom-squad/protobom v0.2.1-0.20231219021915-5cdfd2b45eda h1:rxoym25qjxUznQh9/GF0T2sfa21RQlk8N1UUp89AAo4= +github.com/bom-squad/protobom v0.2.1-0.20231219021915-5cdfd2b45eda/go.mod h1:dkEoMOgkuACgmhHgoCkpViNWgXmYsDmD6Hl/oZk5rkM= github.com/bradleyjkemp/cupaloy/v2 v2.8.0 h1:any4BmKE+jGIaMpnU8YgH/I2LPiLBufr6oMMlVBbn9M= -github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= -github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI= -github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI= -github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU= -github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= -github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc= -github.com/cncf/udpa/go v0.0.0-20200629203442-efcf912fb354/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk= -github.com/cncf/udpa/go v0.0.0-20201120205902-5459f2c99403/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk= +github.com/bradleyjkemp/cupaloy/v2 v2.8.0/go.mod h1:bm7JXdkRd4BHJk9HpwqAI8BoAY1lps46Enkdqw6aRX0= github.com/common-nighthawk/go-figure v0.0.0-20210622060536-734e95fb86be h1:J5BL2kskAlV9ckgEsNQXscjIaLiOYiZ75d4e94E6dcQ= github.com/common-nighthawk/go-figure v0.0.0-20210622060536-734e95fb86be/go.mod h1:mk5IQ+Y0ZeO87b858TlA645sVcEcbiX6YqP98kt+7+w= -github.com/cpuguy83/go-md2man/v2 v2.0.2/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o= +github.com/cpuguy83/go-md2man/v2 v2.0.3/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= -github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= -github.com/envoyproxy/go-control-plane v0.9.0/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= -github.com/envoyproxy/go-control-plane v0.9.1-0.20191026205805-5f8ba28d4473/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= -github.com/envoyproxy/go-control-plane v0.9.4/go.mod h1:6rpuAdCZL397s3pYoYcLgu1mIlRU8Am5FuJP05cCM98= -github.com/envoyproxy/go-control-plane v0.9.7/go.mod h1:cwu0lG7PUMfa9snN8LXBig5ynNVH9qI8YYLbd1fK2po= -github.com/envoyproxy/go-control-plane v0.9.9-0.20201210154907-fd9021fe5dad/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk= -github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c= -github.com/frankban/quicktest v1.14.4 h1:g2rn0vABPOOXmZUj+vbmUp0lPoXEMuhTpIluN0XL9UY= -github.com/fsnotify/fsnotify v1.6.0 h1:n+5WquG0fcWoWp6xPWfHdbskMCQaFnG6PfBrh1Ky4HY= -github.com/fsnotify/fsnotify v1.6.0/go.mod h1:sl3t1tCWJFWoRz9R8WJCbQihKKwmorjAbSClcnxKAGw= -github.com/go-gl/glfw v0.0.0-20190409004039-e6da0acd62b1/go.mod h1:vR7hzQXu2zJy9AVAgeJqvqgH9Q5CA+iKCZ2gyEVpxRU= -github.com/go-gl/glfw/v3.3/glfw v0.0.0-20191125211704-12ad95a8df72/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= -github.com/go-gl/glfw/v3.3/glfw v0.0.0-20200222043503-6f7a984d4dc4/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= -github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= -github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= -github.com/golang/groupcache v0.0.0-20191227052852-215e87163ea7/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= -github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= -github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= -github.com/golang/mock v1.2.0/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= -github.com/golang/mock v1.3.1/go.mod h1:sBzyDLLjw3U8JLTeZvSv8jJB+tU5PVekmnlKIyFUx0Y= -github.com/golang/mock v1.4.0/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= -github.com/golang/mock v1.4.1/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= -github.com/golang/mock v1.4.3/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= -github.com/golang/mock v1.4.4/go.mod h1:l3mdAwkq5BuhzHwde/uurv3sEJeZMXNpwsxVWU71h+4= -github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= -github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= -github.com/golang/protobuf v1.3.2/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= -github.com/golang/protobuf v1.3.3/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw= -github.com/golang/protobuf v1.3.4/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw= -github.com/golang/protobuf v1.3.5/go.mod h1:6O5/vntMXwX2lRkT1hjjk0nAC1IDOTvTlVgjlRvqsdk= -github.com/golang/protobuf v1.4.0-rc.1/go.mod h1:ceaxUfeHdC40wWswd/P6IGgMaK3YpKi5j83Wpe3EHw8= -github.com/golang/protobuf v1.4.0-rc.1.0.20200221234624-67d41d38c208/go.mod h1:xKAWHe0F5eneWXFV3EuXVDTCmh+JuBKY0li0aMyXATA= -github.com/golang/protobuf v1.4.0-rc.2/go.mod h1:LlEzMj4AhA7rCAGe4KMBDvJI+AwstrUpVNzEA03Pprs= -github.com/golang/protobuf v1.4.0-rc.4.0.20200313231945-b860323f09d0/go.mod h1:WU3c8KckQ9AFe+yFwt9sWVRKCVIyN9cPHBJSNnbL67w= -github.com/golang/protobuf v1.4.0/go.mod h1:jodUvKwWbYaEsadDk5Fwe5c77LiNKVO9IDvqG2KuDX0= -github.com/golang/protobuf v1.4.1/go.mod h1:U8fpvMrcmy5pZrNK1lt4xCsGvpyWQ/VVv6QDs8UjoX8= -github.com/golang/protobuf v1.4.2/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= -github.com/golang/protobuf v1.4.3/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= +github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc h1:U9qPSI2PIWSS1VwoXQT9A3Wy9MM3WgvqSxFWenqJduM= +github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/frankban/quicktest v1.14.6 h1:7Xjx+VpznH+oBnejlPUj8oUpdxnVs4f8XU8WnHkI4W8= +github.com/frankban/quicktest v1.14.6/go.mod h1:4ptaffx2x8+WTWXmUCuVU6aPUX1/Mz7zb5vbUoiM6w0= +github.com/fsnotify/fsnotify v1.7.0 h1:8JEhPFa5W2WU7YfeZzPNqzMP6Lwt7L2715Ggo0nosvA= +github.com/fsnotify/fsnotify v1.7.0/go.mod h1:40Bi/Hjc2AVfZrqy+aj+yEI+/bRxZnMJyTJwOpGvigM= github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk= -github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= -github.com/google/btree v1.0.0/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= -github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= -github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= -github.com/google/go-cmp v0.3.1/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= -github.com/google/go-cmp v0.4.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.4.1/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.5.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.5.1/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.5.2/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.5.4/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38= github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= -github.com/google/martian v2.1.0+incompatible/go.mod h1:9I4somxYTbIHy5NJKHRl3wXiIaQGbYVAs8BPL6v8lEs= -github.com/google/martian/v3 v3.0.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0= -github.com/google/martian/v3 v3.1.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0= -github.com/google/pprof v0.0.0-20181206194817-3ea8567a2e57/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= -github.com/google/pprof v0.0.0-20190515194954-54271f7e092f/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= -github.com/google/pprof v0.0.0-20191218002539-d4f498aebedc/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= -github.com/google/pprof v0.0.0-20200212024743-f11f1df84d12/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= -github.com/google/pprof v0.0.0-20200229191704-1ebb73c60ed3/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= -github.com/google/pprof v0.0.0-20200430221834-fc25d7d30c6d/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= -github.com/google/pprof v0.0.0-20200708004538-1a94d8640e99/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= -github.com/google/pprof v0.0.0-20201023163331-3e6fc7fc9c4c/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20201203190320-1bf35d6f28c2/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20201218002935-b9804c9f04c2/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI= -github.com/google/uuid v1.1.2/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= -github.com/google/uuid v1.3.0 h1:t6JiXgmwXMjEs8VusXIJk2BXHsn+wx8BZdTaoZ5fu7I= -github.com/google/uuid v1.3.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= -github.com/googleapis/gax-go/v2 v2.0.4/go.mod h1:0Wqv26UfaUD9n4G6kQubkQ+KchISgw+vpHVxEJEs9eg= -github.com/googleapis/gax-go/v2 v2.0.5/go.mod h1:DWXyrwAJ9X0FpwwEdw+IPEYBICEFu5mhpdKc/us6bOk= -github.com/googleapis/google-cloud-go-testing v0.0.0-20200911160855-bcd43fbb19e8/go.mod h1:dvDLG8qkwmyD9a/MJJN3XJcT3xFxOKAvTZGvuZmac9g= -github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= -github.com/hashicorp/golang-lru v0.5.1/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= +github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI= +github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= +github.com/google/uuid v1.5.0 h1:1p67kYwdtXjb0gL0BPiP1Av9wiZPo5A8z2cWkTZ+eyU= +github.com/google/uuid v1.5.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/hashicorp/hcl v1.0.0 h1:0Anlzjpi4vEasTeNFn2mLJgTSwt0+6sfsiTG8qcWGx4= github.com/hashicorp/hcl v1.0.0/go.mod h1:E5yfLk+7swimpb2L/Alb/PJmXilQ/rhwaUYs4T20WEQ= -github.com/ianlancetaylor/demangle v0.0.0-20181102032728-5e5cf60278f6/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= -github.com/ianlancetaylor/demangle v0.0.0-20200824232613-28f6c0f3b639/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= github.com/inconshreveable/mousetrap v1.1.0 h1:wN+x4NVGpMsO7ErUn/mUI3vEoE6Jt13X2s0bqwp9tc8= github.com/inconshreveable/mousetrap v1.1.0/go.mod h1:vpF70FUmC8bwa3OWnCshd2FqLfsEA9PFc4w1p2J65bw= -github.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024/go.mod h1:6v2b51hI/fHJwM22ozAgKL4VKDeJcHhJFhtBdhmNjmU= -github.com/jstemmer/go-junit-report v0.9.1/go.mod h1:Brl9GWCQeLvo8nXZwPNNblvFj/XSXhF0NWZEnDohbsk= -github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= -github.com/kr/fs v0.1.0/go.mod h1:FFnZGqtBN9Gxj7eW1uZ42v5BccTP0vu6NEaFoC2HwRg= -github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE= -github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= -github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= +github.com/kr/pretty v0.3.1/go.mod h1:hoEshYVHaxMs3cyo3Yncou5ZscifuDolrwPKZanG3xk= github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= +github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= github.com/magiconair/properties v1.8.7 h1:IeQXZAiQcpL9mgcAe1Nu6cX9LLw6ExEHKjN0VQdvPDY= github.com/magiconair/properties v1.8.7/go.mod h1:Dhd985XPs7jluiymwWYZ0G4Z61jb3vdS329zhj2hYo0= github.com/mitchellh/mapstructure v1.5.0 h1:jeMsZIYE/09sWLaz43PL7Gy6RuMjD2eJVyuac5Z2hdY= @@ -161,369 +45,79 @@ github.com/muesli/mango-pflag v0.1.0 h1:UADqbYgpUyRoBja3g6LUL+3LErjpsOwaC9ywvBWe github.com/muesli/mango-pflag v0.1.0/go.mod h1:YEQomTxaCUp8PrbhFh10UfbhbQrM/xJ4i2PB8VTLLW0= github.com/muesli/roff v0.1.0 h1:YD0lalCotmYuF5HhZliKWlIx7IEhiXeSfq7hNjFqGF8= github.com/muesli/roff v0.1.0/go.mod h1:pjAHQM9hdUUwm/krAfrLGgJkXJ+YuhtsfZ42kieB2Ig= -github.com/pelletier/go-toml/v2 v2.0.8 h1:0ctb6s9mE31h0/lhu+J6OPmVeDxJn+kYnJc2jZR9tGQ= -github.com/pelletier/go-toml/v2 v2.0.8/go.mod h1:vuYfssBdrU2XDZ9bYydBu6t+6a6PYNcZljzZR9VXg+4= -github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= -github.com/pkg/sftp v1.13.1/go.mod h1:3HaPG6Dq1ILlpPZRO0HVMrsydcdLt6HRDccSgb87qRg= -github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= +github.com/pelletier/go-toml/v2 v2.1.0 h1:FnwAJ4oYMvbT/34k9zzHuZNrhlz48GB3/s6at6/MHO4= +github.com/pelletier/go-toml/v2 v2.1.0/go.mod h1:tJU2Z3ZkXwnxa4DPO899bsyIoywizdUvyaeZurnPPDc= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= -github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= +github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 h1:Jamvg5psRIccs7FGNTlIRMkT8wgtp5eCXdBlqhYGL6U= +github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/rogpeppe/go-internal v1.11.0 h1:cWPaGQEPrBb5/AsnsZesgZZ9yb1OQ+GOISoDNXVBh4M= +github.com/rogpeppe/go-internal v1.11.0/go.mod h1:ddIwULY96R17DhadqLgMfk9H9tvdUzkipdSkR5nkCZA= github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= +github.com/sagikazarmark/locafero v0.4.0 h1:HApY1R9zGo4DBgr7dqsTH/JJxLTTsOt7u6keLGt6kNQ= +github.com/sagikazarmark/locafero v0.4.0/go.mod h1:Pe1W6UlPYUk/+wc/6KFhbORCfqzgYEpgQ3O5fPuL3H4= +github.com/sagikazarmark/slog-shim v0.1.0 h1:diDBnUNK9N/354PgrxMywXnAwEr1QZcOr6gto+ugjYE= +github.com/sagikazarmark/slog-shim v0.1.0/go.mod h1:SrcSrq8aKtyuqEI1uvTDTK1arOWRIczQRv+GVI1AkeQ= github.com/sirupsen/logrus v1.9.3 h1:dueUQJ1C2q9oE3F7wvmSGAaVtTmUizReu6fjN8uqzbQ= github.com/sirupsen/logrus v1.9.3/go.mod h1:naHLuLoDiP4jHNo9R0sCBMtWGeIprob74mVsIT4qYEQ= +github.com/sourcegraph/conc v0.3.0 h1:OQTbbt6P72L20UqAkXXuLOj79LfEanQ+YQFNpLA9ySo= +github.com/sourcegraph/conc v0.3.0/go.mod h1:Sdozi7LEKbFPqYX2/J+iBAM6HpqSLTASQIKqDmF7Mt0= github.com/spdx/gordf v0.0.0-20201111095634-7098f93598fb/go.mod h1:uKWaldnbMnjsSAXRurWqqrdyZen1R7kxl8TkmWk2OyM= github.com/spdx/tools-golang v0.5.3 h1:ialnHeEYUC4+hkm5vJm4qz2x+oEJbS0mAMFrNXdQraY= github.com/spdx/tools-golang v0.5.3/go.mod h1:/ETOahiAo96Ob0/RAIBmFZw6XN0yTnyr/uFZm2NTMhI= -github.com/spf13/afero v1.9.5 h1:stMpOSZFs//0Lv29HduCmli3GUfpFoF3Y1Q/aXj/wVM= -github.com/spf13/afero v1.9.5/go.mod h1:UBogFpq8E9Hx+xc5CNTTEpTnuHVmXDwZcZcE1eb/UhQ= -github.com/spf13/cast v1.5.1 h1:R+kOtfhWQE6TVQzY+4D7wJLBgkdVasCEFxSUBYBYIlA= -github.com/spf13/cast v1.5.1/go.mod h1:b9PdjNptOpzXr7Rq1q9gJML/2cdGQAo69NKzQ10KN48= -github.com/spf13/cobra v1.7.0 h1:hyqWnYt1ZQShIddO5kBpj3vu05/++x6tJ6dg8EC572I= -github.com/spf13/cobra v1.7.0/go.mod h1:uLxZILRyS/50WlhOIKD7W6V5bgeIt+4sICxh6uRMrb0= -github.com/spf13/jwalterweatherman v1.1.0 h1:ue6voC5bR5F8YxI5S67j9i582FU4Qvo2bmqnqMYADFk= -github.com/spf13/jwalterweatherman v1.1.0/go.mod h1:aNWZUN0dPAAO/Ljvb5BEdw96iTZ0EXowPYD95IqWIGo= +github.com/spf13/afero v1.11.0 h1:WJQKhtpdm3v2IzqG8VMqrr6Rf3UYpEF239Jy9wNepM8= +github.com/spf13/afero v1.11.0/go.mod h1:GH9Y3pIexgf1MTIWtNGyogA5MwRIDXGUr+hbWNoBjkY= +github.com/spf13/cast v1.6.0 h1:GEiTHELF+vaR5dhz3VqZfFSzZjYbgeKDpBxQVS4GYJ0= +github.com/spf13/cast v1.6.0/go.mod h1:ancEpBxwJDODSW/UG4rDrAqiKolqNNh2DX3mk86cAdo= +github.com/spf13/cobra v1.8.0 h1:7aJaZx1B85qltLMc546zn58BxxfZdR/W22ej9CFoEf0= +github.com/spf13/cobra v1.8.0/go.mod h1:WXLWApfZ71AjXPya3WOlMsY9yMs7YeiHhFVlvLyhcho= github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA= github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg= -github.com/spf13/viper v1.16.0 h1:rGGH0XDZhdUOryiDWjmIvUSWpbNqisK8Wk0Vyefw8hc= -github.com/spf13/viper v1.16.0/go.mod h1:yg78JgCJcbrQOvV9YLXgkLaZqUidkY9K+Dd1FofRzQg= +github.com/spf13/viper v1.18.2 h1:LUXCnvUvSM6FXAsj6nnfc8Q2tp1dIgUfY9Kc8GsSOiQ= +github.com/spf13/viper v1.18.2/go.mod h1:EKmWIqdnk5lOcmR72yw6hS+8OPYcwD0jteitLMVB+yk= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw= github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo= -github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= -github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4= -github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5cxcmMvtA= github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU= -github.com/stretchr/testify v1.8.3/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo= github.com/stretchr/testify v1.8.4 h1:CcVxjf3Q8PM0mHUKJCdn+eZZtm5yQwehR5yeSVQQcUk= github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo= -github.com/subosito/gotenv v1.4.2 h1:X1TuBLAMDFbaTAChgCBLu3DU3UPyELpnF2jjJ2cz/S8= -github.com/subosito/gotenv v1.4.2/go.mod h1:ayKnFf/c6rvx/2iiLrJUk1e6plDbT3edrFNGqEflhK0= -github.com/yuin/goldmark v1.1.25/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -github.com/yuin/goldmark v1.1.32/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU= -go.opencensus.io v0.22.0/go.mod h1:+kGneAE2xo2IficOXnaByMWTGM9T73dGwxeWcUqIpI8= -go.opencensus.io v0.22.2/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= -go.opencensus.io v0.22.3/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= -go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= -go.opencensus.io v0.22.5/go.mod h1:5pWMHQbX5EPX2/62yrJeAkowc+lfs/XD7Uxpq3pI6kk= +github.com/subosito/gotenv v1.6.0 h1:9NlTDc1FTs4qu0DDq7AEtTPNw6SVm7uBMsUCUjABIf8= +github.com/subosito/gotenv v1.6.0/go.mod h1:Dk4QP5c2W3ibzajGcXpNraDfq2IrhjMIvMSWPKKo0FU= +github.com/terminalstatic/go-xsd-validate v0.1.5 h1:RqpJnf6HGE2CB/lZB1A8BYguk8uRtcvYAPLCF15qguo= +github.com/terminalstatic/go-xsd-validate v0.1.5/go.mod h1:18lsvYFofBflqCrvo1umpABZ99+GneNTw2kEEc8UPJw= +github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f h1:J9EGpcZtP0E/raorCMxlFGSTBrsSlaDGf3jU/qvAE2c= +github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f/go.mod h1:N2zxlSyiKSe5eX1tZViRH5QA0qijqEDrYZiPEAiq3wU= +github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 h1:EzJWgHovont7NscjpAxXsDA8S8BMYve8Y5+7cuRE7R0= +github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415/go.mod h1:GwrjFmJcFw6At/Gs6z4yjiIwzuJ1/+UwLxMQDVQXShQ= +github.com/xeipuuv/gojsonschema v1.2.0 h1:LhYJRs+L4fBtjZUfuSZIKGeVu0QRy8e5Xi7D17UxZ74= +github.com/xeipuuv/gojsonschema v1.2.0/go.mod h1:anYRn/JVcOK2ZgGU+IjEV4nwlhoK5sQluxsYJ78Id3Y= go.uber.org/goleak v1.2.0 h1:xqgm/S+aQvhWFTtR0XK3Jvg7z8kGV8P4X14IzwN3Eqk= +go.uber.org/goleak v1.2.0/go.mod h1:XJYK+MuIchqpmGmUSAzotztawfKvYLUIgg7guXrwVUo= go.uber.org/multierr v1.10.0 h1:S0h4aNzvfcFsC3dRF1jLoaov7oRaKqRGC/pUEJ2yvPQ= go.uber.org/multierr v1.10.0/go.mod h1:20+QtiLqy0Nd6FdQB9TLXag12DsQkrbs3htMFfDN80Y= -go.uber.org/zap v1.25.0 h1:4Hvk6GtkucQ790dqmj7l1eEnRdKm3k3ZUrUMS2d5+5c= -go.uber.org/zap v1.25.0/go.mod h1:JIAUzQIH94IC4fOJQm7gMmBJP5k7wQfdcnYdPoEXJYk= -golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= -golang.org/x/crypto v0.0.0-20190510104115-cbcb75029529/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= -golang.org/x/crypto v0.0.0-20190605123033-f99c8df09eb5/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= -golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= -golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= -golang.org/x/crypto v0.0.0-20210421170649-83a5a9bb288b/go.mod h1:T9bdIzuCu7OtxOm1hfPfRQxPLYneinmdGuTeoZ9dtd4= -golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= -golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= -golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= -golang.org/x/exp v0.0.0-20190510132918-efd6b22b2522/go.mod h1:ZjyILWgesfNpC6sMxTJOJm9Kp84zZh5NQWvqDGG3Qr8= -golang.org/x/exp v0.0.0-20190829153037-c13cbed26979/go.mod h1:86+5VVa7VpoJ4kLfm080zCjGlMRFzhUhsZKEZO7MGek= -golang.org/x/exp v0.0.0-20191030013958-a1ab85dbe136/go.mod h1:JXzH8nQsPlswgeRAPE3MuO9GYsAcnJvJ4vnMwN/5qkY= -golang.org/x/exp v0.0.0-20191129062945-2f5052295587/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= -golang.org/x/exp v0.0.0-20191227195350-da58074b4299/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= -golang.org/x/exp v0.0.0-20200119233911-0405dc783f0a/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= -golang.org/x/exp v0.0.0-20200207192155-f17229e696bd/go.mod h1:J/WKrq2StrnmMY6+EHIKF9dgMWnmCNThgcyBT1FY9mM= -golang.org/x/exp v0.0.0-20200224162631-6cc2880d07d6/go.mod h1:3jZMyOhIsHpP37uCMkUooju7aAi5cS1Q23tOzKc+0MU= -golang.org/x/image v0.0.0-20190227222117-0694c2d4d067/go.mod h1:kZ7UVZpmo3dzQBMxlp+ypCbDeSB+sBbTgSJuh5dn5js= -golang.org/x/image v0.0.0-20190802002840-cff245a6509b/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= -golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= -golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU= -golang.org/x/lint v0.0.0-20190301231843-5614ed5bae6f/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= -golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= -golang.org/x/lint v0.0.0-20190409202823-959b441ac422/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= -golang.org/x/lint v0.0.0-20190909230951-414d861bb4ac/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= -golang.org/x/lint v0.0.0-20190930215403-16217165b5de/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= -golang.org/x/lint v0.0.0-20191125180803-fdd1cda4f05f/go.mod h1:5qLYkcX4OjUUV8bRuDixDT3tpyyb+LUpUlRWLxfhWrs= -golang.org/x/lint v0.0.0-20200130185559-910be7a94367/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= -golang.org/x/lint v0.0.0-20200302205851-738671d3881b/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= -golang.org/x/lint v0.0.0-20201208152925-83fdc39ff7b5/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= -golang.org/x/mobile v0.0.0-20190312151609-d3739f865fa6/go.mod h1:z+o9i4GpDbdi3rU15maQ/Ox0txvL9dWGYEHz965HBQE= -golang.org/x/mobile v0.0.0-20190719004257-d2bd2a29d028/go.mod h1:E/iHnbuqvinMTCcRqshq8CkpyQDoeVncDDYHnLhea+o= -golang.org/x/mod v0.0.0-20190513183733-4bf6d317e70e/go.mod h1:mXi4GBBbnImb6dmsKGUJ2LatrhH/nqhxcFungHvyanc= -golang.org/x/mod v0.1.0/go.mod h1:0QHyrYULN0/3qlju5TqG8bIK38QM8yzMo5ekMj3DlcY= -golang.org/x/mod v0.1.1-0.20191105210325-c90efee705ee/go.mod h1:QqPTAvyqsEbceGzBzNggFXnrqF1CaUcvgkdR5Ot7KZg= -golang.org/x/mod v0.1.1-0.20191107180719-034126e5016b/go.mod h1:QqPTAvyqsEbceGzBzNggFXnrqF1CaUcvgkdR5Ot7KZg= -golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= -golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= -golang.org/x/mod v0.4.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= -golang.org/x/mod v0.4.1/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= -golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/net v0.0.0-20190501004415-9ce7a6920f09/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/net v0.0.0-20190503192946-f4e77d36d62c/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/net v0.0.0-20190603091049-60506f45cf65/go.mod h1:HSz+uSET+XFnRR8LxR5pz3Of3rY3CfYBVs4xY44aLks= -golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20190628185345-da137c7871d7/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20190724013045-ca1201d0de80/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20191209160850-c0dbc17a3553/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20200114155413-6afb5195e5aa/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20200202094626-16171245cfb2/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20200222125558-5a598a2470a0/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20200301022130-244492dfa37a/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20200324143707-d3edc9973b7e/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= -golang.org/x/net v0.0.0-20200501053045-e0ff5e5a1de5/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= -golang.org/x/net v0.0.0-20200506145744-7e3656a0809f/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= -golang.org/x/net v0.0.0-20200513185701-a91f0712d120/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= -golang.org/x/net v0.0.0-20200520182314-0ba52f642ac2/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= -golang.org/x/net v0.0.0-20200625001655-4c5254603344/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= -golang.org/x/net v0.0.0-20200707034311-ab3426394381/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= -golang.org/x/net v0.0.0-20200822124328-c89045814202/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= -golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= -golang.org/x/net v0.0.0-20201031054903-ff519b6c9102/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= -golang.org/x/net v0.0.0-20201209123823-ac852fbbde11/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= -golang.org/x/net v0.0.0-20201224014010-6772e930b67b/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= -golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= -golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= -golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= -golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= -golang.org/x/oauth2 v0.0.0-20191202225959-858c2ad4c8b6/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= -golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= -golang.org/x/oauth2 v0.0.0-20200902213428-5d25da1a8d43/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20201109201403-9fd604954f58/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20201208152858-08078c50e5b5/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210218202405-ba52d332ba99/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20190227155943-e225da77a7e6/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20200317015054-43a5402ce75a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20201207232520-09787c993a3a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20190312061237-fead79001313/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190502145724-3ef323f4f1fd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190507160741-ecd444e8653b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190606165138-5da285871e9c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190624142023-c5567b49c5d0/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190726091711-fc99dfbffb4e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191001151750-bb3f8db39f24/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191204072324-ce4227a45e2e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191228213918-04cbcbbfeed8/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200113162924-86b910548bc1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200122134326-e047566fdf82/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200202164722-d101bd2416d5/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200212091648-12a6c2dcc1e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200223170610-d5e6a3e2c0ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200302150141-5c8b2ff67527/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200331124033-c3d80250170d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200501052902-10377860bb8e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200511232937-7e40ca221e25/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200515095857-1151b9dac4a9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200523222454-059865788121/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200803210538-64077c9b5642/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200905004654-be1d3432aa8f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20201201145000-ef89a241ccb3/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210104204734-6f8348627aad/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210119212857-b64e53b001e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210225134936-a50acf3fe073/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210423185535-09eb48e85fd7/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +go.uber.org/zap v1.26.0 h1:sI7k6L95XOKS281NhVKOFCUNIvv9e0w4BF8N3u+tCRo= +go.uber.org/zap v1.26.0/go.mod h1:dtElttAiwGvoJ/vj4IwHBS/gXsEu/pZ50mUIRWuG0so= +golang.org/x/exp v0.0.0-20230905200255-921286631fa9 h1:GoHiUyI/Tp2nVkLI2mCxVkOjsbSXD66ic0XW0js0R9g= +golang.org/x/exp v0.0.0-20230905200255-921286631fa9/go.mod h1:S2oDrQGGwySpoQPVqRShND87VCbxmc6bL1Yd2oYrm6k= golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220908164124-27713097b956/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.8.0 h1:EBmGv8NaZBZTWvrbjNoL6HVt+IVy3QDQpJs7VRIw3tU= -golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= -golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= -golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= -golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= -golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk= -golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= -golang.org/x/text v0.3.4/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= -golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= -golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= -golang.org/x/text v0.9.0 h1:2sjJmO8cDvYveuX97RDLsxlyUxLl+GHoLxBiRdHllBE= -golang.org/x/text v0.9.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8= -golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/time v0.0.0-20191024005414-555d28b269f0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= -golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= -golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY= -golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -golang.org/x/tools v0.0.0-20190312151545-0bb0c0a6e846/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -golang.org/x/tools v0.0.0-20190312170243-e65039ee4138/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -golang.org/x/tools v0.0.0-20190425150028-36563e24a262/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= -golang.org/x/tools v0.0.0-20190506145303-2d16b83fe98c/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= -golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= -golang.org/x/tools v0.0.0-20190606124116-d0a3d012864b/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= -golang.org/x/tools v0.0.0-20190621195816-6e04913cbbac/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= -golang.org/x/tools v0.0.0-20190628153133-6cdbf07be9d0/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= -golang.org/x/tools v0.0.0-20190816200558-6889da9d5479/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20190911174233-4f2ddba30aff/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191012152004-8de300cfc20a/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191113191852-77e3bb0ad9e7/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191115202509-3a792d9c32b2/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191125144606-a911d9008d1f/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191130070609-6e064ea0cf2d/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191216173652-a0e659d51361/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20191227053925-7b8e75db28f4/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200117161641-43d50277825c/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200122220014-bf1340f18c4a/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200130002326-2f3ba24bd6e7/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200204074204-1cc6d1ef6c74/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200207183749-b753a1ba74fa/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200212150539-ea181f53ac56/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200224181240-023911ca70b2/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200227222343-706bc42d1f0d/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200304193943-95d2e580d8eb/go.mod h1:o4KQGtdN14AW+yjsvvwRTJJuXz8XRtIHtEnmAXLyFUw= -golang.org/x/tools v0.0.0-20200312045724-11d5b4c81c7d/go.mod h1:o4KQGtdN14AW+yjsvvwRTJJuXz8XRtIHtEnmAXLyFUw= -golang.org/x/tools v0.0.0-20200331025713-a30bf2db82d4/go.mod h1:Sl4aGygMT6LrqrWclx+PTx3U+LnKx/seiNR+3G19Ar8= -golang.org/x/tools v0.0.0-20200501065659-ab2804fb9c9d/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= -golang.org/x/tools v0.0.0-20200512131952-2bc93b1c0c88/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= -golang.org/x/tools v0.0.0-20200515010526-7d3b6ebf133d/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= -golang.org/x/tools v0.0.0-20200618134242-20370b0cb4b2/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= -golang.org/x/tools v0.0.0-20200729194436-6467de6f59a7/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= -golang.org/x/tools v0.0.0-20200804011535-6c149bb5ef0d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= -golang.org/x/tools v0.0.0-20200825202427-b303f430e36d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= -golang.org/x/tools v0.0.0-20200904185747-39188db58858/go.mod h1:Cj7w3i3Rnn0Xh82ur9kSqwfTHTeVxaDqrfMjpcNT6bE= -golang.org/x/tools v0.0.0-20201110124207-079ba7bd75cd/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.0.0-20201201161351-ac6f37ff4c2a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.0.0-20201208233053-a543418bbed2/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.0.0-20210105154028-b0ab187a4818/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.0.0-20210108195828-e2f9c7f1fc8e/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.1.0/go.mod h1:xkSsbof2nBLbhDlRMhhhyNLN/zl3eTqcnHD5viDpcZ0= -golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= -golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +golang.org/x/sys v0.15.0 h1:h48lPFYpsTvQJZF4EKyI4aLHaev3CxivZmv7yZig9pc= +golang.org/x/sys v0.15.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/text v0.14.0 h1:ScX5w1eTa3QqT8oi6+ziP7dTV1S2+ALU0bI+0zXKWiQ= +golang.org/x/text v0.14.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= -golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= -google.golang.org/api v0.4.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEtwE= -google.golang.org/api v0.7.0/go.mod h1:WtwebWUNSVBH/HAw79HIFXZNqEvBhG+Ra+ax0hx3E3M= -google.golang.org/api v0.8.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg= -google.golang.org/api v0.9.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg= -google.golang.org/api v0.13.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI= -google.golang.org/api v0.14.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI= -google.golang.org/api v0.15.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI= -google.golang.org/api v0.17.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= -google.golang.org/api v0.18.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= -google.golang.org/api v0.19.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= -google.golang.org/api v0.20.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= -google.golang.org/api v0.22.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= -google.golang.org/api v0.24.0/go.mod h1:lIXQywCXRcnZPGlsd8NbLnOjtAoL6em04bJ9+z0MncE= -google.golang.org/api v0.28.0/go.mod h1:lIXQywCXRcnZPGlsd8NbLnOjtAoL6em04bJ9+z0MncE= -google.golang.org/api v0.29.0/go.mod h1:Lcubydp8VUV7KeIHD9z2Bys/sm/vGKnG1UHuDBSrHWM= -google.golang.org/api v0.30.0/go.mod h1:QGmEvQ87FHZNiUVJkT14jQNYJ4ZJjdRF23ZXz5138Fc= -google.golang.org/api v0.35.0/go.mod h1:/XrVsuzM0rZmrsbjJutiuftIzeuTQcEeaYcSk/mQ1dg= -google.golang.org/api v0.36.0/go.mod h1:+z5ficQTmoYpPn8LCUNVpK5I7hwkpjbcgqA7I34qYtE= -google.golang.org/api v0.40.0/go.mod h1:fYKFpnQN0DsDSKRVRcQSDQNtqWPfM9i+zNPxepjRCQ8= -google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= -google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= -google.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= -google.golang.org/appengine v1.6.1/go.mod h1:i06prIuMbXzDqacNJfV5OdTW448YApPu5ww/cMBSeb0= -google.golang.org/appengine v1.6.5/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= -google.golang.org/appengine v1.6.6/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= -google.golang.org/appengine v1.6.7/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= -google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= -google.golang.org/genproto v0.0.0-20190307195333-5fe7a883aa19/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= -google.golang.org/genproto v0.0.0-20190418145605-e7d98fc518a7/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= -google.golang.org/genproto v0.0.0-20190425155659-357c62f0e4bb/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= -google.golang.org/genproto v0.0.0-20190502173448-54afdca5d873/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= -google.golang.org/genproto v0.0.0-20190801165951-fa694d86fc64/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc= -google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc= -google.golang.org/genproto v0.0.0-20190911173649-1774047e7e51/go.mod h1:IbNlFCBrqXvoKpeg0TB2l7cyZUmoaFKYIwrEpbDKLA8= -google.golang.org/genproto v0.0.0-20191108220845-16a3f7862a1a/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= -google.golang.org/genproto v0.0.0-20191115194625-c23dd37a84c9/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= -google.golang.org/genproto v0.0.0-20191216164720-4f79533eabd1/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= -google.golang.org/genproto v0.0.0-20191230161307-f3c370f40bfb/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= -google.golang.org/genproto v0.0.0-20200115191322-ca5a22157cba/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= -google.golang.org/genproto v0.0.0-20200122232147-0452cf42e150/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= -google.golang.org/genproto v0.0.0-20200204135345-fa8e72b47b90/go.mod h1:GmwEX6Z4W5gMy59cAlVYjN9JhxgbQH6Gn+gFDQe2lzA= -google.golang.org/genproto v0.0.0-20200212174721-66ed5ce911ce/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200224152610-e50cd9704f63/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200228133532-8c2c7df3a383/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200305110556-506484158171/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200312145019-da6875a35672/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200331122359-1ee6d9798940/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200430143042-b979b6f78d84/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200511104702-f5ebc3bea380/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200515170657-fc4c6c6a6587/go.mod h1:YsZOwe1myG/8QRHRsmBRE1LrgQY60beZKjly0O1fX9U= -google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013/go.mod h1:NbSheEEYHJ7i3ixzK3sjbqSGDJWnxyFXZblF3eUsNvo= -google.golang.org/genproto v0.0.0-20200618031413-b414f8b61790/go.mod h1:jDfRM7FcilCzHH/e9qn6dsT145K34l5v+OpcnNgKAAA= -google.golang.org/genproto v0.0.0-20200729003335-053ba62fc06f/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20200804131852-c06518451d9c/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20200825200019-8632dd797987/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20200904004341-0bd0a958aa1d/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20201109203340-2640f1f9cdfb/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20201201144952-b05cb90ed32e/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20201210142538-e3217bee35cc/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20201214200347-8c77b98c765d/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210108203827-ffc7fda8c3d7/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210226172003-ab064af71705/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= -google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= -google.golang.org/grpc v1.21.1/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= -google.golang.org/grpc v1.23.0/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg= -google.golang.org/grpc v1.25.1/go.mod h1:c3i+UQWmh7LiEpx4sFZnkU36qjEYZ0imhYfXVyQciAY= -google.golang.org/grpc v1.26.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= -google.golang.org/grpc v1.27.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= -google.golang.org/grpc v1.27.1/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= -google.golang.org/grpc v1.28.0/go.mod h1:rpkK4SK4GF4Ach/+MFLZUBavHOvF2JJB5uozKKal+60= -google.golang.org/grpc v1.29.1/go.mod h1:itym6AZVZYACWQqET3MqgPpjcuV5QH3BxFS3IjizoKk= -google.golang.org/grpc v1.30.0/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= -google.golang.org/grpc v1.31.0/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= -google.golang.org/grpc v1.31.1/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= -google.golang.org/grpc v1.33.2/go.mod h1:JMHMWHQWaTccqQQlmk3MJZS+GWXOdAesneDmEnv2fbc= -google.golang.org/grpc v1.34.0/go.mod h1:WotjhfgOW/POjDeRt8vscBtXq+2VjORFy659qA51WJ8= -google.golang.org/grpc v1.35.0/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= -google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8= -google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0= -google.golang.org/protobuf v0.0.0-20200228230310-ab0ca4ff8a60/go.mod h1:cfTl7dwQJ+fmap5saPgwCLgHXTUD7jkjRqWcaiX5VyM= -google.golang.org/protobuf v1.20.1-0.20200309200217-e05f789c0967/go.mod h1:A+miEFZTKqfCUM6K7xSMQL9OKL/b6hQv+e19PK+JZNE= -google.golang.org/protobuf v1.21.0/go.mod h1:47Nbq4nVaFHyn7ilMalzfO3qCViNmqZ2kzikPIcrTAo= -google.golang.org/protobuf v1.22.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= -google.golang.org/protobuf v1.23.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= -google.golang.org/protobuf v1.23.1-0.20200526195155-81db48ad09cc/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= -google.golang.org/protobuf v1.24.0/go.mod h1:r/3tXBNzIEhYS9I1OUVjXDlt8tc493IdKGjtUeSXeh4= -google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlbajtzgsN7c= google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= google.golang.org/protobuf v1.31.0 h1:g0LDEJHgrBl9N9r17Ru3sqWhkIx2NB67okBHPwC7hs8= google.golang.org/protobuf v1.31.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= -gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= -gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk= -gopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI= +gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 h1:YR8cESwS4TdDjEe65xsg0ogRM/Nc3DYOhEAlW+xobZo= +gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/ini.v1 v1.67.0 h1:Dgnx+6+nfE+IfzjUEISNeydPJh9AXNNsWbGP9KzCsOA= gopkg.in/ini.v1 v1.67.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= -gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ= gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= -honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= -honnef.co/go/tools v0.0.0-20190106161140-3f1c8253044a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= -honnef.co/go/tools v0.0.0-20190418001031-e561f6794a2a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= -honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= -honnef.co/go/tools v0.0.1-2019.2.3/go.mod h1:a3bituU0lyd329TUQxRnasdCoJDkEUEAqEt0JzvZhAg= -honnef.co/go/tools v0.0.1-2020.1.3/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= -honnef.co/go/tools v0.0.1-2020.1.4/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= -rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8= -rsc.io/quote/v3 v3.1.0/go.mod h1:yEA65RcK8LyAZtP9Kv3t0HmxON59tX3rD+tICJqUlj0= -rsc.io/sampler v1.3.0/go.mod h1:T1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA= -sigs.k8s.io/release-utils v0.7.4 h1:17LmJrydpUloTCtaoWj95uKlcrUp4h2A9Sa+ZL+lV9w= -sigs.k8s.io/release-utils v0.7.4/go.mod h1:JEt2QPHItd5Pg2UKLAU8PEaSlF4bUjCZimpxFDgymVU= +sigs.k8s.io/release-utils v0.7.7 h1:JKDOvhCk6zW8ipEOkpTGDH/mW3TI+XqtPp16aaQ79FU= +sigs.k8s.io/release-utils v0.7.7/go.mod h1:iU7DGVNi3umZJ8q6aHyUFzsDUIaYwNnNKGHo3YE5E3s= sigs.k8s.io/yaml v1.3.0/go.mod h1:GeOyir5tyXNByN85N/dRIT9es5UQNerPYEKK56eTBm8= diff --git a/main.go b/main.go index 33f6067..1613aa3 100644 --- a/main.go +++ b/main.go @@ -1,7 +1,7 @@ package main import ( - "github.com/bom-squad/go-cli/cmd/cli" + "github.com/bom-squad/sbom-convert/cmd/cli" ) func main() { diff --git a/pkg/convert/convert.go b/pkg/convert/convert.go index 6acd913..e43b801 100644 --- a/pkg/convert/convert.go +++ b/pkg/convert/convert.go @@ -7,8 +7,8 @@ import ( "github.com/bom-squad/protobom/pkg/reader" "github.com/bom-squad/protobom/pkg/writer" - "github.com/bom-squad/go-cli/pkg/domain" - "github.com/bom-squad/go-cli/pkg/format" + "github.com/bom-squad/sbom-convert/pkg/domain" + "github.com/bom-squad/sbom-convert/pkg/format" ) var _ domain.ConvertService = (*Service)(nil) @@ -36,8 +36,9 @@ func (s *Service) Convert(_ context.Context, in io.ReadSeekCloser, out io.WriteC return err } - w := writer.New() - w.Options.Format = s.Format.Format + w := writer.New( + writer.WithFormat(s.Format.Format), + ) return w.WriteStream(doc, out) } diff --git a/pkg/convert/options.go b/pkg/convert/options.go index 2ecfb1c..0e742d9 100644 --- a/pkg/convert/options.go +++ b/pkg/convert/options.go @@ -1,7 +1,7 @@ package convert import ( - "github.com/bom-squad/go-cli/pkg/format" + "github.com/bom-squad/sbom-convert/pkg/format" ) func WithFormat(f *format.Format) Option { diff --git a/pkg/format/main.go b/pkg/format/main.go index a7d3655..9d7ad0c 100644 --- a/pkg/format/main.go +++ b/pkg/format/main.go @@ -13,13 +13,16 @@ var ( DefaultEncoding = formats.JSON DefaultSPDXJSONVersion = formats.SPDX23JSON DefaultSPDXTVVersion = formats.SPDX23TV - DefaultCycloneDXVersion = formats.CDX14JSON + DefaultCycloneDXVersion = formats.CDX15JSON JSONFormatMap = map[string]formats.Format{ "spdx": formats.SPDXFORMAT, "spdx-2.2": formats.SPDX22JSON, "spdx-2.3": formats.SPDX23JSON, "cyclonedx": formats.CDXFORMAT, + "cyclonedx-1.0": formats.CDX10JSON, + "cyclonedx-1.1": formats.CDX11JSON, + "cyclonedx-1.2": formats.CDX12JSON, "cyclonedx-1.3": formats.CDX13JSON, "cyclonedx-1.4": formats.CDX14JSON, "cyclonedx-1.5": formats.CDX15JSON, @@ -31,6 +34,8 @@ var ( "spdx-2.3": formats.SPDX23TV, } + XMLFormatMap = map[string]formats.Format{} + JSONEncoding = formats.JSON TEXTEncoding = formats.TEXT SPDX = formats.SPDXFORMAT @@ -38,6 +43,7 @@ var ( EncodingMap = map[string]string{ "json": formats.JSON, + "xml": formats.XML, "text": formats.TEXT, } ) @@ -60,6 +66,8 @@ func ParseFormat(fs string, encoding string) (*Format, error) { fm = JSONFormatMap case formats.TEXT: fm = TVFormatMap + case formats.XML: + fm = XMLFormatMap default: return nil, fmt.Errorf("unknown encoding: %s", encoding) diff --git a/samples/keycloak.cdx.json b/samples/keycloak.cdx.json index f3df148..1b167e4 100644 --- a/samples/keycloak.cdx.json +++ b/samples/keycloak.cdx.json @@ -1,56 +1,70 @@ { "bomFormat": "CycloneDX", - "specVersion": "1.4", + "specVersion": "1.5", "serialNumber": "urn:uuid:411dafd2-c29f-491a-97d7-e97de5bc2289", "version": 1, "metadata": { "timestamp": "2020-08-02T21:21:17Z", - "tools": [{ - "vendor": "CycloneDX", - "name": "CycloneDX Maven plugin", - "version": "2.0.2", - "hashes": [ - { - "alg": "MD5", - "content": "9a7ed39bba6c03f85a88fe114e24e4ad" - }, - { - "alg": "SHA-1", - "content": "04b39fce560f8a9609e5b5db6e605fc2ba2c5a42" - }, - { - "alg": "SHA-256", - "content": "78522e385d01fc74cb6410abb22b2b0ed9b47c1124635d955179402928820b43" - }, - { - "alg": "SHA-384", - "content": "aff816bf691e4490d4e977386c21abaceb97b7ce502d88c35c52cfdb7a7e50310ecc70019582d8247a99626bc98ad16b" - }, - { - "alg": "SHA-512", - "content": "500bd8dd0b821ef84c57643324e1d0eea1111aa9c7913bc35cb812f577128867c74c698b59fb603b358cc5545a708feb8dfca223023f81597658053e5317dd1a" - }, - { - "alg": "SHA3-256", - "content": "9e45261eff969396b6a3e97a1ad65dced304f77765655c9a72a2904caa137a1e" - }, - { - "alg": "SHA3-384", - "content": "fea472f4c2bdee7df208ad3d6a76125ce282a250eb960bc2171297a3ae2e4232b61540132b71b399e8ac6b9d0228113f" - }, - { - "alg": "SHA3-512", - "content": "6ed81f58d9039e56d393165bd26c998584e364f7975e33f5c3008ac10d67ed190edcd196c5ce1554e23c4e1271f8aed631e07c3ea0de59a3457891d188e71b67" - } - ] - }], + "lifecycles": [ + { + "phase": "build" + }, + { + "phase": "post-build" + }, + { + "name": "platform-integration-testing", + "description": "Integration testing specific to the runtime platform" + } + ], + "tools": [ + { + "vendor": "CycloneDX", + "name": "CycloneDX Maven plugin", + "version": "2.0.2", + "hashes": [ + { + "alg": "MD5", + "content": "9a7ed39bba6c03f85a88fe114e24e4ad" + }, + { + "alg": "SHA-1", + "content": "04b39fce560f8a9609e5b5db6e605fc2ba2c5a42" + }, + { + "alg": "SHA-256", + "content": "78522e385d01fc74cb6410abb22b2b0ed9b47c1124635d955179402928820b43" + }, + { + "alg": "SHA-384", + "content": "aff816bf691e4490d4e977386c21abaceb97b7ce502d88c35c52cfdb7a7e50310ecc70019582d8247a99626bc98ad16b" + }, + { + "alg": "SHA-512", + "content": "500bd8dd0b821ef84c57643324e1d0eea1111aa9c7913bc35cb812f577128867c74c698b59fb603b358cc5545a708feb8dfca223023f81597658053e5317dd1a" + }, + { + "alg": "SHA3-256", + "content": "9e45261eff969396b6a3e97a1ad65dced304f77765655c9a72a2904caa137a1e" + }, + { + "alg": "SHA3-384", + "content": "fea472f4c2bdee7df208ad3d6a76125ce282a250eb960bc2171297a3ae2e4232b61540132b71b399e8ac6b9d0228113f" + }, + { + "alg": "SHA3-512", + "content": "6ed81f58d9039e56d393165bd26c998584e364f7975e33f5c3008ac10d67ed190edcd196c5ce1554e23c4e1271f8aed631e07c3ea0de59a3457891d188e71b67" + } + ] + } + ], "component": { "type": "application", "bom-ref": "pkg:maven/org.keycloak/keycloak-parent@10.0.2", "group": "org.keycloak", "name": "keycloak-parent", "version": "10.0.2", - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.keycloak/keycloak-parent@10.0.2" } }, @@ -96,10 +110,14 @@ "content": "8b7fefdfdc8f3aea479740bbe9853081fe5b0c41a312e2ed07304e0baeee96b278042318a7fef389684017965b98724ccd6801e9ad64cc0e664d283723f64540" } ], - "licenses": [{"license": { - "name": "Bouncy Castle Licence", - "url": "http://www.bouncycastle.org/licence.html" - }}], + "licenses": [ + { + "license": { + "name": "Bouncy Castle Licence", + "url": "http://www.bouncycastle.org/licence.html" + } + } + ], "purl": "pkg:maven/org.bouncycastle/bcprov-jdk15on@1.62?type=jar", "externalReferences": [ { @@ -153,10 +171,14 @@ "content": "a24e31fe7efb93de771e815635a72488be3e0cfd5517ee3548d04a575060f705e9d893c63be4ec296ca174f16d7363644df77f032ce155b7b434e0b02506e673" } ], - "licenses": [{"license": { - "name": "Bouncy Castle Licence", - "url": "http://www.bouncycastle.org/licence.html" - }}], + "licenses": [ + { + "license": { + "name": "Bouncy Castle Licence", + "url": "http://www.bouncycastle.org/licence.html" + } + } + ], "purl": "pkg:maven/org.bouncycastle/bcpkix-jdk15on@1.62?type=jar", "externalReferences": [ { @@ -211,7 +233,7 @@ "content": "1b34af205a56d3f93d2070e335ef853090fb7dabe630b05beeee13c8596503c2f242fc93aa7a8763418771bc3593e65e8bd93c62288324e29caaf53ffbee27d0" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.jboss.logging/jboss-logging@3.4.1.Final?type=jar", "externalReferences": [ { @@ -274,10 +296,14 @@ "content": "ac0d51928a89ad515a92a30f2b4302ac2431fee65e8bc120415518c7c19b1aad2ef2944c57d355546082cc21ccdcd2ba2a887516cb423e3b7cd1dff8180ec072" } ], - "licenses": [{"license": { - "name": "EDL 1.0", - "url": "http://www.eclipse.org/org/documents/edl-v10.php" - }}], + "licenses": [ + { + "license": { + "name": "EDL 1.0", + "url": "http://www.eclipse.org/org/documents/edl-v10.php" + } + } + ], "purl": "pkg:maven/com.sun.activation/jakarta.activation@1.2.1?type=jar", "externalReferences": [ { @@ -340,7 +366,7 @@ "content": "f24925acfb39b67a63c93d1598eacc0ef12e2e4fcc07e7dfe577378194fc72305c759d2639e6d9e450be6b6de7b6a3ebed605528830ab45cfb749ed815b8e338" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.keycloak/keycloak-common@10.0.2?type=jar", "externalReferences": [ { @@ -407,7 +433,7 @@ "content": "3cfd36664cfef265102825fb59981f52eda7a091c03c3568d534d336d06e82b49f6cdf20e14dab6978800c4f8965c7acbba54f5e43196afee7c8dd7cfd0f30c6" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.10.1?type=jar", "externalReferences": [ { @@ -470,7 +496,7 @@ "content": "ac5cdfbc7cdfb81b2bd6bf692169c5a8cfe1a7c2739c39e054d6cb88aca6b2278917aa6311c94b86b824c1084f31cef1bb3920f07da7ce60c78063f0fd4590bc" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.10.1?type=jar", "externalReferences": [ { @@ -533,7 +559,7 @@ "content": "1a6eb0e453496e824783ec044426ecf963c1df7b873eff9eb2940348296bb63fea826ab96429d9c50873ad95d652986f210f5086afa0e3b73353d2f9ee7ad810" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.10.1?type=jar", "externalReferences": [ { @@ -597,8 +623,8 @@ } ], "licenses": [ - {"license": {"id": "EPL-2.0"}}, - {"license": {"id": "GPL-2.0-with-classpath-exception"}} + { "license": { "id": "EPL-2.0" } }, + { "license": { "id": "GPL-2.0-with-classpath-exception" } } ], "purl": "pkg:maven/org.jboss.spec.javax.transaction/jboss-transaction-api_1.3_spec@2.0.0.Final?type=jar", "externalReferences": [ @@ -662,10 +688,14 @@ "content": "2b62ef8ac157339c30abd07e5d1207d6344d5183f8f00a7862ad16b28db81c591f5fae4dad3f10f72680f2a4eb345904127dc4f1f9107ed3a06b67d663deaaee" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.jboss.resteasy/resteasy-jaxrs@3.11.2.Final?type=jar", "externalReferences": [ { @@ -733,8 +763,8 @@ } ], "licenses": [ - {"license": {"id": "EPL-2.0"}}, - {"license": {"id": "GPL-2.0-with-classpath-exception"}} + { "license": { "id": "EPL-2.0" } }, + { "license": { "id": "GPL-2.0-with-classpath-exception" } } ], "purl": "pkg:maven/org.jboss.spec.javax.ws.rs/jboss-jaxrs-api_2.1_spec@2.0.1.Final?type=jar", "externalReferences": [ @@ -798,10 +828,14 @@ "content": "6f4c1904385aada6a39b3700eff0e69c451db87b64dca0f3a966f403af845b96468173ec81e5e82e16e9ff6205c375bed1befc26a1a2adfcae2a69c870dd7567" } ], - "licenses": [{"license": { - "name": "Eclipse Distribution License - v 1.0", - "url": "http://www.eclipse.org/org/documents/edl-v10.php" - }}], + "licenses": [ + { + "license": { + "name": "Eclipse Distribution License - v 1.0", + "url": "http://www.eclipse.org/org/documents/edl-v10.php" + } + } + ], "purl": "pkg:maven/org.jboss.spec.javax.xml.bind/jboss-jaxb-api_2.3_spec@2.0.0.Final?type=jar", "externalReferences": [ { @@ -863,10 +897,14 @@ "content": "9edc79ccfd2edabe1339ad79a10137cd0f1614671f976d6a8a603428b8e5179c9a6afbf4f9fcd44e6e3795be5c487cc5aa97a1d3e6d9a3e88a62d3f4de60a2ab" } ], - "licenses": [{"license": { - "name": "CC0", - "url": "http://creativecommons.org/publicdomain/zero/1.0/" - }}], + "licenses": [ + { + "license": { + "name": "CC0", + "url": "http://creativecommons.org/publicdomain/zero/1.0/" + } + } + ], "purl": "pkg:maven/org.reactivestreams/reactive-streams@1.0.3?type=jar" }, { @@ -911,10 +949,14 @@ "content": "c23bb0b43fb0c39d4c9d2cce0cd38334fa7c253130f0bda3007d9f7d2dd451c0896ff4265ee2cc35024fad282f9ccaa398c19874775d9cabbb786843fae155d7" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/jakarta.validation/jakarta.validation-api@2.0.2?type=jar", "externalReferences": [ { @@ -978,8 +1020,8 @@ } ], "licenses": [ - {"license": {"id": "EPL-2.0"}}, - {"license": {"id": "GPL-2.0-with-classpath-exception"}} + { "license": { "id": "EPL-2.0" } }, + { "license": { "id": "GPL-2.0-with-classpath-exception" } } ], "purl": "pkg:maven/org.jboss.spec.javax.annotation/jboss-annotations-api_1.3_spec@2.0.1.Final?type=jar", "externalReferences": [ @@ -1043,7 +1085,7 @@ "content": "82e8aa5fb7b8801b94c83f912dc863ff1b569a281081d33ca7e512a694202aebb60101b54bc9ba0a3b6a769221667a3d222b67102377d554603678798ca22d07" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/commons-io/commons-io@2.6?type=jar", "externalReferences": [ { @@ -1113,7 +1155,7 @@ "content": "ff32665e1b6d8176ccc7e8c836ca7343c2603dab053e42d79b4258d51a14ff63933c67d24034169ac91e11ebda21cc2c84a2a540072e656d2a8e6fcea7808421" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/com.github.stephenc.jcip/jcip-annotations@1.0-1?type=jar", "externalReferences": [ { @@ -1172,7 +1214,7 @@ "content": "9db0591ed98d41707af8362e1b736cec27a4ed8fd7137a800275011173fe043954011c02ea738dddb4bfe9092f74eec6beaa49bcaf19666a853e6de18127dcd0" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.keycloak/keycloak-core@10.0.2?type=jar", "externalReferences": [ { @@ -1239,7 +1281,7 @@ "content": "2d62b6940a42267bbf81cf4df33480eca0d8867b3e17558fd0a9448c1e8cbf3e5379f5542cb8c3a43778b435175a600f38eccae0fc5c51e179c64411bf56ae60" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.httpcomponents/httpclient@4.5.11?type=jar", "externalReferences": [ { @@ -1306,7 +1348,7 @@ "content": "c78f9d464e4b840e28266658512b1cab0ece1470bef2764deb2dc20ba69b73d526d92a19494ccb87b4408f9235c4294417f2e10ba709469f4bd62d017b9e3cbe" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.httpcomponents/httpcore@4.4.13?type=jar", "externalReferences": [ { @@ -1373,7 +1415,7 @@ "content": "3fd76857f6d20c03799537cc961c1c4ddf1c375c6c192fb982363e3b9397ba138b77f24ef38b4202f44e37586789c0320e4de18fdadd2772304fd14a9b26d552" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/commons-logging/commons-logging@1.2?type=jar", "externalReferences": [ { @@ -1444,7 +1486,7 @@ "content": "101bc04efae2bd16d7923e61bca922c4a006b0e4b34909e0f8865196cb4df4f4f6269737c17880b4dfd0309cb487b806e88d09c6e1a7dc70237563b3f4312f7f" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/commons-codec/commons-codec@1.11?type=jar", "externalReferences": [ { @@ -1515,7 +1557,7 @@ "content": "248b8ed747209ede3fed83917201034072d280606d94ec196c2fc77bdce74b81e12957aac2f10d37a244b743cf26c41c3967118a3789aabd7679cf961a3ed7be" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.keycloak/keycloak-server-spi@10.0.2?type=jar", "externalReferences": [ { @@ -1581,7 +1623,7 @@ "content": "1ef4ef1cb93f2b50cd7dba701b4a3d150ae873e381e24eec916bc26183a9e3cbac80dcdb40ea5dfd47191ff5efdcf01fc50e51996dc31cf70485ac069ca0d511" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/com.google.guava/guava@25.0-jre?type=jar", "externalReferences": [ { @@ -1643,12 +1685,14 @@ "content": "67ec31448e156cc72dd036060b460bb2667a13b1cbe500b6b7eed3235b1994b44c39f440ebd07b21ec9595b166ad61121d4f6a132b5b313c558ab21b72599425" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/com.google.code.findbugs/jsr305@1.3.9?type=jar", - "externalReferences": [{ - "type": "vcs", - "url": "http://findbugs.googlecode.com/svn/trunk/" - }] + "externalReferences": [ + { + "type": "vcs", + "url": "http://findbugs.googlecode.com/svn/trunk/" + } + ] }, { "type": "library", @@ -1692,17 +1736,21 @@ } ], "licenses": [ - {"license": { - "name": "GNU General Public License, version 2 (GPL2), with the classpath exception", - "url": "http://www.gnu.org/software/classpath/license.html" - }}, - {"license": {"id": "MIT"}} + { + "license": { + "name": "GNU General Public License, version 2 (GPL2), with the classpath exception", + "url": "http://www.gnu.org/software/classpath/license.html" + } + }, + { "license": { "id": "MIT" } } ], "purl": "pkg:maven/org.checkerframework/checker-compat-qual@2.0.0?type=jar", - "externalReferences": [{ - "type": "vcs", - "url": "https://github.com/typetools/checker-framework.git" - }] + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/typetools/checker-framework.git" + } + ] }, { "type": "library", @@ -1745,7 +1793,7 @@ "content": "3f05def83905268da5044c8bd6fbf62b89499d77351b56a357de8d27ef872c6c300385a6bca009590d61be90a39a0f417c4d8358a13b09847ba0452ef416db06" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/com.google.errorprone/error_prone_annotations@2.1.3?type=jar", "externalReferences": [ { @@ -1799,7 +1847,7 @@ "content": "d9e2a3943373e1eab933b45f49997b24e01466eb99a177c40f21c7107c9f21ebb135e14d191b0a5b699e3985d20de8e87662e92c0bf59e5e054d3da85fd777dd" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/com.google.j2objc/j2objc-annotations@1.1?type=jar", "externalReferences": [ { @@ -1854,10 +1902,14 @@ "content": "5f0a62a96445cfeaf101d2ddc56472621f5c3dafc54ad4b230a373012833b7da83e96af7c07b60a586768361b3bce3f3626ed2cc09fbbd84e840e0714d6344ee" } ], - "licenses": [{"license": { - "id": "MIT", - "url": "https://opensource.org/licenses/MIT" - }}], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], "purl": "pkg:maven/org.codehaus.mojo/animal-sniffer-annotations@1.14?type=jar", "externalReferences": [ { @@ -1927,7 +1979,7 @@ "content": "4baf8bd6be00ef30de0d375372ef22427e708d4df7489445eb74b6cd33e55966012948bd91dddf2bc71282fedb701da345b6dcbe108d1475ba938faf25c2c7d7" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/com.github.ua-parser/uap-java@1.4.3?type=jar", "externalReferences": [ { @@ -1981,7 +2033,7 @@ "content": "7a1d2afc736bfed0e9bdeb4de6f42e08b1562b7613d8fc5b0a425a3857d4b50e3fe6dec9c545c8335e56ebfe45b9b3a74b36d3c8b890336f3a656c9e93bf363f" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.yaml/snakeyaml@1.20?type=jar", "externalReferences": [ { @@ -2036,7 +2088,7 @@ "content": "a72d4f6987f253753e2f6b5e1367493e4261d935e5e84c9f487f48beaf05702dc0fd90050e830a9edcc56b3a075beb26a72741360eb7691208b73e3d771b675e" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.commons/commons-collections4@4.1?type=jar", "externalReferences": [ { @@ -2107,7 +2159,7 @@ "content": "6911e706eb70b235be07c2e6030ee5f6c417b37172274023ec7eb8e8207dbf76c54ee38670a03c5473d67360168060db70dd0d57fc576ee57b144536144182c1" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.keycloak/keycloak-server-spi-private@10.0.2?type=jar", "externalReferences": [ { @@ -2174,7 +2226,7 @@ "content": "c179c312b5e5c5d1f2582dada503481d78ffadc60d68f835f053d717b4d1147024d40099f6fa9e7be20304e9aa802bd71ac9aa1fbd1e584a5ba594aa73382406" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.keycloak/keycloak-kerberos-federation@10.0.2?type=jar", "externalReferences": [ { @@ -2241,7 +2293,7 @@ "content": "39fb58ee0043b779d8735cb09f19a3f5241dfaedda17fbf7abf6c81c6b019d944df3f7e022361c75facea0727b2fff873aa9467fb3d6c0ef808200cccffcf59e" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.santuario/xmlsec@2.1.4?type=jar", "externalReferences": [ { @@ -2308,10 +2360,14 @@ "content": "52629005dce0fe783bf74310e58a4648f179d74c3983b16f6062eb30a795f699c032ef02413370658af1a4e9598200e16df646df416a34e370f13b1179c6c7a5" } ], - "licenses": [{"license": { - "id": "MIT", - "url": "https://opensource.org/licenses/MIT" - }}], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], "purl": "pkg:maven/org.slf4j/slf4j-api@1.7.22?type=jar", "externalReferences": [ { @@ -2370,7 +2426,7 @@ "content": "2ab1c971725efa0ca482b0f7eb4ed958003684da1343b4345b60f61759ff90b857b53034edc58597df96000d6692719b037173969eca234f678fff080efb0b39" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/commons-codec/commons-codec@1.12?type=jar", "externalReferences": [ { @@ -2441,10 +2497,14 @@ "content": "0301ccd4fd04c2e01c0ee9a6cff68f297689db0c3c3da44eb302dcf6b03f24c811bc132460079ce52ff8b522100df23a955c950b68c0a89e2ba25e34baf9bcd9" } ], - "licenses": [{"license": { - "name": "Eclipse Distribution License - v 1.0", - "url": "http://www.eclipse.org/org/documents/edl-v10.php" - }}], + "licenses": [ + { + "license": { + "name": "Eclipse Distribution License - v 1.0", + "url": "http://www.eclipse.org/org/documents/edl-v10.php" + } + } + ], "purl": "pkg:maven/jakarta.xml.bind/jakarta.xml.bind-api@2.3.2?type=jar", "externalReferences": [ { @@ -2507,10 +2567,14 @@ "content": "91c0b8cb956bdb06e79738a9db624022887b3d83838b708dd3c654f231ab6f9b4a27be2556fd14683cd6158bf8534b96acd2481054e0c946d6e9f641cc5af55b" } ], - "licenses": [{"license": { - "name": "EDL 1.0", - "url": "http://www.eclipse.org/org/documents/edl-v10.php" - }}], + "licenses": [ + { + "license": { + "name": "EDL 1.0", + "url": "http://www.eclipse.org/org/documents/edl-v10.php" + } + } + ], "purl": "pkg:maven/jakarta.activation/jakarta.activation-api@1.2.1?type=jar", "externalReferences": [ { @@ -2573,10 +2637,14 @@ "content": "5d12e1468235d641cf7ed0bb4d09f6c5efeb6787a380be1e0d63b1aa605e4e963e67699709e831503c5d0398ebc982a635ab96216a8671bd654afc355a5c3fec" } ], - "licenses": [{"license": { - "name": "Eclipse Distribution License - v 1.0", - "url": "http://www.eclipse.org/org/documents/edl-v10.php" - }}], + "licenses": [ + { + "license": { + "name": "Eclipse Distribution License - v 1.0", + "url": "http://www.eclipse.org/org/documents/edl-v10.php" + } + } + ], "purl": "pkg:maven/org.glassfish.jaxb/jaxb-runtime@2.3.2?type=jar", "externalReferences": [ { @@ -2639,10 +2707,14 @@ "content": "c25db123091f280eceb180b1b7801dd0704ed388e77fd4d6a2fb423e9870b3eda89070c008ecf03c4ec43fd8be65158e9a24c013ef226f151c171978d26af0a5" } ], - "licenses": [{"license": { - "name": "Eclipse Distribution License - v 1.0", - "url": "http://www.eclipse.org/org/documents/edl-v10.php" - }}], + "licenses": [ + { + "license": { + "name": "Eclipse Distribution License - v 1.0", + "url": "http://www.eclipse.org/org/documents/edl-v10.php" + } + } + ], "purl": "pkg:maven/org.glassfish.jaxb/txw2@2.3.2?type=jar", "externalReferences": [ { @@ -2705,10 +2777,14 @@ "content": "3d602db2765a0ec04c1bb89b9687748c777acfd2378d1051f4728b1ff751c0ee1aedeed3ed262a9013ee637262581131542ff60210b4103da4d49c91f0db91f7" } ], - "licenses": [{"license": { - "name": "Eclipse Distribution License - v 1.0", - "url": "http://www.eclipse.org/org/documents/edl-v10.php" - }}], + "licenses": [ + { + "license": { + "name": "Eclipse Distribution License - v 1.0", + "url": "http://www.eclipse.org/org/documents/edl-v10.php" + } + } + ], "purl": "pkg:maven/com.sun.istack/istack-commons-runtime@3.0.10?type=jar", "externalReferences": [ { @@ -2772,11 +2848,13 @@ } ], "licenses": [ - {"license": {"id": "Apache-2.0"}}, - {"license": { - "name": "Eclipse Distribution License - v 1.0", - "url": "http://www.eclipse.org/org/documents/edl-v10.php" - }} + { "license": { "id": "Apache-2.0" } }, + { + "license": { + "name": "Eclipse Distribution License - v 1.0", + "url": "http://www.eclipse.org/org/documents/edl-v10.php" + } + } ], "purl": "pkg:maven/com.sun.xml.fastinfoset/FastInfoset@1.2.16?type=jar", "externalReferences": [ @@ -2841,8 +2919,8 @@ } ], "licenses": [ - {"license": {"id": "CDDL-1.1"}}, - {"license": {"id": "GPL-2.0-with-classpath-exception"}} + { "license": { "id": "CDDL-1.1" } }, + { "license": { "id": "GPL-2.0-with-classpath-exception" } } ], "purl": "pkg:maven/javax.xml.bind/jaxb-api@2.4.0-b180830.0359?type=jar", "externalReferences": [ @@ -3099,10 +3177,14 @@ "content": "8d7bec52a1fbadda7294c55a1f8f483368e07c5fd327aa7cf5ea29da13541ede5321c90d8f5fa148b609e0f5b08ff1fefcbb6d782a855a2d3aeb6850defdeb5c" } ], - "licenses": [{"license": { - "id": "CDDL-1.1", - "url": "http://glassfish.java.net/public/CDDL+GPL_1_1.html" - }}], + "licenses": [ + { + "license": { + "id": "CDDL-1.1", + "url": "http://glassfish.java.net/public/CDDL+GPL_1_1.html" + } + } + ], "purl": "pkg:maven/com.sun.xml.ws/policy@2.7.5?type=jar", "externalReferences": [ { @@ -3224,10 +3306,14 @@ "content": "431f5ef2b5b63d707f6b0889dd88c1fde065a0ef06fe874c59b918534a586a2243b80819b7e88697c59a10af4c233435292f6fa4098d21216b9470e4701df02f" } ], - "licenses": [{"license": { - "name": "CDDL+GPL", - "url": "https://glassfish.dev.java.net/public/CDDL+GPL.html" - }}], + "licenses": [ + { + "license": { + "name": "CDDL+GPL", + "url": "https://glassfish.dev.java.net/public/CDDL+GPL.html" + } + } + ], "purl": "pkg:maven/org.glassfish.gmbal/gmbal-api-only@3.1.0-b001?type=jar", "externalReferences": [ { @@ -3282,15 +3368,21 @@ "content": "b337a32734a4e5241853281c59261ee351b6f5f960e5a799f6004dd3bf70fc0d355117d58828e8b2bbc9504c068fe52b97e7a81bb611011a0b4a305d930e5bfe" } ], - "licenses": [{"license": { - "name": "CDDL+GPL", - "url": "https://glassfish.dev.java.net/public/CDDL+GPL.html" - }}], + "licenses": [ + { + "license": { + "name": "CDDL+GPL", + "url": "https://glassfish.dev.java.net/public/CDDL+GPL.html" + } + } + ], "purl": "pkg:maven/org.glassfish.external/management-api@3.0.0-b012?type=jar", - "externalReferences": [{ - "type": "website", - "url": "http://www.sun.com" - }] + "externalReferences": [ + { + "type": "website", + "url": "http://www.sun.com" + } + ] }, { "type": "library", @@ -3443,8 +3535,8 @@ } ], "licenses": [ - {"license": {"id": "CDDL-1.1"}}, - {"license": {"id": "GPL-2.0-with-classpath-exception"}} + { "license": { "id": "CDDL-1.1" } }, + { "license": { "id": "GPL-2.0-with-classpath-exception" } } ], "purl": "pkg:maven/org.jvnet.mimepull/mimepull@1.9.10?type=jar", "externalReferences": [ @@ -3512,10 +3604,14 @@ "content": "287d9acbc7a39123294217c6b938ca1b09313358afa7b3f24aaaf5a3ea9ee1aeb21817f8e4962dbaf3a263ecc94c25cea49db0e1fb67c1a9035d12dc919df55e" } ], - "licenses": [{"license": { - "name": "The BSD License", - "url": "http://www.opensource.org/licenses/bsd-license.php" - }}], + "licenses": [ + { + "license": { + "name": "The BSD License", + "url": "http://www.opensource.org/licenses/bsd-license.php" + } + } + ], "purl": "pkg:maven/org.codehaus.woodstox/stax2-api@4.1?type=jar", "externalReferences": [ { @@ -3909,7 +4005,7 @@ "content": "781e42184070a1c75208ddfb2c74e087f13616405f8a60e724955a0216d857f0309a148a21666e1b88608bc5ea4f7cd293bc70d6ed2d64680be15db395530f58" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.keycloak/keycloak-saml-core-public@10.0.2?type=jar", "externalReferences": [ { @@ -3976,7 +4072,7 @@ "content": "0aa3c4bf8bf7e8714e8779d9ba5243e4e7fba5c118777275fbd4864c1c120ef62f935aa032b2a24048da5f76803f4f2e898081481803c0e61f1fd3dacf1ecadd" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.freemarker/freemarker@2.3.29?type=jar", "externalReferences": [ { @@ -4044,12 +4140,14 @@ } ], "licenses": [ - {"license": {"id": "EPL-2.0"}}, - {"license": {"id": "GPL-2.0-with-classpath-exception"}}, - {"license": { - "name": "EDL 1.0", - "url": "http://www.eclipse.org/org/documents/edl-v10.php" - }} + { "license": { "id": "EPL-2.0" } }, + { "license": { "id": "GPL-2.0-with-classpath-exception" } }, + { + "license": { + "name": "EDL 1.0", + "url": "http://www.eclipse.org/org/documents/edl-v10.php" + } + } ], "purl": "pkg:maven/com.sun.mail/jakarta.mail@1.6.4?type=jar", "externalReferences": [ @@ -4114,14 +4212,18 @@ } ], "licenses": [ - {"license": { - "id": "EPL-2.0", - "url": "https://www.eclipse.org/legal/epl-2.0" - }}, - {"license": { - "name": "GNU General Public License, version 2 with the GNU Classpath Exception", - "url": "https://projects.eclipse.org/license/secondary-gpl-2.0-cp" - }} + { + "license": { + "id": "EPL-2.0", + "url": "https://www.eclipse.org/legal/epl-2.0" + } + }, + { + "license": { + "name": "GNU General Public License, version 2 with the GNU Classpath Exception", + "url": "https://projects.eclipse.org/license/secondary-gpl-2.0-cp" + } + } ], "purl": "pkg:maven/org.glassfish/jakarta.json@1.1.6?type=jar", "externalReferences": [ @@ -4185,7 +4287,7 @@ "content": "70a518655780458e24ecf116034397a2bb13cb71244db38b5f06145ef9bcca85a0985e163f7b7682903cb941de4c5f0de4b0c883f273c7bcdabef545a0590281" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.keycloak/keycloak-ldap-federation@10.0.2?type=jar", "externalReferences": [ { @@ -4253,8 +4355,8 @@ } ], "licenses": [ - {"license": {"id": "EPL-2.0"}}, - {"license": {"id": "GPL-2.0-with-classpath-exception"}} + { "license": { "id": "EPL-2.0" } }, + { "license": { "id": "GPL-2.0-with-classpath-exception" } } ], "purl": "pkg:maven/org.jboss.spec.javax.servlet/jboss-servlet-api_4.0_spec@2.0.0.Final?type=jar", "externalReferences": [ @@ -4317,10 +4419,14 @@ "content": "00742fde7cfecc17229be1358f25883cbfc9fbacab2badc9337912f80fb6b7ac1702d342bdefb78becf75967bf3f71a4330a3b11aad6790709cbe5bf618e17ba" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.twitter4j/twitter4j-core@4.0.7?type=jar", "externalReferences": [ { @@ -4383,7 +4489,7 @@ "content": "d86adeaf631775d155e2768d7f65fe1deccb3e3c68bffb271808fba1632a4d89ebe81797c1f1724876e46519a790cc7599d2437097276e5e6a6ef57bbf9728e9" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.jboss.logging/jboss-logging-annotations@2.2.1.Final?type=jar", "externalReferences": [ { @@ -4446,10 +4552,14 @@ "content": "0b881a7214cce81cec0b43f125c0095ddef41fbb4150e3e49c678461cb662799d0554559c15889283a73b19b196cfefd604b1725f346e1455f00dc08378cdebd" } ], - "licenses": [{"license": { - "name": "lgpl", - "url": "http://repository.jboss.org/licenses/lgpl-2.1.txt" - }}], + "licenses": [ + { + "license": { + "name": "lgpl", + "url": "http://repository.jboss.org/licenses/lgpl-2.1.txt" + } + } + ], "purl": "pkg:maven/org.jboss.logging/jboss-logging-processor@2.2.1.Final?type=jar", "externalReferences": [ { @@ -4512,10 +4622,14 @@ "content": "7cdea3e09d94e493e7c86ea0626b7459ac1ee0e8d36a0b3016ac8d5cde12a787803229c537bee5fd3ddde9aa880e44b31d59172ae9fa01817f62e80aba117108" } ], - "licenses": [{"license": { - "name": "Public Domain", - "url": "http://repository.jboss.org/licenses/cc0-1.0.txt" - }}], + "licenses": [ + { + "license": { + "name": "Public Domain", + "url": "http://repository.jboss.org/licenses/cc0-1.0.txt" + } + } + ], "purl": "pkg:maven/org.jboss.jdeparser/jdeparser@2.0.3.Final?type=jar", "externalReferences": [ { @@ -4578,10 +4692,14 @@ "content": "54f54a2895d2387896207481d4c7eda50d84a180b447db4823cba901556b3579dcd2cc1c4e70cff91aa51a5373e5d210ca968fbe8aabf884b7fb2405c167d15f" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.jboss.resteasy/resteasy-multipart-provider@3.11.2.Final?type=jar", "externalReferences": [ { @@ -4648,10 +4766,14 @@ "content": "a0013b3bbf4db7b098980ba33291c7b519abbddae59911be7da0239f04e28b1c071d20414011f1b58082d765135b515f8ee87cc1fed1f7e721d74d0f367eecef" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.jboss.resteasy/resteasy-client@3.11.2.Final?type=jar", "externalReferences": [ { @@ -4718,10 +4840,14 @@ "content": "44580143f9808c4f2e1596501593363c9f1b103ccd8a57c72b531f90049fe486bf3cb545e5174e8e71424533c6f82229353d30da687bdef5dea42c81f14888af" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.jboss.resteasy/resteasy-jaxb-provider@3.11.2.Final?type=jar", "externalReferences": [ { @@ -4788,10 +4914,14 @@ "content": "d390b9bc50d2653836b7af1f43cc6e94bdd0e67c29cd92d916e953ba2891964b48fcdbd6aaf1b89f5cae94199ca7065489efb243fa596cbf414af4c05ab54556" } ], - "licenses": [{"license": { - "name": "Eclipse Distribution License - v 1.0", - "url": "http://www.eclipse.org/org/documents/edl-v10.php" - }}], + "licenses": [ + { + "license": { + "name": "Eclipse Distribution License - v 1.0", + "url": "http://www.eclipse.org/org/documents/edl-v10.php" + } + } + ], "purl": "pkg:maven/org.glassfish.jaxb/jaxb-runtime@2.3.3-b02?type=jar", "externalReferences": [ { @@ -4854,10 +4984,14 @@ "content": "793f04c282ef6f04d425fb97469ec091e572cd485b05f82e6e3a2c20f4c8016f0845e7782950870adb04defb73b072b5701286b938959a13a80e98d0130aed35" } ], - "licenses": [{"license": { - "name": "Eclipse Distribution License - v 1.0", - "url": "http://www.eclipse.org/org/documents/edl-v10.php" - }}], + "licenses": [ + { + "license": { + "name": "Eclipse Distribution License - v 1.0", + "url": "http://www.eclipse.org/org/documents/edl-v10.php" + } + } + ], "purl": "pkg:maven/org.glassfish.jaxb/txw2@2.3.3-b02?type=jar", "externalReferences": [ { @@ -4920,7 +5054,7 @@ "content": "2d2c92675328840c56224a4b1d4ef03adc816add628b80ba4b34e0f6ab434bfa3f08d514011e5f369ee4df9fab637fc61df4fc6e765b83c6aa94c15c47b8c10f" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.james/apache-mime4j@0.6?type=jar", "externalReferences": [ { @@ -4983,7 +5117,7 @@ "content": "68f87922f76ed9c081716b18a402e5e9113b30cffbd03124c08529e9d87c284b14dd8438fabfccf88bc8f861e834c7ad88838589cc2ee436174a3ebc32ce2ad2" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/com.googlecode.owasp-java-html-sanitizer/owasp-java-html-sanitizer@20191001.1?type=jar", "externalReferences": [ { @@ -5050,10 +5184,14 @@ "content": "f5a03f0a85b6532e386079104340101bd3baa767bfd433359bde62dd98063ba6045a594453973cec5ac4a3cf4827222cf114bcba2515cd2054602f9876874aa9" } ], - "licenses": [{"license": { - "name": "The BSD License", - "url": "http://www.opensource.org/licenses/bsd-license.php" - }}], + "licenses": [ + { + "license": { + "name": "The BSD License", + "url": "http://www.opensource.org/licenses/bsd-license.php" + } + } + ], "purl": "pkg:maven/org.codehaus.woodstox/stax2-api@4.2?type=jar", "externalReferences": [ { @@ -5115,7 +5253,7 @@ "content": "5fcd43b4371b475d26792f1879b7626126eecd4920924dc89a919db26be51d6d40595dc67bdf0a8161dbd53fba4c82a4e4c139d93bd8459801ca800a886643c9" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/com.google.zxing/javase@3.4.0?type=jar", "externalReferences": [ { @@ -5177,7 +5315,7 @@ "content": "8470d1fb185f0320bce402fb7ab7ecc1d7b2a4ef96a2e5caf007cb1b3096eeb855ef2f2c6908caf40a630217f7bd2ee393a0959a0635ccf61fefd866eca18ccd" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/com.google.zxing/core@3.4.0?type=jar", "externalReferences": [ { @@ -5240,7 +5378,9 @@ "content": "b7a52696c362e73dba1aa0e82437f1b15a5463b887e18866d0925b0360a56a0980fc4b538e5c85767bc3bd4afc3d642c5355b6d681aaccea5837d5b726409d3f" } ], - "licenses": [{"license": {"name": "BSD 3-clause License w/nuclear disclaimer"}}], + "licenses": [ + { "license": { "name": "BSD 3-clause License w/nuclear disclaimer" } } + ], "purl": "pkg:maven/com.github.jai-imageio/jai-imageio-core@1.4.0?type=jar", "externalReferences": [ { @@ -5303,7 +5443,7 @@ "content": "5af025af035bedfca34cc203b81e06416bf981cc5afcb290d91d98f771665a852aefb7e8bf14162a20e1d78ccc828798ba1cf4ae5fe76956d2aecdad681f5acc" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.keycloak/keycloak-saml-core@10.0.2?type=jar", "externalReferences": [ { @@ -5370,7 +5510,7 @@ "content": "2731753a534139f618f1a8bf464b9f66b553ae69fbb940f7e2877437a068f6ca196e806845ac2ae2c2662adb5c90db59d081553a7ac2a7c57a2ad1b1a96d218f" } ], - "licenses": [{"license": {"id": "EPL-1.0"}}], + "licenses": [{ "license": { "id": "EPL-1.0" } }], "purl": "pkg:maven/com.openshift/openshift-restclient-java@8.0.0.Final?type=jar", "externalReferences": [ { @@ -5432,7 +5572,7 @@ "content": "e8cdaae16f88417a2acba882ef012136764ab92e5253807b8ab07b8b026837164d99c3d0879a5286401c2b314951a7b4d419073f79c249636f29825bcd50efa9" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/com.squareup.okhttp3/okhttp@3.14.2?type=jar", "externalReferences": [ { @@ -5490,7 +5630,7 @@ "content": "121da9911e31293293aac0012fe2fcd665971a62f633df4dbb0ac5e5e87ee384827e5d440cb7e6d9817ad0a0730d25934ab00dd7b97a04ea013f68565797fc60" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/com.squareup.okio/okio@1.17.2?type=jar", "externalReferences": [ { @@ -5548,7 +5688,7 @@ "content": "89e2412c1da3eeee7ec4b8ca7297e664c5f014c95caf3230c7d079e8a2277fa1c425a4bad417bb2deed2d96d0e5a0597c8263972b7630acf393720e7077780c1" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.yaml/snakeyaml@1.14?type=jar", "externalReferences": [ { @@ -5608,14 +5748,18 @@ } ], "licenses": [ - {"license": { - "id": "LGPL-2.1", - "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" - }}, - {"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }} + { + "license": { + "id": "LGPL-2.1", + "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" + } + }, + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } ], "purl": "pkg:maven/org.jboss/jboss-dmr@1.5.0.Final?type=jar", "externalReferences": [ @@ -5679,7 +5823,7 @@ "content": "ffdd0cc08a7b25acb366083905272eb76a5f191d073a2773c538a8ecd1f3ec855d49d110da6a8929d49b8e49cd2169c8d397b4e88a8775fa5b11b66b95250bf5" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.commons/commons-compress@1.18?type=jar", "externalReferences": [ { @@ -5750,7 +5894,7 @@ "content": "25d370d8d933cc8af51070a11b730da721b3e5e9bd8f975e13a3f67d49a30cdde5b93e8565b6cb8d1dd52ce4c0b0f6f0bcd9f369a3f51c4330b7a4288c7322b7" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/commons-codec/commons-codec@1.6?type=jar", "externalReferences": [ { @@ -5821,7 +5965,7 @@ "content": "2e9ffc0608827cffc0b48b7a0f35d371c66586c99fea2910f7c2a237c7c57d9ae4d65de7c8e018362c2e4f963c2f70a9196cebf35457f1dd0cea6c65c256f673" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/commons-lang/commons-lang@2.6?type=jar", "externalReferences": [ { @@ -5891,12 +6035,14 @@ "content": "2d33292896a2dd5dc986b24412d7d9aa400c4dcb12193f3f15b7bfe48d090ff7c2c3ed1ae0bbd9ec8dcd4ba0b6a0e9ba4db24516bc77dc31f6297faaec529d70" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/com.webauthn4j/webauthn4j-core@0.10.2.RELEASE?type=jar", - "externalReferences": [{ - "type": "vcs", - "url": "https://github.com/webauthn4j/webauthn4j" - }] + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/webauthn4j/webauthn4j" + } + ] }, { "type": "library", @@ -5939,12 +6085,14 @@ "content": "2dadb2e09906624fd76486ffc534612b60cd8132d7a4d22133a95531aefefe33210f34ef52cd4a72a836262d8493824c6b94153263b45502bf80bece4cf0d58f" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/com.webauthn4j/webauthn4j-util@0.10.2.RELEASE?type=jar", - "externalReferences": [{ - "type": "vcs", - "url": "https://github.com/webauthn4j/webauthn4j" - }] + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/webauthn4j/webauthn4j" + } + ] }, { "type": "library", @@ -5988,7 +6136,7 @@ "content": "4adc776514773e0af20dec96ce2fc1675c5a4d0cf067828aba9ddc0e538f1c1ec29b3380b359a8c48073b72aa2146089a687a22fbff4e22cfc917000968283f9" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-cbor@2.10.1?type=jar", "externalReferences": [ { @@ -6051,7 +6199,7 @@ "content": "2a80779dc30e17806cf8ebe475a9c767bb02d0204556316654d878d364aec2f5433a1bbd4a75716afc208f4426bceeafc3663e31181a62dcb3ddd74b510e1da3" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.kerby/kerby-asn1@2.0.0?type=jar", "externalReferences": [ { @@ -6114,7 +6262,7 @@ "content": "c10a6ecb53d9e316432d019a3b462bb1053a07e659890f9004488bab99f032fcc1b685436066cb46bf706f00661ce8b1d2f1f49bae014371dabcd7349e69526c" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.keycloak/keycloak-services@10.0.2?type=jar", "externalReferences": [ { @@ -6181,7 +6329,7 @@ "content": "864e9e3fc7fd63e53e2ec8ce91c6ac8c598786288b99bf7875d97fdcb476d03845826f7e380b3810ae04137f694c1571829a1f1ee330140e70308df77fcc40e9" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.keycloak/keycloak-js-adapter@10.0.2?type=jar", "externalReferences": [ { @@ -6248,7 +6396,7 @@ "content": "065c901712d9d3e255cd5126359aa9a8507130fceffc04f0f2ea6f865e571301dfb52b388e7b10ce2fcf12f057d8dea4864d8d70d6a49dddf23142e8feee9815" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.keycloak/keycloak-themes@10.0.2?type=jar", "externalReferences": [ { @@ -6315,7 +6463,7 @@ "content": "3839101bc4bc195cdb06df4d8b89eeb5d55a24350e9bc25cd700540316d23f6fdf22012256687ea0828818a76995bfc4a7b890b59c693839048f0e2e5b1559b2" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.liquibase/liquibase-core@3.5.5?type=jar", "externalReferences": [ { @@ -6375,14 +6523,18 @@ } ], "licenses": [ - {"license": { - "id": "EPL-2.0", - "url": "https://www.eclipse.org/legal/epl-2.0" - }}, - {"license": { - "name": "Eclipse Distribution License v. 1.0", - "url": "http://www.eclipse.org/org/documents/edl-v10.php" - }} + { + "license": { + "id": "EPL-2.0", + "url": "https://www.eclipse.org/legal/epl-2.0" + } + }, + { + "license": { + "name": "Eclipse Distribution License v. 1.0", + "url": "http://www.eclipse.org/org/documents/edl-v10.php" + } + } ], "purl": "pkg:maven/jakarta.persistence/jakarta.persistence-api@2.2.3?type=jar", "externalReferences": [ @@ -6446,10 +6598,14 @@ "content": "cb1154f8d02771a3cadee2f604cae2557cde80989f62ad5d77a5efd357243ef493555d790695ac15dbae538a58b7f51ca1d5b3e41fb4ec0f69f8ad93f904e541" } ], - "licenses": [{"license": { - "id": "LGPL-2.1+", - "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" - }}], + "licenses": [ + { + "license": { + "id": "LGPL-2.1+", + "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" + } + } + ], "purl": "pkg:maven/org.hibernate/hibernate-core@5.3.15.Final?type=jar", "externalReferences": [ { @@ -6508,11 +6664,13 @@ } ], "licenses": [ - {"license": {"id": "EPL-1.0"}}, - {"license": { - "name": "Eclipse Distribution License v. 1.0", - "url": "http://www.eclipse.org/org/documents/edl-v10.php" - }} + { "license": { "id": "EPL-1.0" } }, + { + "license": { + "name": "Eclipse Distribution License v. 1.0", + "url": "http://www.eclipse.org/org/documents/edl-v10.php" + } + } ], "purl": "pkg:maven/javax.persistence/javax.persistence-api@2.2?type=jar", "externalReferences": [ @@ -6577,12 +6735,14 @@ } ], "licenses": [ - {"license": {"id": "MPL-1.1"}}, - {"license": {"id": "LGPL-2.1-only"}}, - {"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }} + { "license": { "id": "MPL-1.1" } }, + { "license": { "id": "LGPL-2.1-only" } }, + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } ], "purl": "pkg:maven/org.javassist/javassist@3.23.2-GA?type=jar", "externalReferences": [ @@ -6637,7 +6797,7 @@ "content": "d8f0771a0e4572c8a2dd9b4908813064894048417b69428bd4a2847d62ff5bd9b844937f8e01486125aeff92929690345195ca6294866b48b5b659405f493026" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/net.bytebuddy/byte-buddy@1.9.11?type=jar", "externalReferences": [ { @@ -6691,10 +6851,14 @@ "content": "3a8ce565280a157dd6e08fb68c317a4c28616099c56bc4992c38cf74a10a54a89e18e7c45190ce8511360798a87adc92f432382f9d9bdde0d56664b50044b517" } ], - "licenses": [{"license": { - "name": "BSD License", - "url": "http://www.antlr.org/license.html" - }}], + "licenses": [ + { + "license": { + "name": "BSD License", + "url": "http://www.antlr.org/license.html" + } + } + ], "purl": "pkg:maven/antlr/antlr@2.7.7?type=jar" }, { @@ -6740,14 +6904,18 @@ } ], "licenses": [ - {"license": { - "name": "Common Development and Distribution License", - "url": "http://repository.jboss.org/licenses/cddl.txt" - }}, - {"license": { - "name": "GNU General Public License, Version 2 with the Classpath Exception", - "url": "http://repository.jboss.org/licenses/gpl-2.0-ce.txt" - }} + { + "license": { + "name": "Common Development and Distribution License", + "url": "http://repository.jboss.org/licenses/cddl.txt" + } + }, + { + "license": { + "name": "GNU General Public License, Version 2 with the Classpath Exception", + "url": "http://repository.jboss.org/licenses/gpl-2.0-ce.txt" + } + } ], "purl": "pkg:maven/org.jboss.spec.javax.transaction/jboss-transaction-api_1.2_spec@1.1.1.Final?type=jar", "externalReferences": [ @@ -6811,7 +6979,7 @@ "content": "3dcb7c05bc78a3d753495627240f954e51c286f40d0f8f73cbb09e78a22cae8465d84b7f08df03136793da2675c0bb81cf30a2e98c8ab0167a0ad7a4bb4c4b43" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.jboss/jandex@2.0.5.Final?type=jar", "externalReferences": [ { @@ -6874,7 +7042,7 @@ "content": "7a7232ce27c016ad55b58e5444e5a6c2ab619d37ad42ea6da4b3e0019a576106dd0486aad7f11783816d4a7066a31c517def607de4e1659d304610282cafb09a" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/com.fasterxml/classmate@1.3.4?type=jar", "externalReferences": [ { @@ -6937,10 +7105,14 @@ "content": "ddf307c3dace3501ab52d647f9bf4a60efd9a4d9dfe66f34518db6e1a8b9747363a2a40eda271a194a180e6340e681455e32b5502fd996d74bc3ec1b310da2f1" } ], - "licenses": [{"license": { - "id": "LGPL-2.1-or-later", - "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" - }}], + "licenses": [ + { + "license": { + "id": "LGPL-2.1-or-later", + "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" + } + } + ], "purl": "pkg:maven/org.hibernate.common/hibernate-commons-annotations@5.0.4.Final?type=jar", "externalReferences": [ { @@ -6999,10 +7171,14 @@ "content": "6f27365a9feb4f895dd6836dc842aa8cf298d75afca5c66fb3250bfb726a1b9aa9352c3e71e548497ff55a8d82fe75bd24469060113ebcb59dac96abc80eb8a8" } ], - "licenses": [{"license": { - "id": "CDDL-1.1", - "url": "http://glassfish.java.net/public/CDDL+GPL_1_1.html" - }}], + "licenses": [ + { + "license": { + "id": "CDDL-1.1", + "url": "http://glassfish.java.net/public/CDDL+GPL_1_1.html" + } + } + ], "purl": "pkg:maven/org.glassfish.jaxb/jaxb-runtime@2.3.1?type=jar", "externalReferences": [ { @@ -7069,10 +7245,14 @@ "content": "bb47124d35db354f632d09e7841ef4b6a65cb2bd00cfb1f4a684a4dc4059a93c4494fadf5cfe839b191308a35a9ec485a5c7d255ecd10017778f21f2fcfda605" } ], - "licenses": [{"license": { - "id": "CDDL-1.1", - "url": "http://glassfish.java.net/public/CDDL+GPL_1_1.html" - }}], + "licenses": [ + { + "license": { + "id": "CDDL-1.1", + "url": "http://glassfish.java.net/public/CDDL+GPL_1_1.html" + } + } + ], "purl": "pkg:maven/org.glassfish.jaxb/txw2@2.3.1?type=jar", "externalReferences": [ { @@ -7139,7 +7319,7 @@ "content": "2c4271dd94d7dea713fedfebd9ffd190a3f6571f45a501700bc132b57b0344f740e114a05e78404e102e445d577dd0d783d76761cc9c83356c5d7435deaabcc3" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/com.sun.xml.fastinfoset/FastInfoset@1.2.15?type=jar", "externalReferences": [ { @@ -7202,10 +7382,14 @@ "content": "613a83b53511056861a8b81c14e087a38ade0076c4a11dcaac7fffb8cad5384b8b9544ff8877f839f731517f9e8ce6d08e91e5fcf3ac9f66cc7efba6ea97dfe7" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.infinispan/infinispan-core@9.4.18.Final?type=jar", "externalReferences": [ { @@ -7272,10 +7456,14 @@ "content": "6d38c04d625f428bff67ede1a6ea65be2a1653c3b70f3e51edb0a4a49b86334484da1069c3bd21cd3954160fb24a8a40e1df9272de03f3717fddf91a5d29dbc7" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.infinispan/infinispan-commons@9.4.18.Final?type=jar", "externalReferences": [ { @@ -7342,10 +7530,14 @@ "content": "bf68d9dc0d73edc4e0aea381b4dc1dc0418f1b541181b48482832a31a529cc73865ed7e1accbe6784d54dccf46b993d6367bcd3b939b2c4b52db8c92eda130e6" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.jgroups/jgroups@4.0.21.Final?type=jar", "externalReferences": [ { @@ -7403,12 +7595,14 @@ "content": "54819a6e5d127034c383d3eaf5f34c4b02f83972e6f3ca4350014deda6ca053cd7b491a950e91d0ff2abbddc2144a10c434775e62f989c068af5efe1bd6ef9c4" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/com.github.ben-manes.caffeine/caffeine@2.6.2?type=jar", - "externalReferences": [{ - "type": "vcs", - "url": "https://github.com/ben-manes/caffeine" - }] + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/ben-manes/caffeine" + } + ] }, { "type": "library", @@ -7452,10 +7646,14 @@ "content": "f0d0f08ee20e2265cb75e2f680255b00f55dbbf536aca6e90ddde2a1a29967183e209ba943f6280125d524191c6be1e3567eaf41adc8f1833aea8fb6ec4f3d9f" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.jboss.marshalling/jboss-marshalling-osgi@2.0.6.Final?type=jar", "externalReferences": [ { @@ -7517,12 +7715,14 @@ "content": "48163fd961e7b1a9cdaca540b50c8617e7d1a34122783ffc49a01056b3396e17afd5d6dbb03cfeaf9531d3ae2b16c1ddbe8d498ca38babc75d95fb9e1af353f0" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/io.reactivex.rxjava2/rxjava@2.2.4?type=jar", - "externalReferences": [{ - "type": "issue-tracker", - "url": "https://github.com/ReactiveX/RxJava/issues" - }] + "externalReferences": [ + { + "type": "issue-tracker", + "url": "https://github.com/ReactiveX/RxJava/issues" + } + ] }, { "type": "library", @@ -7565,10 +7765,14 @@ "content": "ea12a0144462157973925b78500cb26376b326f51ff8e738226389277b79b118def4c1b7fc189531bcebaf17cc6d8317e31c6ce88a1b197b65a7ddafb45a4d67" } ], - "licenses": [{"license": { - "name": "CC0", - "url": "http://creativecommons.org/publicdomain/zero/1.0/" - }}], + "licenses": [ + { + "license": { + "name": "CC0", + "url": "http://creativecommons.org/publicdomain/zero/1.0/" + } + } + ], "purl": "pkg:maven/org.reactivestreams/reactive-streams@1.0.2?type=jar" }, { @@ -7613,10 +7817,14 @@ "content": "d3d5e042afa5f5deb1bb44fa390ae2e68c1535febda21f50d817fa893aba60d81a7439402652d1602dfd9206a4b56dc07c88c2479849eb64f3f63b35e73cdd0b" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.infinispan/infinispan-cachestore-remote@9.4.18.Final?type=jar", "externalReferences": [ { @@ -7683,10 +7891,14 @@ "content": "c571a1908ac981ccacfabf8654a19b649e60e47b18d0317b707b8b5433fe0b2b23274862a3eb013fbf75c54378145f9bef2786a0319851acd1edf66e65f33566" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.infinispan/infinispan-client-hotrod@9.4.18.Final?type=jar", "externalReferences": [ { @@ -7753,7 +7965,7 @@ "content": "1ee3f3265d951d73dd9737b9e3fcfc49d5ee09e227a87023e869bc6707f9c699f8601951c60e74b3337bf05071f407da4cd7009aab9a0a978acd0b9facb8bcd4" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/io.netty/netty-handler@4.1.45.Final?type=jar", "externalReferences": [ { @@ -7812,7 +8024,7 @@ "content": "e33f84777936b0c157d0ecb6afaf610f678ec99cb7fc88573dfe1e89b35738b7d5588009dbe4b897c0daa5cb4ac63b4f1f29ac42602db6fb39b7af1c812a8d56" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/io.netty/netty-common@4.1.45.Final?type=jar", "externalReferences": [ { @@ -7871,7 +8083,7 @@ "content": "54e5ea42a80020b4eca2f0f7d49ccf553a8c5288d2830f50980d2bdaa00e9157cc786d94d1e0cfe7d7308618e52aeeeadf6aa1490b0676fc0aa499f388faa86a" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/io.netty/netty-buffer@4.1.45.Final?type=jar", "externalReferences": [ { @@ -7930,7 +8142,7 @@ "content": "5a777226d0c9a188bdecefbf46d6b8662107be035b9295c06ab76b685bce5f9b03e841f2ed641a19bfeb8d71084de53c817b495caa5109266b35216aa126f2e1" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/io.netty/netty-transport@4.1.45.Final?type=jar", "externalReferences": [ { @@ -7989,7 +8201,7 @@ "content": "92b03f6909acf76c14f35f356750f6276a95b67c1e6c6fa12d9275061e34692212f9104156d530de11deacbe7b34bca22ea8a97e64c7cc32bd7a92645d2423cd" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/io.netty/netty-resolver@4.1.45.Final?type=jar", "externalReferences": [ { @@ -8048,7 +8260,7 @@ "content": "f5bf290515aee5bac2989087ce19dee7730e04bfc0e12052a619a7e9355a996c79b0c87aecc9710cd26294409b7662517b3dc631622361ad1e3e20f74f392e52" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/io.netty/netty-codec@4.1.45.Final?type=jar", "externalReferences": [ { @@ -8107,7 +8319,7 @@ "content": "62c77f0431cbc63b81abc3775b94842350e8dc6fbcae59e9c9c1336366c9404f98ea3a2f69b0b1984701c4778f126337e1d8305ea139d2cd68d57cd8c9cd4eb6" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/io.netty/netty-transport-native-epoll@4.1.45.Final?classifier=linux-x86_64&type=jar", "externalReferences": [ { @@ -8166,7 +8378,7 @@ "content": "d54a4f5106d53305fae01e4a18893788d4660b3c718acdbad69da5d22d7d3d0a4c539eaa6c071e45fc879af77634c01c8f0e1451c1057a4b06818c0871a302d3" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/io.netty/netty-transport-native-unix-common@4.1.45.Final?type=jar", "externalReferences": [ { @@ -8224,7 +8436,7 @@ "content": "04f2699f97fd1ca0cc3bcdbe3871f71d3c71592a51c002e607b73a866f564ff3586d5353340f9ad6fde27afe7ff9d7683e55a3be776e7c99f708f4754114cc54" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/com.google.code.gson/gson@2.8.2?type=jar", "externalReferences": [ { @@ -8283,10 +8495,14 @@ "content": "ce814dddd6729c14d9c56ca5bad727461fc7fbff99f7cf7b9439723dcf68d009b316b868ddf9ac0045e4bf3d04671d4d321cbd63c6a4eee85afe86d9b80ad440" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.infinispan/infinispan-multimap@9.4.18.Final?type=jar", "externalReferences": [ { @@ -8353,20 +8569,26 @@ } ], "licenses": [ - {"license": { - "name": "LGPL, version 2.1", - "url": "http://www.gnu.org/licenses/licenses.html" - }}, - {"license": { - "name": "ASL, version 2", - "url": "http://www.apache.org/licenses/" - }} + { + "license": { + "name": "LGPL, version 2.1", + "url": "http://www.gnu.org/licenses/licenses.html" + } + }, + { + "license": { + "name": "ASL, version 2", + "url": "http://www.apache.org/licenses/" + } + } ], "purl": "pkg:maven/net.java.dev.jna/jna@4.1.0?type=jar", - "externalReferences": [{ - "type": "vcs", - "url": "https://github.com/twall/jna" - }] + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/twall/jna" + } + ] }, { "type": "library", @@ -8452,7 +8674,7 @@ "content": "7b2474c5436770e3b8afdf0021db268a152e01bab8f7e8a876e8c3381fccdc893a8bffc3e48574212b6fe158973f364ec9ffa37bc392d8f637afa8228321566a" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.keycloak/keycloak-model-jpa@10.0.2?type=jar", "externalReferences": [ { @@ -8519,7 +8741,7 @@ "content": "04fd66a4b4b738c6c0b6d3e2488c71c02fcbe3875031fdc366f2aeb07d162efd04880f3a6d9a6efc1fa702a16878274eaaf36a60536f9bffc4a190aceb16f5c3" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.keycloak/keycloak-model-infinispan@10.0.2?type=jar", "externalReferences": [ { @@ -8586,7 +8808,7 @@ "content": "a89d97d3fab530362748a0b561a195d01fa947e75c72368ae990c985edecc787c0be33b79f1bd0a51069e1f7aa904fc003736903dfc02ce8a5519652379ffafd" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.keycloak/keycloak-sssd-federation@10.0.2?type=jar", "externalReferences": [ { @@ -8653,7 +8875,7 @@ "content": "9f209c19496248b0cdfc4aeee1f2af9c27847f1736b61e3fa31a6d0e5b35ea4d610eec9a332b4d162007b937f946c91f61064359d314b19d3b858d2bbff2b84e" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.keycloak/keycloak-authz-policy-common@10.0.2?type=jar", "externalReferences": [ { @@ -8720,7 +8942,7 @@ "content": "0e4a21cb87a6b8626aa8f580b307039d2b060a6abc53d35feac9ecb8ffc2e80b627a12a869b5b5bf30a6e9348cd4c5c3edca937859141614f3c1b14bd8d4ef93" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/log4j/log4j@1.2.17?type=jar", "externalReferences": [ { @@ -8787,10 +9009,14 @@ "content": "48b68b2ad64d06a0748adacfe73618a7c401a8bdea9e6850020d16d09fae26200b425ab42ecc5d7bb2271e4a97939bacfc03cce3b1b9eee2565a07f03ec66697" } ], - "licenses": [{"license": { - "id": "MIT", - "url": "https://opensource.org/licenses/MIT" - }}], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], "purl": "pkg:maven/org.slf4j/slf4j-log4j12@1.7.22?type=jar", "externalReferences": [ { @@ -8849,7 +9075,7 @@ "content": "7f7073670a465aa3748a3ac658a598aba9c268bb8d41d0e337bdb6683b8891cebd88f353abbb0e1dc4a83134e981636e6b396e7c53bda46cd2f8fb9097563030" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.directory.server/apacheds-core-annotations@2.0.0-M24?type=jar", "externalReferences": [ { @@ -8920,7 +9146,7 @@ "content": "f412c5f42b6d8964c4bc3fc45fea601fcb3324211d28f730fcda75bd914a536670888d88de12594428c812ff1e73f5c807f7e669b4a551fa3449b4d1ca3d0807" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.directory.server/apacheds-core@2.0.0-M24?type=jar", "externalReferences": [ { @@ -8991,7 +9217,7 @@ "content": "c7b9139c753bd99279e8a66a384ca174c9e2268f5b4700103323b003f290d77708e9a95577b6c0fa5fe90e840a665e667ad70c53381aa10a928e1a2206750f61" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.directory.server/apacheds-interceptors-admin@2.0.0-M24?type=jar", "externalReferences": [ { @@ -9062,7 +9288,7 @@ "content": "b0d630271a806b45db1a14b6b71a692aa40b25c621e1920339dd3e4529aebe7cf3b81ddfd7af49d6a9bca5f9fc0486d26bf72b0e57c16fdf1a6c25411b0afd99" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.directory.server/apacheds-interceptors-authn@2.0.0-M24?type=jar", "externalReferences": [ { @@ -9133,7 +9359,7 @@ "content": "ad470a32a3364d761d7589f8bfa407d14832ddfa4ea736b007d57b3d5abd10b6540ac28b5ebff84011b6dfa70d393c7521af51e0204a5d4319d5eee93839c205" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.directory.server/apacheds-interceptors-number@2.0.0-M24?type=jar", "externalReferences": [ { @@ -9204,7 +9430,7 @@ "content": "fc31f97e5240aa81de50fec91345ff45291d4bee5ef7c11d80405c3647bfd6805e8e4dc7d0b6f4e84137f48f7392397318ea2883f8fdbc798953c6d8c7e736f6" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.directory.server/apacheds-interceptors-authz@2.0.0-M24?type=jar", "externalReferences": [ { @@ -9275,7 +9501,7 @@ "content": "e45f7f8fdacc40edbee410c60e800da5afdba2be62eb87cfc6f430e36d605370dad401d844fe0f6da9928604aeafdf3b3559914deef6674720d5ec5cb8d45164" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.directory.server/apacheds-interceptors-changelog@2.0.0-M24?type=jar", "externalReferences": [ { @@ -9346,7 +9572,7 @@ "content": "0f577ada4a7736e986afa35b163e6deba053e1bee3ed9c184da013f07afe7ee8c000ea12780adbca3918043ce87cb83092968741d5563aeec4e9d7e59f610673" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.directory.server/apacheds-interceptors-collective@2.0.0-M24?type=jar", "externalReferences": [ { @@ -9417,7 +9643,7 @@ "content": "3ac3134c2fb3760594797066d53aeeb2d97a91e0ad0827e134c182098fd543874f706783fd88cf92051396d27fa2a7dc04bcfdd311f335fede1af5c30924c357" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.directory.server/apacheds-interceptors-event@2.0.0-M24?type=jar", "externalReferences": [ { @@ -9488,7 +9714,7 @@ "content": "de61e95ecd33577b1c1ec96f64364cbea9b2998ff239aebd4c3ca86f8bca773cfd8e72ceb7a97a55089b700de7b6a5bb5ee3cea2b586b662cd2738060f9cfbdf" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.directory.server/apacheds-interceptors-exception@2.0.0-M24?type=jar", "externalReferences": [ { @@ -9559,7 +9785,7 @@ "content": "03b70e2e0264e9c4a59d6dd43657af1a4037514d1b68d7049dced621435b81b66393a480e3667795656e790d708c0ed479d295c816bebe21b91f18afc008baaf" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.directory.server/apacheds-interceptors-journal@2.0.0-M24?type=jar", "externalReferences": [ { @@ -9630,7 +9856,7 @@ "content": "3b397afb2d153486008222f6d3d926afd23968cf0a5ff8aaf8bbcf31b8f121b7731ec8bd4cb0fe2f5a094f00a67d845f7f4aa8723e1db898d5f1ab5ab197a998" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.directory.server/apacheds-interceptors-normalization@2.0.0-M24?type=jar", "externalReferences": [ { @@ -9701,7 +9927,7 @@ "content": "97444e5baed9f5d5300cd3f2913a9f631ec2f48cff3c90925da098425ee615a81c591ea19a25a06843737e5737a9dbe03aed0122f92e89e5f592f4cbcabd49b6" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.directory.server/apacheds-interceptors-operational@2.0.0-M24?type=jar", "externalReferences": [ { @@ -9772,7 +9998,7 @@ "content": "2d4f169d62f885011bc923fae1b6b266f44fc94a2693cdd0c25cee994e743b72300c2884b43c1e5191af05ad1fd4cde2dc59ebaaf0e39a2cb9a94806b7b3b1a0" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.directory.server/apacheds-interceptors-referral@2.0.0-M24?type=jar", "externalReferences": [ { @@ -9843,7 +10069,7 @@ "content": "f3fb89a47440dc6c48e50c697008bada73ac9ae87c751e47360b105ba47ed051498327e9c08d2a0105fb35ec0fb9ef86b52b340935c4c881e9e334b8fbc0fe9d" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.directory.server/apacheds-interceptors-schema@2.0.0-M24?type=jar", "externalReferences": [ { @@ -9914,7 +10140,7 @@ "content": "ecaa07b6c2bdc8d3076e5272b6e9ebd035c12ca48a495804a93dfc709e78bc9987792c9f002e911b90d99f602a55597f190398f57bcdb5e6b5aff484681f457e" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.directory.server/apacheds-interceptors-subtree@2.0.0-M24?type=jar", "externalReferences": [ { @@ -9985,7 +10211,7 @@ "content": "c5a8568bf676322b7acc3e9e5f20e8069fc0170115df642178262bd4fd1a48cd86164706594a260bb930766aea19970ed59206451007bee734f0ff58b385bf12" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.directory.server/apacheds-interceptors-trigger@2.0.0-M24?type=jar", "externalReferences": [ { @@ -10056,7 +10282,7 @@ "content": "dcc1eec972b4b2083ce683a37cf97df9ec473d6d0b72bf82b12b6734531f24df7578ac76f37e32791614d33019104be09cf75c3a7e3036c2980660d75bb0de67" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.directory.api/api-ldap-extras-trigger@1.0.0?type=jar", "externalReferences": [ { @@ -10127,7 +10353,7 @@ "content": "b64394fea7de7fc9fdf64ff2286a8f96d7aa634275b251501247146b80fe75a20a36cde69316cbad40e38ea35964be60d9f8f1288bb3fc935c40b1415ed548f8" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.directory.api/api-ldap-extras-util@1.0.0?type=jar", "externalReferences": [ { @@ -10198,7 +10424,7 @@ "content": "4fc29f63bcd8d26f724232a6931f7b7fb6dfa2c2dacd10d4ec7f6868d229cb128bb704a54212ea0bb9049fb0d3fc0531f12e8231adfd5a7cc45d56344eb27f80" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.directory.server/apacheds-core-api@2.0.0-M24?type=jar", "externalReferences": [ { @@ -10269,7 +10495,7 @@ "content": "cdea31829588b5f27ea02fc688a124c05d52f658b99d2b024fdb66f88bd1ce2697789e887dcd1a6416b23dbb06e956db7754ee2af011e021c88967ca042e0033" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.directory.server/apacheds-core-constants@2.0.0-M24?type=jar", "externalReferences": [ { @@ -10340,7 +10566,7 @@ "content": "a2a53d6c656852cff06b6fbc28b0432626d349c7f5864cb6ed1c438da6d05a5119d2e6b59a2e683967f598c378612c663bf03cf74cb491dd02bb6850e697c039" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.directory.api/api-i18n@1.0.0?type=jar", "externalReferences": [ { @@ -10411,7 +10637,7 @@ "content": "1520a5f5fa6f95a932477335dcbe85f45ec60e7fe2d35aacd3a8472594bd4c05e6ab7d849a985c5b1d1a70235be4aa706e543d4d58f1e06bff3d865ab6fd7879" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.directory.api/api-ldap-client-api@1.0.0?type=jar", "externalReferences": [ { @@ -10482,7 +10708,7 @@ "content": "a5294db60c04c0603d982af2c2b46f0052c5ff73f8a4298a01c378050f3476199e5c678b754604a76d68eb537ba4d4f30edddb16a8447b76b5b947922a00f5f2" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/commons-pool/commons-pool@1.6?type=jar", "externalReferences": [ { @@ -10553,7 +10779,7 @@ "content": "03ba3283940ebdb115a6ee8cdd390b4c9fa288b9d377398998064c1bec49ca2cd2e792e11b40109dbe98d45f3c5ca23e83fefb680259ce0ac960eb3f427ede27" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.directory.api/api-ldap-extras-aci@1.0.0?type=jar", "externalReferences": [ { @@ -10624,7 +10850,7 @@ "content": "19dfc5bbe9de559d5adde227754c173260fc28a11b8294e96341d8ac611c1fd14a3470372646cb0d86c8bee18804eb9bd3b1ffd4d42bb63af399d5d2afd3e1aa" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/net.sf.ehcache/ehcache@2.10.4?type=jar", "externalReferences": [ { @@ -10687,7 +10913,7 @@ "content": "77e378a42e1057ab4fd9290001faa3ad9046605da5a160287cf468d7ea8ddf966b1f28d4dba2e5171d8f0e507029a53b09ed477e6e8893ad982d8e49c7b5995c" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.directory.server/apacheds-core-shared@2.0.0-M24?type=jar", "externalReferences": [ { @@ -10758,7 +10984,7 @@ "content": "cd083cc8f3a7d40ba1b12b4dacb40862bdf93ce67b4e7fce78cd5364788fc94acbf2e45762de7033f1a7bcae3f52b0beefcdaabc87af6b9ce722994784a8ec8e" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.directory.api/api-ldap-extras-codec-api@1.0.0?type=jar", "externalReferences": [ { @@ -10829,7 +11055,7 @@ "content": "f42f90b8f301e026b8ed0f9e3df22e23b9811dcd73fe97bd59eb892acb87cbb6078e2451c7cee670a1d4dfb9b7450df322a23a1edb27c65a75df62a9a90f8d2b" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.directory.jdbm/apacheds-jdbm1@2.0.0-M3?type=jar", "externalReferences": [ { @@ -10900,7 +11126,7 @@ "content": "a329066d45f949060b3987b27956bf531802a53a9c7125526792661547d10b00dd27f8e6209181dd03b736b42ea185b8e90cb4c5d79c2cf8b30648b73186f1a9" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.directory.server/apacheds-ldif-partition@2.0.0-M24?type=jar", "externalReferences": [ { @@ -10971,7 +11197,7 @@ "content": "cf1c6dfc62254f00e8c5b7b847e230f61a2356d095f2e629dee8e9ad3fd5b61d07c2f3084698037522e35c21259d7cd1bf676d15556cee5ec0f281ecef6117da" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.directory.server/apacheds-i18n@2.0.0-M24?type=jar", "externalReferences": [ { @@ -11042,7 +11268,7 @@ "content": "9eeca5904e3ef95e04b5fb645e1de75a4714b40a4576e4fe2ee0f9d22d01ba54520046fc2445bd8ccb04181989e03f2c3fcc5c74667851c64048b9fe6065385c" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.directory.server/apacheds-jdbm-partition@2.0.0-M24?type=jar", "externalReferences": [ { @@ -11113,7 +11339,7 @@ "content": "d0da5bbdf1793b5b7c6d3970c28fa3748646ba425fd1a94486c41c75d1ea6cb9d78a9af63de9c3272fcc3dbcc600b5110a3d67882093975e4be9a361ad516e90" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.directory.server/apacheds-core-avl@2.0.0-M24?type=jar", "externalReferences": [ { @@ -11184,7 +11410,7 @@ "content": "9ff8d7ba259a8945333659b3eb78dbbbc96c247a6161c2eb1e297a87cc427ca52b91a2f189b8501b497df7d2e53f85cd2fc979c50c8fa9a4b29b4dd9102f708a" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.directory.server/apacheds-xdbm-partition@2.0.0-M24?type=jar", "externalReferences": [ { @@ -11255,7 +11481,7 @@ "content": "c2a523916fb7c7d55a05d5e3d9e9b33000733f4b20a71be174e4e093e3f06ea78ad831edd1505527da7388105f8647efb7d5666ba852c90b4e2d5bb74256efbc" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/commons-collections/commons-collections@3.2.2?type=jar", "externalReferences": [ { @@ -11326,7 +11552,7 @@ "content": "4e553aa43d6d884cd1317e0026316544d54252302c478fac6275e5411dc37333188ff947842bf79e6fc08af7c59f0e08f1ca23940c071bf0ba7b22f0cc088ec8" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.directory.mavibot/mavibot@1.0.0-M8?type=jar", "externalReferences": [ { @@ -11397,7 +11623,7 @@ "content": "84121ad653769f60dce9104ecf32a95830be3a1b781b2a4901592da6d0c4869559e948bd760ec0fbba1464b75d36d847f9bfd8cee06b4870a61427edf65687b5" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.directory.server/apacheds-mavibot-partition@2.0.0-M24?type=jar", "externalReferences": [ { @@ -11468,7 +11694,7 @@ "content": "c754fa0e3de41d94e07138167480814146571dcfb43c2adae2a710d80ca556714c110f17762b8e76abc90ee442ca367e2b729eb357f7e92820298f2350952676" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.directory.api/api-ldap-model@1.0.0?type=jar", "externalReferences": [ { @@ -11539,7 +11765,7 @@ "content": "639b25707c8a503e914b7d0056ae1c9be288f0c004d5a10b0e87c9021d115bc80c5da1dc83aa13d265012f2473fa04d756332c833b20d15da0d35566af9edf04" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.directory.api/api-asn1-ber@1.0.0?type=jar", "externalReferences": [ { @@ -11610,7 +11836,7 @@ "content": "818f642ed9ac9134209483793ddb78027d2182b467fdfa9f6eeb6c32ae68c75c8320fc83c12faaabe63c1545485678d627b0ba2a0300156cc2df7f2c0c873828" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.servicemix.bundles/org.apache.servicemix.bundles.antlr@2.7.7_5?type=jar", "externalReferences": [ { @@ -11677,7 +11903,7 @@ "content": "473ad932b9f0851c7548e47304ce30567fb528ece28df818b61f42ea04f6198ef60f6f73c7b22cff612d61d3a6efaf0c7a0dec3922fea2bf4493d32f0a6dff41" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/commons-codec/commons-codec@1.10?type=jar", "externalReferences": [ { @@ -11748,7 +11974,7 @@ "content": "8d56b6e3c8d02a6eaf659d38f373508b049699ed95c4ff1e8491cf32135eb70e4fe49d3270cdf4c8be8f2fd9f109e337c559d39d39f6b5479cf28f1dee4727fa" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.directory.api/api-ldap-schema-data@1.0.0?type=jar", "externalReferences": [ { @@ -11819,7 +12045,7 @@ "content": "ed25f79c35724d2b8b8f5f9ec3afb9841f743514642cafd9f1c00b47440f0441c3c05a2c05204e9291201ceb1527f5393a044dda292132f081082aa3f9f164e9" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.directory.api/api-util@1.0.0?type=jar", "externalReferences": [ { @@ -11890,7 +12116,7 @@ "content": "8d0d9f7f520a5e6ad380d10619072a86d7a676482490f1368b29142c64ea5df6db324cadc782a697415d9a2885107a28982ea7cf7bdd6242d14abbf030f8be44" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.directory.server/apacheds-interceptor-kerberos@2.0.0-M24?type=jar", "externalReferences": [ { @@ -11961,7 +12187,7 @@ "content": "39ef4cdc8c34413199f5285932afa7f1c875ec5d1b5046dff419ebc78060fda0f478f6db7595f4f753d8cf685937a885447ef93244b1c556fcda19240aa53cf5" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.directory.server/apacheds-kerberos-codec@2.0.0-M24?type=jar", "externalReferences": [ { @@ -12032,7 +12258,7 @@ "content": "785fd6092594583ad4b99c0a71aacc4d2b729f33f808fb2919d7a82e7044a10fb79623b4044c48867ab3ca4e697be4a49d504fe61bcf26d230666392e9e3bb86" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.directory.api/api-asn1-api@1.0.0?type=jar", "externalReferences": [ { @@ -12103,7 +12329,7 @@ "content": "0ceaedcbe54ca8b70be394ced4dd0552c641027bf88d4cdd454066ef72d4370251c4c4d95c13d008212e1fb97127d49705a649d62debcb8eae0ac973d1aebb88" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.directory.server/apacheds-server-annotations@2.0.0-M24?type=jar", "externalReferences": [ { @@ -12174,7 +12400,7 @@ "content": "8315efd3b14dab24e01bd39d0ee760caf4d4b5eeeac94ee43f1903481d51e6b8dc94fcefce7930aa16718fce4b703791feaf4466f7c108802ab9d00d6e8c6d63" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.directory.server/apacheds-protocol-kerberos@2.0.0-M24?type=jar", "externalReferences": [ { @@ -12245,7 +12471,7 @@ "content": "9191c1226e8512e0fd3dd5e843bd7e8bfe0cfc5350c7651734123159b1b24ce4538cd078617e5fcb253cb7b85d2b33174cfcf3f8a032f84c1f122a7f243745e7" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.directory.server/apacheds-protocol-ldap@2.0.0-M24?type=jar", "externalReferences": [ { @@ -12316,7 +12542,7 @@ "content": "c260d2cf3508b2d71753f75962d63d3629c0117573f5c53324ada1002cc297eb72c7a849895b4acca69ec981be518c2e768904c33fed004829ab42cbc999cf3f" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.directory.api/api-ldap-extras-sp@1.0.0?type=jar", "externalReferences": [ { @@ -12387,7 +12613,7 @@ "content": "0c8a70cc5f5bc768dfca52274d9173fd5a129ac2c9ab34116db34556d54631b5dc590919bbf930edc596e6496631e492d569573f6800d623bc670af4581f54e8" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.directory.server/apacheds-protocol-shared@2.0.0-M24?type=jar", "externalReferences": [ { @@ -12458,7 +12684,7 @@ "content": "52cf13162119cb70ee3f70c95918176b09790c8a313a7c8aafd905bd7a301f0d7354b02f89b31ccf340bf9156974eb7ceccc92742c6fc3ad747caf809e669cc1" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.directory.api/api-ldap-codec-core@1.0.0?type=jar", "externalReferences": [ { @@ -12529,7 +12755,7 @@ "content": "bde99a3d463ddeaa5fdc2ad7517c0c95e92cf0e9cb73fc1b34b308149d178aea2fc0768776f472598072b3da9d5ac0c385ea49cd6d5473f59ac4b949c7a15e25" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.mina/mina-core@2.0.16?type=jar", "externalReferences": [ { @@ -12596,7 +12822,7 @@ "content": "4abc56ca5e7a782da1e92a4d79950887cd92598dbcc4c1dbd3eff2601b2fda2c837dff52045ef989464849e55af8f7097d82bd43c3f3131c5313bb6d7a1c1151" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.directory.api/api-ldap-codec-standalone@1.0.0?type=jar", "externalReferences": [ { @@ -12667,7 +12893,7 @@ "content": "bee868741224df0803261961cce6d0ec0ec351d2e7305828f76093aa2824d65a97243de6514a59a6398c8c203ba31b0d1e003dda32930ab15d387bd5cd2e59a9" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.directory.api/api-ldap-net-mina@1.0.0?type=jar", "externalReferences": [ { @@ -12738,7 +12964,7 @@ "content": "1992bbc2a8067348eabe1cfe8d9d4c4f0768c367f0315a77b7f86a702523b2976c6de2bb42a4f439a04b3e1a5179b6cc3f9601d8336f457286ee3cf997a92b95" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.directory.api/api-ldap-extras-codec@1.0.0?type=jar", "externalReferences": [ { @@ -12810,14 +13036,18 @@ } ], "licenses": [ - {"license": { - "id": "LGPL-2.1-or-later", - "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" - }}, - {"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }} + { + "license": { + "id": "LGPL-2.1-or-later", + "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" + } + }, + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } ], "purl": "pkg:maven/org.wildfly.core/wildfly-domain-management@11.1.1.Final?type=jar", "externalReferences": [ @@ -12881,10 +13111,14 @@ "content": "363cc3dc5578e7bed636e6ab60f19f23133d644e99e56e36049c504c79556498565dcd6b67860099602e4d30b9bef88f9f90c34bf2687258c6845a0d71236b20" } ], - "licenses": [{"license": { - "id": "LGPL-2.1", - "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" - }}], + "licenses": [ + { + "license": { + "id": "LGPL-2.1", + "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" + } + } + ], "purl": "pkg:maven/org.jboss.msc/jboss-msc@1.4.11.Final?type=jar", "externalReferences": [ { @@ -12947,10 +13181,14 @@ "content": "f30e10db5fdffd15218a1cc64af7c4a406d61834e0992a84edce34b14657c481545229300f3061e954aef003fbbcd268b77bc5d0ac55705f8329c2d0600ebc0c" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.jboss.threads/jboss-threads@2.3.2.Final?type=jar", "externalReferences": [ { @@ -13013,10 +13251,14 @@ "content": "96fa4af7ff049a0c1d44b81eac60e129c67b98de846f094461cf730801cded818b057c8ae4909bcd957ead9d43418e8d65c708ec81d7bf13b46014c5b840ef81" } ], - "licenses": [{"license": { - "name": "lgpl", - "url": "http://repository.jboss.org/licenses/lgpl-2.1.txt" - }}], + "licenses": [ + { + "license": { + "name": "lgpl", + "url": "http://repository.jboss.org/licenses/lgpl-2.1.txt" + } + } + ], "purl": "pkg:maven/org.picketbox/picketbox@5.0.3.Final?type=jar", "externalReferences": [ { @@ -13076,14 +13318,18 @@ } ], "licenses": [ - {"license": { - "id": "LGPL-2.1-or-later", - "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" - }}, - {"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }} + { + "license": { + "id": "LGPL-2.1-or-later", + "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" + } + }, + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } ], "purl": "pkg:maven/org.wildfly.core/wildfly-controller@11.1.1.Final?type=jar", "externalReferences": [ @@ -13148,14 +13394,18 @@ } ], "licenses": [ - {"license": { - "id": "LGPL-2.1-or-later", - "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" - }}, - {"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }} + { + "license": { + "id": "LGPL-2.1-or-later", + "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" + } + }, + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } ], "purl": "pkg:maven/org.wildfly.core/wildfly-controller-client@11.1.1.Final?type=jar", "externalReferences": [ @@ -13220,14 +13470,18 @@ } ], "licenses": [ - {"license": { - "id": "LGPL-2.1-or-later", - "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" - }}, - {"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }} + { + "license": { + "id": "LGPL-2.1-or-later", + "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" + } + }, + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } ], "purl": "pkg:maven/org.wildfly.core/wildfly-protocol@11.1.1.Final?type=jar", "externalReferences": [ @@ -13291,10 +13545,14 @@ "content": "ab247f951b669ff05a3d65c967ae315443f0992e767b5e72bd377ea893c94762608ff6a11d82c86d9f8ec3bafffc800de9196f82e3ec52dc8721e408df026b97" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.jboss.remoting/jboss-remoting@5.0.17.Final?type=jar", "externalReferences": [ { @@ -13357,10 +13615,14 @@ "content": "e1e4c329f167828f8b8ad96c23ee935d4a537612c7714342071f6d817249cd4c5ab9f0305aee5a8e001313c9b6299cbe929785914d13ebbd274f251b548df08b" } ], - "licenses": [{"license": { - "name": "Public Domain", - "url": "http://repository.jboss.org/licenses/cc0-1.0.txt" - }}], + "licenses": [ + { + "license": { + "name": "Public Domain", + "url": "http://repository.jboss.org/licenses/cc0-1.0.txt" + } + } + ], "purl": "pkg:maven/org.wildfly.client/wildfly-client-config@1.0.0.CR2?type=jar", "externalReferences": [ { @@ -13423,10 +13685,14 @@ "content": "d73d8014aa1e87105984ae90d6aab4d477a3e0e4e9f342a6a4b9cabf1284d688a4c17740ad90dbea0f774e5f6eca1318c4ab0d6afb5a15036d7d0ae4a982fcc3" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.jboss.xnio/xnio-api@3.7.7.Final?type=jar", "externalReferences": [ { @@ -13489,10 +13755,14 @@ "content": "602b29bf573593af8695d5172017d6634f68669ee6c453cf934ecc24c8c557bda126cd42749f2f96f04a6fdd85d3b6791c9139a559fe118c901c2647f960d46e" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.jboss.xnio/xnio-nio@3.7.7.Final?type=jar", "externalReferences": [ { @@ -13555,10 +13825,14 @@ "content": "02b524ff3422f8cadbf8571d3f40a9be6fcb13ef06e5d4721c2181fd4bfa013f1e521298c73011ceb9364c0734fdbffe402549203ef8ba3347288b60624925a7" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.security/wildfly-elytron@1.11.4.Final?type=jar", "externalReferences": [ { @@ -13622,14 +13896,18 @@ } ], "licenses": [ - {"license": { - "id": "LGPL-2.1-or-later", - "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" - }}, - {"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }} + { + "license": { + "id": "LGPL-2.1-or-later", + "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" + } + }, + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } ], "purl": "pkg:maven/org.wildfly.core/wildfly-version@11.1.1.Final?type=jar", "externalReferences": [ @@ -13694,14 +13972,18 @@ } ], "licenses": [ - {"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}, - {"license": { - "name": "Indiana University Extreme! Lab Software License 1.1.1", - "url": "http://www.bearcave.com/software/java/xml/xmlpull_license.html" - }} + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + }, + { + "license": { + "name": "Indiana University Extreme! Lab Software License 1.1.1", + "url": "http://www.bearcave.com/software/java/xml/xmlpull_license.html" + } + } ], "purl": "pkg:maven/org.jboss.modules/jboss-modules@1.10.0.Final?type=jar", "externalReferences": [ @@ -13765,10 +14047,14 @@ "content": "24fc6df7f7019767f74256f37ba3cc591454b747b281d0cb04f8a49ac334b16bb23d055dfad3f9ae3302a51dd01378fc1b4e33804ac5eaed7a385f085413a997" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.jboss.logmanager/jboss-logmanager@2.1.14.Final?type=jar", "externalReferences": [ { @@ -13831,10 +14117,14 @@ "content": "ed47a0678f825424a7b374bd0e44b921f5f3f800a1618659a26dc31f3d01f41124e41f994ca5dfc09ba785b8f00f2f68610a2f6137ed265890252e0753997fbb" } ], - "licenses": [{"license": { - "name": "Public Domain", - "url": "http://repository.jboss.org/licenses/cc0-1.0.txt" - }}], + "licenses": [ + { + "license": { + "name": "Public Domain", + "url": "http://repository.jboss.org/licenses/cc0-1.0.txt" + } + } + ], "purl": "pkg:maven/org.jboss/staxmapper@1.3.0.Final?type=jar", "externalReferences": [ { @@ -13897,10 +14187,14 @@ "content": "66fcfc489e9abc5db0689966e20194e0371438b4e2fcfeb43c6774915d2612187e671d913d1435d497c7f3aa8f721fa0ffd56be7a589129cd0973b5e2ea967d7" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.common/wildfly-common@1.5.2.Final?type=jar", "externalReferences": [ { @@ -13962,10 +14256,14 @@ "content": "47170e0f30f28c113cdcbe151f45520135e9529e38a9cfba2d248fe6fff3310ad113111b238f046f652dd55f56d69125fef3d5c1861f4c58a0c4962742af2126" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.projectodd.vdx/vdx-wildfly@1.1.6?type=jar", "externalReferences": [ { @@ -14019,10 +14317,14 @@ "content": "79d2e58f9ea18984b3d9a4f1ea59a3b7060a28e394b18748e3594084da3f4b36f18d20f80c74ffeb66bf47dcee813ab89a8a11fe65d2c0ed389a86b974909983" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.projectodd.vdx/vdx-core@1.1.6?type=jar", "externalReferences": [ { @@ -14077,7 +14379,7 @@ "content": "1ee0fc44983288976886bdc5c232a33b81f2d7f8f82d8c3a457dd86be3b419ae1243626cd1206ef4d5a87da6dbe174abc2ce48668470ae944fa12e8cc410f000" } ], - "licenses": [{"license": {"id": "BSD-3-Clause"}}], + "licenses": [{ "license": { "id": "BSD-3-Clause" } }], "purl": "pkg:maven/org.eclipse.jgit/org.eclipse.jgit@5.0.2.201807311906-r?type=jar", "externalReferences": [ { @@ -14148,7 +14450,7 @@ "content": "1f9a0621a9f004714dce44790b67f48f7d6e02550e12789ed65ebe961d4bf8de148d6955dcf76972fc2605cced7cdc33e7b9b71d9f3a8db0b4f8dd075992b91d" } ], - "licenses": [{"license": {"id": "BSD-3-Clause"}}], + "licenses": [{ "license": { "id": "BSD-3-Clause" } }], "purl": "pkg:maven/com.jcraft/jsch@0.1.54?type=jar", "externalReferences": [ { @@ -14207,7 +14509,7 @@ "content": "a02ad837904a671ce4029d80d34644a736da9e1063e1df347fc2685cb3904c23adcd18d3dd3ce84b1ad0369eeffce3a405c684fefc3beae06aec2674ec2c3534" } ], - "licenses": [{"license": {"id": "BSD-3-Clause"}}], + "licenses": [{ "license": { "id": "BSD-3-Clause" } }], "purl": "pkg:maven/com.jcraft/jzlib@1.1.1?type=jar", "externalReferences": [ { @@ -14265,7 +14567,7 @@ "content": "56170a27378da13f8b591f80251f21e1c3c2d0bf9cc1bed1d3c024f2b8978f1a439761dd73e51bd281087adec75a1ad5195aae943f044d71bcec380b86450d8e" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/com.googlecode.javaewah/JavaEWAH@1.1.6?type=jar", "externalReferences": [ { @@ -14325,14 +14627,18 @@ } ], "licenses": [ - {"license": { - "id": "LGPL-2.1-or-later", - "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" - }}, - {"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }} + { + "license": { + "id": "LGPL-2.1-or-later", + "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" + } + }, + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } ], "purl": "pkg:maven/org.wildfly.core/wildfly-core-security@11.1.1.Final?type=jar", "externalReferences": [ @@ -14397,14 +14703,18 @@ } ], "licenses": [ - {"license": { - "id": "LGPL-2.1-or-later", - "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" - }}, - {"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }} + { + "license": { + "id": "LGPL-2.1-or-later", + "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" + } + }, + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } ], "purl": "pkg:maven/org.wildfly.core/wildfly-core-security-api@11.1.1.Final?type=jar", "externalReferences": [ @@ -14468,7 +14778,7 @@ "content": "4567a4d62a1773a5816e6a719153c0ecff16c2dd2a4bcfbc31cd8fb0494d7902e1569aa0f0d7db4e0ec56bb10305f555c17569111930040fe65b7ea5a0f0f216" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.aesh/aesh@2.4?type=jar", "externalReferences": [ { @@ -14531,7 +14841,7 @@ "content": "2b6e56d238460a08c9a739dd25b6770fb5018ea09d3e20b089f5129f4d62891d049136c02267d493656f37f0116c4061edde1132629c332af84f11a3c3ee12da" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.aesh/readline@2.0?type=jar", "externalReferences": [ { @@ -14594,7 +14904,7 @@ "content": "0709bbd062e280c2d5a86a76d9610a0d894fd9363ecd620f2ad59dcdfef0a218ae6d85d59ceeb01617064803d857ebcb582109fcb3a1004d8d2c3aa08d07bde7" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.fusesource.jansi/jansi@1.18?type=jar", "externalReferences": [ { @@ -14661,10 +14971,14 @@ "content": "2951708d10d05e6d2d59b18b127b8a1782c83bfbdc1e456e8ac9141daa69f40b4efb1c3b4c69b614d54d443f8a3c38e0c9fa02f8daeca0925fc975f98b42ac09" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.jboss.threads/jboss-threads@2.3.3.Final?type=jar", "externalReferences": [ { @@ -14728,14 +15042,18 @@ } ], "licenses": [ - {"license": { - "id": "LGPL-2.1-or-later", - "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" - }}, - {"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }} + { + "license": { + "id": "LGPL-2.1-or-later", + "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" + } + }, + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } ], "purl": "pkg:maven/org.wildfly.core/wildfly-server@11.1.1.Final?type=jar", "externalReferences": [ @@ -14800,14 +15118,18 @@ } ], "licenses": [ - {"license": { - "id": "LGPL-2.1-or-later", - "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" - }}, - {"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }} + { + "license": { + "id": "LGPL-2.1-or-later", + "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" + } + }, + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } ], "purl": "pkg:maven/org.wildfly.core/wildfly-core-management-client@11.1.1.Final?type=jar", "externalReferences": [ @@ -14872,14 +15194,18 @@ } ], "licenses": [ - {"license": { - "id": "LGPL-2.1-or-later", - "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" - }}, - {"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }} + { + "license": { + "id": "LGPL-2.1-or-later", + "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" + } + }, + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } ], "purl": "pkg:maven/org.wildfly.core/wildfly-domain-http-interface@11.1.1.Final?type=jar", "externalReferences": [ @@ -14943,10 +15269,14 @@ "content": "3e223c541b707bcd80192060d40f788fe34a9399971a13df2d7f9ded9ab26c7a98070691de749f0c74ed15af6ce6f22a3f5c567c1985a7d5b4255b54ccd1445e" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.security.elytron-web/undertow-server@1.7.1.Final?type=jar", "externalReferences": [ { @@ -15010,14 +15340,18 @@ } ], "licenses": [ - {"license": { - "id": "LGPL-2.1-or-later", - "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" - }}, - {"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }} + { + "license": { + "id": "LGPL-2.1-or-later", + "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" + } + }, + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } ], "purl": "pkg:maven/org.wildfly.core/wildfly-deployment-repository@11.1.1.Final?type=jar", "externalReferences": [ @@ -15082,14 +15416,18 @@ } ], "licenses": [ - {"license": { - "id": "LGPL-2.1-or-later", - "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" - }}, - {"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }} + { + "license": { + "id": "LGPL-2.1-or-later", + "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" + } + }, + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } ], "purl": "pkg:maven/org.wildfly.core/wildfly-platform-mbean@11.1.1.Final?type=jar", "externalReferences": [ @@ -15154,14 +15492,18 @@ } ], "licenses": [ - {"license": { - "id": "LGPL-2.1-or-later", - "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" - }}, - {"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }} + { + "license": { + "id": "LGPL-2.1-or-later", + "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" + } + }, + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } ], "purl": "pkg:maven/org.wildfly.core/wildfly-process-controller@11.1.1.Final?type=jar", "externalReferences": [ @@ -15226,14 +15568,18 @@ } ], "licenses": [ - {"license": { - "id": "LGPL-2.1-or-later", - "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" - }}, - {"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }} + { + "license": { + "id": "LGPL-2.1-or-later", + "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" + } + }, + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } ], "purl": "pkg:maven/org.wildfly.core/wildfly-remoting@11.1.1.Final?type=jar", "externalReferences": [ @@ -15298,14 +15644,18 @@ } ], "licenses": [ - {"license": { - "id": "LGPL-2.1-or-later", - "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" - }}, - {"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }} + { + "license": { + "id": "LGPL-2.1-or-later", + "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" + } + }, + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } ], "purl": "pkg:maven/org.wildfly.core/wildfly-io@11.1.1.Final?type=jar", "externalReferences": [ @@ -15370,14 +15720,18 @@ } ], "licenses": [ - {"license": { - "id": "LGPL-2.1-or-later", - "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" - }}, - {"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }} + { + "license": { + "id": "LGPL-2.1-or-later", + "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" + } + }, + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } ], "purl": "pkg:maven/org.wildfly.core/wildfly-network@11.1.1.Final?type=jar", "externalReferences": [ @@ -15441,7 +15795,7 @@ "content": "b967669f7f36eb1c416b527937995b52ab08c5493527c5a2438b5eef1fef05a1d7c701b2230acb73c11518206ca492aa389376478b2e5cedf952b095c490d4a7" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.jboss/jandex@2.1.2.Final?type=jar", "externalReferences": [ { @@ -15504,7 +15858,7 @@ "content": "75ab67dc7ca42a155653730ef11a13af74c51198922f2502bc9cbd4679f934a7c8ac2b4b207e749910e34b287f540f0f6ca0c65c0ae69c95837b32abb44722f0" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.jboss.classfilewriter/jboss-classfilewriter@1.2.4.Final?type=jar", "externalReferences": [ { @@ -15567,10 +15921,14 @@ "content": "36f839b5e282e80de8ab35ec39818d17d0af2b8130b543a7071a9b479fbfab4c16a0cc8fc4ca6bac99055220ab7dabe31ab1b6427b6b62d66cb45b7989c2bec5" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.jboss.invocation/jboss-invocation@1.5.2.Final?type=jar", "externalReferences": [ { @@ -15633,10 +15991,14 @@ "content": "e26221a88ada4f557e22e2293c9044756ef4619c20789fd6f5705b81d3d2b0ad2e09a1e37d45c1eb1da33b46ff8361e6a22cecb0819e3da855890787d5251fc7" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.jboss.marshalling/jboss-marshalling@2.0.9.Final?type=jar", "externalReferences": [ { @@ -15699,10 +16061,14 @@ "content": "24726d4739bd0056dff4e30514853f3fbdc6d535fa6d33a6c1009ccc504ee377f304f287bd8dd0032e72851fc4cef3a2d165cee2a4ea6c47cc55e8d6a2d1e824" } ], - "licenses": [{"license": { - "id": "LGPL-2.1", - "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" - }}], + "licenses": [ + { + "license": { + "id": "LGPL-2.1", + "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" + } + } + ], "purl": "pkg:maven/org.jboss.stdio/jboss-stdio@1.1.0.Final?type=jar", "externalReferences": [ { @@ -15765,10 +16131,14 @@ "content": "d61b120710ccc64edf97b892bc23a5a2b993a2ee07e965c41bd0e0903ac7633ce5c4dbacd505a1876259e9de105901a458a3dd34e07797c304ee95cf25b0fce6" } ], - "licenses": [{"license": { - "name": "asl", - "url": "http://repository.jboss.org/licenses/apache-2.0.txt" - }}], + "licenses": [ + { + "license": { + "name": "asl", + "url": "http://repository.jboss.org/licenses/apache-2.0.txt" + } + } + ], "purl": "pkg:maven/org.jboss/jboss-vfs@3.2.15.Final?type=jar", "externalReferences": [ { @@ -15831,7 +16201,7 @@ "content": "3d3697aaa26b14fac84382cc5c3bcac39edbb1dee4ed74a09e896fdf9441cfa5754dddd096334f980c7e74dccf2b38815bc54bb8209e21792509271f1eb7c126" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/io.undertow/undertow-core@2.1.0.Final?type=jar", "externalReferences": [ { @@ -15894,10 +16264,14 @@ "content": "96de6fba334e195de742dffe468ab4f4a53b239b64ba61e1aab63ff0b0906ed8d71acda7296d3b6bdd14464b1be989d4855a28db9ba2968618da4225a172c89a" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.jboss.xnio/xnio-nio@3.8.0.Final?type=jar", "externalReferences": [ { @@ -15960,10 +16334,14 @@ "content": "40266f8ca93eaa31014388c3bd1f91788204b90b9334fc6d610923e3684f04ab0f52b7e5ddb3bd5129c47da44476418cb28c57b65e72f6b544efdc8b07e5ff61" } ], - "licenses": [{"license": { - "id": "LGPL-2.1-or-later", - "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" - }}], + "licenses": [ + { + "license": { + "id": "LGPL-2.1-or-later", + "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" + } + } + ], "purl": "pkg:maven/org.wildfly/wildfly-web-common@19.1.0.Final?type=jar", "externalReferences": [ { @@ -16026,10 +16404,14 @@ "content": "dc18c2ec0a8f15909a6f3377eaa58f517bd23e0e52776e1291c67b55525e8989bb4d7ee39b9b622f893d8b07dff790c6d2058381df051febafc5cf0db7e03c3c" } ], - "licenses": [{"license": { - "id": "LGPL-2.1-or-later", - "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" - }}], + "licenses": [ + { + "license": { + "id": "LGPL-2.1-or-later", + "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" + } + } + ], "purl": "pkg:maven/org.wildfly/wildfly-ee@19.1.0.Final?type=jar", "externalReferences": [ { @@ -16093,8 +16475,8 @@ } ], "licenses": [ - {"license": {"id": "EPL-2.0"}}, - {"license": {"id": "GPL-2.0-with-classpath-exception"}} + { "license": { "id": "EPL-2.0" } }, + { "license": { "id": "GPL-2.0-with-classpath-exception" } } ], "purl": "pkg:maven/org.glassfish/jakarta.enterprise.concurrent@1.1.1?type=jar", "externalReferences": [ @@ -16158,10 +16540,14 @@ "content": "458911e856cff5137076c2c41f0b4c885b3d05c2a58912fe940abc96baca24ecad5262cb86ccd225d1ccc7f88cc3cfc18452dd5deb3b73fe61d0a1c0fca4a130" } ], - "licenses": [{"license": { - "name": "Public Domain", - "url": "http://repository.jboss.org/licenses/cc0-1.0.txt" - }}], + "licenses": [ + { + "license": { + "name": "Public Domain", + "url": "http://repository.jboss.org/licenses/cc0-1.0.txt" + } + } + ], "purl": "pkg:maven/org.jboss.metadata/jboss-metadata-ear@13.0.0.Final?type=jar", "externalReferences": [ { @@ -16225,8 +16611,8 @@ } ], "licenses": [ - {"license": {"id": "EPL-2.0"}}, - {"license": {"id": "GPL-2.0-with-classpath-exception"}} + { "license": { "id": "EPL-2.0" } }, + { "license": { "id": "GPL-2.0-with-classpath-exception" } } ], "purl": "pkg:maven/org.jboss.spec.javax.enterprise.concurrent/jboss-concurrency-api_1.0_spec@2.0.0.Final?type=jar", "externalReferences": [ @@ -16291,14 +16677,18 @@ } ], "licenses": [ - {"license": { - "id": "LGPL-2.1-or-later", - "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" - }}, - {"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }} + { + "license": { + "id": "LGPL-2.1-or-later", + "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" + } + }, + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } ], "purl": "pkg:maven/org.wildfly.core/wildfly-request-controller@11.1.1.Final?type=jar", "externalReferences": [ @@ -16362,10 +16752,14 @@ "content": "4b8b2467ec34de343020701952055db481d30e877e6dc83254edb4e33028957cce5341c1d381a398d97051cb26aa6422a8280c58eb93a3bd34822993c9e8a146" } ], - "licenses": [{"license": { - "id": "LGPL-2.1-or-later", - "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" - }}], + "licenses": [ + { + "license": { + "id": "LGPL-2.1-or-later", + "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" + } + } + ], "purl": "pkg:maven/org.wildfly/wildfly-naming@19.1.0.Final?type=jar", "externalReferences": [ { @@ -16428,10 +16822,14 @@ "content": "185a6551790c37c3c8b33e6f3800c914d4797c1b02cddcf8790cf08cfe5767419a38dd8b163f69b93516d94b86c1247d09fae04857f3c2ab2268a36673734488" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly/wildfly-naming-client@1.0.12.Final?type=jar", "externalReferences": [ { @@ -16494,10 +16892,14 @@ "content": "44bf4cf30e26b72f2cabda7e61846615bddddf62bb5e544e4c33bc0deae5a319d75fe84a48a444f5191a6e6a09e1de39ca83d1c2851e7db15eeb642489549302" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.jboss.marshalling/jboss-marshalling-river@2.0.0.Final?type=jar", "externalReferences": [ { @@ -16560,10 +16962,14 @@ "content": "0abe0a6fee86208eb7efa3219feea7ebda3b0719fd9c9baa98d75f92dc666e0b3d1f02a2a832f6750f3d0778124d80a5c2d45da7747c9be7e959f8eea3a43fc4" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.wildfly-http-client/wildfly-http-naming-client@1.0.20.Final?type=jar", "externalReferences": [ { @@ -16626,10 +17032,14 @@ "content": "6396f4ddf650260248c2d76691a00ab73bf00019ff89fe860656adc4ec07e15fc8d80e05f71ba89e6bca629f2fe8d56f9d38a4ebeafd1888ec944a3229afed3e" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.wildfly-http-client/wildfly-http-client-common@1.0.20.Final?type=jar", "externalReferences": [ { @@ -16693,14 +17103,18 @@ } ], "licenses": [ - {"license": { - "name": "Common Development and Distribution License", - "url": "http://repository.jboss.org/licenses/cddl.txt" - }}, - {"license": { - "name": "GNU General Public License, Version 2 with the Classpath Exception", - "url": "http://repository.jboss.org/licenses/gpl-2.0-ce.txt" - }} + { + "license": { + "name": "Common Development and Distribution License", + "url": "http://repository.jboss.org/licenses/cddl.txt" + } + }, + { + "license": { + "name": "GNU General Public License, Version 2 with the Classpath Exception", + "url": "http://repository.jboss.org/licenses/gpl-2.0-ce.txt" + } + } ], "purl": "pkg:maven/org.jboss.spec.javax.ejb/jboss-ejb-api_3.2_spec@1.0.0.Final?type=jar", "externalReferences": [ @@ -16765,8 +17179,8 @@ } ], "licenses": [ - {"license": {"id": "EPL-2.0"}}, - {"license": {"id": "GPL-2.0-with-classpath-exception"}} + { "license": { "id": "EPL-2.0" } }, + { "license": { "id": "GPL-2.0-with-classpath-exception" } } ], "purl": "pkg:maven/org.jboss.spec.javax.interceptor/jboss-interceptors-api_1.2_spec@2.0.0.Final?type=jar", "externalReferences": [ @@ -16831,13 +17245,15 @@ } ], "licenses": [ - {"license": {"id": "EPL-2.0"}}, - {"license": {"id": "GPL-2.0-with-classpath-exception"}}, - {"license": {"id": "Apache-2.0"}}, - {"license": { - "id": "LGPL-2.1-only", - "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" - }} + { "license": { "id": "EPL-2.0" } }, + { "license": { "id": "GPL-2.0-with-classpath-exception" } }, + { "license": { "id": "Apache-2.0" } }, + { + "license": { + "id": "LGPL-2.1-only", + "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" + } + } ], "purl": "pkg:maven/org.jboss.spec.javax.el/jboss-el-api_3.0_spec@2.0.0.Final?type=jar", "externalReferences": [ @@ -16901,10 +17317,14 @@ "content": "fd6fdcfb0d34b0285dd3f75d0dfdadf4dd2ed810d1a9dc60a562c1ad30759e106b11b12376fbce1e707e4a41fa5700630438b6747c654880bd7f72d251e11470" } ], - "licenses": [{"license": { - "name": "Public Domain", - "url": "http://repository.jboss.org/licenses/cc0-1.0.txt" - }}], + "licenses": [ + { + "license": { + "name": "Public Domain", + "url": "http://repository.jboss.org/licenses/cc0-1.0.txt" + } + } + ], "purl": "pkg:maven/org.jboss.metadata/jboss-metadata-common@13.0.0.Final?type=jar", "externalReferences": [ { @@ -16967,10 +17387,14 @@ "content": "3e59920829e719d5ccfc11c2c0cd5009d8e3b4a003b79bb8d899a1ce196cb41f4bcf9fba6ab99f2a40c38dd657eda280249c47b0206b3df7b3124958fdecd069" } ], - "licenses": [{"license": { - "name": "Public Domain", - "url": "http://repository.jboss.org/licenses/cc0-1.0.txt" - }}], + "licenses": [ + { + "license": { + "name": "Public Domain", + "url": "http://repository.jboss.org/licenses/cc0-1.0.txt" + } + } + ], "purl": "pkg:maven/org.jboss.metadata/jboss-metadata-web@13.0.0.Final?type=jar", "externalReferences": [ { @@ -17034,8 +17458,8 @@ } ], "licenses": [ - {"license": {"id": "EPL-2.0"}}, - {"license": {"id": "GPL-2.0-with-classpath-exception"}} + { "license": { "id": "EPL-2.0" } }, + { "license": { "id": "GPL-2.0-with-classpath-exception" } } ], "purl": "pkg:maven/org.jboss.spec.javax.security.auth.message/jboss-jaspi-api_1.1_spec@2.0.1.Final?type=jar", "externalReferences": [ @@ -17100,8 +17524,8 @@ } ], "licenses": [ - {"license": {"id": "EPL-2.0"}}, - {"license": {"id": "GPL-2.0-with-classpath-exception"}} + { "license": { "id": "EPL-2.0" } }, + { "license": { "id": "GPL-2.0-with-classpath-exception" } } ], "purl": "pkg:maven/org.jboss.spec.javax.servlet.jsp/jboss-jsp-api_2.3_spec@2.0.0.Final?type=jar", "externalReferences": [ @@ -17165,10 +17589,14 @@ "content": "b551faf9d8321aa7bab94808152a98fefb988977ced5c683f8f972c028eb808116372eab4e075fe3e6e5c3fb615bb8fad22a7835fcb7b39fb9d17bc97b32f836" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.jboss.resteasy/resteasy-client@3.9.1.Final?type=jar", "externalReferences": [ { @@ -17235,10 +17663,14 @@ "content": "847e5ceb7adf13cb44e6a9f42aac6bcad7ec6b141522e5dfee797f486b2efb1464a28a09a2cc5ff110a23c56c350b0d879d20c4036461ef1436ceed2331bf0e6" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.jboss.resteasy/resteasy-multipart-provider@3.9.1.Final?type=jar", "externalReferences": [ { @@ -17367,15 +17799,21 @@ "content": "c5e37fe3d9c420a9035f1160eb1d396e94f01851c01c6e2f19f19a221bfc484e63f9660c7377f58aa65246b95a9eb799ac4e6798c0b20f658edf00a4435e1efa" } ], - "licenses": [{"license": { - "name": "Common Development and Distribution License (CDDL) v1.0", - "url": "https://glassfish.dev.java.net/public/CDDLv1.0.html" - }}], + "licenses": [ + { + "license": { + "name": "Common Development and Distribution License (CDDL) v1.0", + "url": "https://glassfish.dev.java.net/public/CDDLv1.0.html" + } + } + ], "purl": "pkg:maven/javax.activation/activation@1.1?type=jar", - "externalReferences": [{ - "type": "distribution", - "url": "https://maven-repository.dev.java.net/nonav/repository/javax.activation/jars/activation-1.1.jar" - }] + "externalReferences": [ + { + "type": "distribution", + "url": "https://maven-repository.dev.java.net/nonav/repository/javax.activation/jars/activation-1.1.jar" + } + ] }, { "type": "library", @@ -17419,10 +17857,14 @@ "content": "ac362c88badd050b14701f2da3906c8f5c39d50f16b7f489188e3920fb343831fe608d5b4ecbf729edfaa0e87f82bbb9630d6fd7ae08ef81cf1e8986dc1c02c5" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.jboss.resteasy/resteasy-jackson2-provider@3.9.1.Final?type=jar", "externalReferences": [ { @@ -17489,7 +17931,7 @@ "content": "c424527cbe0ff9c66897640d3cdfc29074e953eceef2f24f1aa8d389c00000d47777f44fd464e3073c9e1570017012eff53da20d5a1075c254bfbe7b8bd88ea5" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/com.fasterxml.jackson.jaxrs/jackson-jaxrs-json-provider@2.10.1?type=jar", "externalReferences": [ { @@ -17552,7 +17994,7 @@ "content": "cee7c6a86c9da60d97c26ae6cd19f16606fe3afd77c1609dc476a861c04d8f1152519a588ec41ae8ca0f1981d29fdba7ee588db02a64d3a9721e36139c7014f4" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/com.fasterxml.jackson.jaxrs/jackson-jaxrs-base@2.10.1?type=jar", "externalReferences": [ { @@ -17615,7 +18057,7 @@ "content": "9290e9cdbac26aad9af7a83ad0b07b9e1b9532a62733bd96c20c89f0939c8011869d915441228675d501d06d6f83519576cb43ab99ae424dffe5a3c46dbac2b9" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/com.fasterxml.jackson.module/jackson-module-jaxb-annotations@2.10.1?type=jar", "externalReferences": [ { @@ -17678,11 +18120,13 @@ } ], "licenses": [ - {"license": { - "name": "Lesser General Public License, version 3 or greater", - "url": "http://www.gnu.org/licenses/lgpl.html" - }}, - {"license": {"id": "Apache-2.0"}} + { + "license": { + "name": "Lesser General Public License, version 3 or greater", + "url": "http://www.gnu.org/licenses/lgpl.html" + } + }, + { "license": { "id": "Apache-2.0" } } ], "purl": "pkg:maven/com.github.fge/json-patch@1.9?type=jar" }, @@ -17728,11 +18172,13 @@ } ], "licenses": [ - {"license": { - "name": "Lesser General Public License, version 3 or greater", - "url": "http://www.gnu.org/licenses/lgpl.html" - }}, - {"license": {"id": "Apache-2.0"}} + { + "license": { + "name": "Lesser General Public License, version 3 or greater", + "url": "http://www.gnu.org/licenses/lgpl.html" + } + }, + { "license": { "id": "Apache-2.0" } } ], "purl": "pkg:maven/com.github.fge/jackson-coreutils@1.6?type=jar" }, @@ -17778,11 +18224,13 @@ } ], "licenses": [ - {"license": { - "name": "Lesser General Public License, version 3 or greater", - "url": "http://www.gnu.org/licenses/lgpl.html" - }}, - {"license": {"id": "Apache-2.0"}} + { + "license": { + "name": "Lesser General Public License, version 3 or greater", + "url": "http://www.gnu.org/licenses/lgpl.html" + } + }, + { "license": { "id": "Apache-2.0" } } ], "purl": "pkg:maven/com.github.fge/msg-simple@1.1?type=jar" }, @@ -17828,11 +18276,13 @@ } ], "licenses": [ - {"license": { - "name": "Lesser General Public License, version 3 or greater", - "url": "http://www.gnu.org/licenses/lgpl.html" - }}, - {"license": {"id": "Apache-2.0"}} + { + "license": { + "name": "Lesser General Public License, version 3 or greater", + "url": "http://www.gnu.org/licenses/lgpl.html" + } + }, + { "license": { "id": "Apache-2.0" } } ], "purl": "pkg:maven/com.github.fge/btf@1.2?type=jar" }, @@ -17878,10 +18328,14 @@ "content": "a4c847ac64d9ae1bd116ec54c671de22a7c6f405b507c628949b860536834aa76ddb47bef406a91081b821edf31b1909225b45860fee86f1e132adcbbcef40bd" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.jboss.resteasy/resteasy-jaxb-provider@3.9.1.Final?type=jar", "externalReferences": [ { @@ -17948,7 +18402,7 @@ "content": "46333cbbee5218c554ca515f721086ed2c09aa6e0fd669b2baead9d9538a5710cb46b6f34f56ec37135985b9e6412a774d1faafc98e77fad6a665a23e5a525f9" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.jboss.aesh/aesh@0.66.19?type=jar", "externalReferences": [ { @@ -18011,7 +18465,7 @@ "content": "42b07c4189c271b1444d40c459fe520f4be981bf9790690d4e755062f760710a9907d1863fcf0569e2ee53d842f35ebea48d29bd11d4dab445afd2fee87069d1" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.fusesource.jansi/jansi@1.16?type=jar", "externalReferences": [ { @@ -18078,7 +18532,7 @@ "content": "8f9db82b78e34a14dbdcd10d819790febaa493750e3c2291257bce94ef565b82edc36b39bb04b003ed12e63e0f2c09d74e2fe396f990216b75bc0dde1ff3561c" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.keycloak/keycloak-client-registration-cli@10.0.2?type=jar", "externalReferences": [ { @@ -18145,7 +18599,7 @@ "content": "20795275035bb6dcdf6cfeea4869b852c0c8e92a430efe55ae0233f70e33bf9a49a6ea0deb008b68c05d81f30698493abbaa06b705bfd83ef2b9d8b6990c8b70" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.keycloak/keycloak-admin-cli@10.0.2?type=jar", "externalReferences": [ { @@ -18212,7 +18666,7 @@ "content": "6d47d26b2909f37a8ee3e9fc1b0dc415371ba988d27fe62af3afc190ba3fe38eaf034f3a8d23fcac52dbeac8796ee6f07dbcc33aea1cf6fd48d1d1f1b2ae655e" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.keycloak/keycloak-adapter-spi@10.0.2?type=jar", "externalReferences": [ { @@ -18278,7 +18732,7 @@ "content": "172abe6e7156e8fb1ce3721e1a8b61b1a091d182f374578f487db2bee2ce1188bdaac441ac37353eba7c76345cfbc8d9e047345f3bc1db2c6434ee225515fc63" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.tomcat/tomcat-catalina@7.0.92?type=jar" }, { @@ -18322,10 +18776,14 @@ "content": "a760243fe523f921d635f69bfcf4d2faf9a68f8848498fcad63ae567d2786e63df7dc5e237d2bc99ccc3542f9682dd19fa4112799266b65aca0a368d76f9061f" } ], - "licenses": [{"license": { - "name": "Apache License, Version 2.0 and Common Development And Distribution License (CDDL) Version 1.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt and http://www.opensource.org/licenses/cddl1.txt" - }}], + "licenses": [ + { + "license": { + "name": "Apache License, Version 2.0 and Common Development And Distribution License (CDDL) Version 1.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt and http://www.opensource.org/licenses/cddl1.txt" + } + } + ], "purl": "pkg:maven/org.apache.tomcat/tomcat-servlet-api@7.0.92?type=jar" }, { @@ -18369,7 +18827,7 @@ "content": "674dd40bbc1682f4ac3cc8fa58724b8ce49420b2acffc33f9e6a54086e6a602b5014a174c71d780ce5228eac66d9e2fa1ebab3e7a84f035731ba4463cd954cbf" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.tomcat/tomcat-juli@7.0.92?type=jar" }, { @@ -18413,7 +18871,7 @@ "content": "683993660b8898ca2e2de0df518405601afcd12ff31f9bd5b4320a2e3dd805c65b2e502ac9941e844a19b6185a3ccefe91d888fa0215dc939a8d6327cee8a116" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.tomcat/tomcat-annotations-api@7.0.92?type=jar" }, { @@ -18457,7 +18915,7 @@ "content": "4bdcb5a5bd7538382e4d8f2d8ba8be17786162b7afc16cdcac15817adc143eeeb02329584951eb05937907a1d6a5e4a52c9c329cdd37881e99a2fd08f666a7bc" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.tomcat/tomcat-api@7.0.92?type=jar" }, { @@ -18501,7 +18959,7 @@ "content": "bcb6a468183becd080e31179e1cd2c0aaf77718f6135bf0160105c0799417d5dc04551caa6b2479f6933718c1f34852ad37c83b67dfe998027b2aee8e970261e" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.tomcat/tomcat-util@7.0.92?type=jar" }, { @@ -18547,14 +19005,18 @@ } ], "licenses": [ - {"license": { - "name": "Common Development and Distribution License", - "url": "http://repository.jboss.org/licenses/cddl.txt" - }}, - {"license": { - "name": "GNU General Public License, Version 2 with the Classpath Exception", - "url": "http://repository.jboss.org/licenses/gpl-2.0-ce.txt" - }} + { + "license": { + "name": "Common Development and Distribution License", + "url": "http://repository.jboss.org/licenses/cddl.txt" + } + }, + { + "license": { + "name": "GNU General Public License, Version 2 with the Classpath Exception", + "url": "http://repository.jboss.org/licenses/gpl-2.0-ce.txt" + } + } ], "purl": "pkg:maven/org.jboss.spec.javax.servlet/jboss-servlet-api_3.0_spec@1.0.2.Final?type=jar", "externalReferences": [ @@ -18618,7 +19080,7 @@ "content": "75cd5bff1f9e5ebba0ecf30af39dcf2e8ea20cc6c7fe3dbbbaf1b22b605381700679cfcad1543d757104bc371e68c4a2f9f361596663d1e3f6136288456da6ef" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/io.undertow/undertow-servlet@2.1.0.Final?type=jar", "externalReferences": [ { @@ -18681,10 +19143,14 @@ "content": "8ffbbbf74772f6677bc67c13339571625ba302af9978eabae7475b77618f09c5cdbce8d4660693a993d9d81475cb8ad4f0d192f245b9d31555422bb07d4b9341" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.jboss.xnio/xnio-api@3.8.0.Final?type=jar", "externalReferences": [ { @@ -18747,10 +19213,14 @@ "content": "94f46f167853b771ead83d87a93e826512575cb5ef505b841b28d4d818a39f5fe0cbf8b9b155719b4b43569a6fbc4f2c36ab14bfca8fd43ab64963a547fdce74" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.client/wildfly-client-config@1.0.1.Final?type=jar", "externalReferences": [ { @@ -18813,10 +19283,14 @@ "content": "ac244f6ae1e31a413e1c3a32647b49a839b486571991162517c45053eb3064bac6d8e9e5198c5cd2e78a5bd0352799d25fc4a0177eb1f5c594d6ca699358fb1f" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.jboss.threads/jboss-threads@3.1.0.Final?type=jar", "externalReferences": [ { @@ -18880,8 +19354,8 @@ } ], "licenses": [ - {"license": {"id": "Apache-2.0"}}, - {"license": {"id": "EPL-1.0"}} + { "license": { "id": "Apache-2.0" } }, + { "license": { "id": "EPL-1.0" } } ], "purl": "pkg:maven/org.eclipse.jetty/jetty-server@8.1.17.v20150415?type=jar", "externalReferences": [ @@ -18950,8 +19424,8 @@ } ], "licenses": [ - {"license": {"id": "Apache-2.0"}}, - {"license": {"id": "EPL-1.0"}} + { "license": { "id": "Apache-2.0" } }, + { "license": { "id": "EPL-1.0" } } ], "purl": "pkg:maven/org.eclipse.jetty.orbit/javax.servlet@3.0.0.v201112011016?type=jar", "externalReferences": [ @@ -19020,8 +19494,8 @@ } ], "licenses": [ - {"license": {"id": "Apache-2.0"}}, - {"license": {"id": "EPL-1.0"}} + { "license": { "id": "Apache-2.0" } }, + { "license": { "id": "EPL-1.0" } } ], "purl": "pkg:maven/org.eclipse.jetty/jetty-continuation@8.1.17.v20150415?type=jar", "externalReferences": [ @@ -19090,8 +19564,8 @@ } ], "licenses": [ - {"license": {"id": "Apache-2.0"}}, - {"license": {"id": "EPL-1.0"}} + { "license": { "id": "Apache-2.0" } }, + { "license": { "id": "EPL-1.0" } } ], "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.17.v20150415?type=jar", "externalReferences": [ @@ -19160,8 +19634,8 @@ } ], "licenses": [ - {"license": {"id": "Apache-2.0"}}, - {"license": {"id": "EPL-1.0"}} + { "license": { "id": "Apache-2.0" } }, + { "license": { "id": "EPL-1.0" } } ], "purl": "pkg:maven/org.eclipse.jetty/jetty-io@8.1.17.v20150415?type=jar", "externalReferences": [ @@ -19230,8 +19704,8 @@ } ], "licenses": [ - {"license": {"id": "Apache-2.0"}}, - {"license": {"id": "EPL-1.0"}} + { "license": { "id": "Apache-2.0" } }, + { "license": { "id": "EPL-1.0" } } ], "purl": "pkg:maven/org.eclipse.jetty/jetty-util@8.1.17.v20150415?type=jar", "externalReferences": [ @@ -19300,8 +19774,8 @@ } ], "licenses": [ - {"license": {"id": "Apache-2.0"}}, - {"license": {"id": "EPL-1.0"}} + { "license": { "id": "Apache-2.0" } }, + { "license": { "id": "EPL-1.0" } } ], "purl": "pkg:maven/org.eclipse.jetty/jetty-security@8.1.17.v20150415?type=jar", "externalReferences": [ @@ -19369,7 +19843,7 @@ "content": "bf55cd085af7c22b77e5c996d0bca640824d705a4901f3420f8bc241b51348592abc691a0c77f789807d13a4eb718a4b0fea101e8a44fb89d9819705fbf5d766" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.keycloak/keycloak-saml-adapter-api-public@10.0.2?type=jar", "externalReferences": [ { @@ -19436,7 +19910,7 @@ "content": "bac0d761ae36e15662d116f0ea50c60da418a669ca8fa45c2e63bd4af26f6e380855b377937c20d11ea94550013a8cc96408e38bd643a367131f9dd226d55c9e" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.keycloak/keycloak-saml-adapter-core@10.0.2?type=jar", "externalReferences": [ { @@ -19503,7 +19977,7 @@ "content": "66260b3847efdd8750c22eb50a20fd580ccceff8bc3431387692420c7f8eaae04f552104a31b9b9582164846a66b39f53f4c2f4a9e0541c7d450cd8b4f9a7308" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.keycloak/keycloak-undertow-adapter-spi@10.0.2?type=jar", "externalReferences": [ { @@ -19570,7 +20044,7 @@ "content": "e9df495955bcb959da25e9a288a610821cecfa697f302e30273910ebd9c44cfb96d0a233a4a43a41139f42c1e1eeb52d707090dde13be286ef0f51e3b9abf19c" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.keycloak/keycloak-tomcat-adapter-spi@10.0.2?type=jar", "externalReferences": [ { @@ -19636,10 +20110,14 @@ "content": "646cd7cb48512c12b48d97eca098b77f59c6c42a108956d47fbc188a7c6ad16ce9be88ebc3c94ff3c4bf44f005ace476df5505bd65b9911fd766f4d492713c07" } ], - "licenses": [{"license": { - "name": "Apache License, Version 2.0 and Common Development And Distribution License (CDDL) Version 1.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt and http://www.opensource.org/licenses/cddl1.txt" - }}], + "licenses": [ + { + "license": { + "name": "Apache License, Version 2.0 and Common Development And Distribution License (CDDL) Version 1.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt and http://www.opensource.org/licenses/cddl1.txt" + } + } + ], "purl": "pkg:maven/org.apache.tomcat/tomcat-servlet-api@8.5.38?type=jar" }, { @@ -19683,7 +20161,7 @@ "content": "73235c78b6783ef6c24d0af183081a17388161e873a65a94a6ff74e5ad66b842f8fe0ca25a8201c9e9133d0adca7c41f2d7fa82ee7263575de12f31651c0b030" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.tomcat/tomcat-catalina@8.5.38?type=jar" }, { @@ -19727,7 +20205,7 @@ "content": "b9a12692060fe4f0496970daac37044851af5681a3d8f0bc62b56975f5dc6722d06f5d018a5f2888c850691c296d9747f68cc8f7aaf7b2142f8ece37ead808f2" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.tomcat/tomcat-jsp-api@8.5.38?type=jar" }, { @@ -19771,7 +20249,7 @@ "content": "fbafc3409870491fd8f205963bb3f429694c544518e6c71cddcb6a285ccdb0e93f61b70e4ad353ab706232c26ecfa88db2569e6b81109e5e14dc561fa44916a6" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.tomcat/tomcat-el-api@8.5.38?type=jar" }, { @@ -19815,7 +20293,7 @@ "content": "90ee58505a128537bdbc01f34916de4d607f9075464e6254c721c7c77f29c9dc9011af7c5f7348fe9304ec3ee71250c611e4b2250da71200f094ae94a01453f9" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.tomcat/tomcat-juli@8.5.38?type=jar" }, { @@ -19859,7 +20337,7 @@ "content": "f20f9148d7abb6aace8bd2c1c04b92ee7e745ed8328c68132a380759ac3441eb7cad2fca3c5ded6e0929f75ff9001fb77aa5f99e49f0fcea60cbf3b21ed35485" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.tomcat/tomcat-annotations-api@8.5.38?type=jar" }, { @@ -19903,7 +20381,7 @@ "content": "6ff237ec79a5b5b4bc9c5e0c0d56c66e5d0cb8abf67a8adba870cbfeb87eb4d0dc6fbab7a7feb3671bb499a3aba631fa8368809109a9860a1c51a4fe0a28f847" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.tomcat/tomcat-api@8.5.38?type=jar" }, { @@ -19947,7 +20425,7 @@ "content": "13050d80f340a634ec3927f9d436867361c414fe27849dccb02e73f1609c2ea38d64fdeac5ff141732e365719ecb17e54b4e54eaddce820300296904ac400284" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.tomcat/tomcat-jni@8.5.38?type=jar" }, { @@ -19991,7 +20469,7 @@ "content": "bf94d6bd676744c8e948c599cb723d278432040acda1d7e8ac4f3c3843f29605ad5f464d87d4a81ab843105b4675afea078e8fd61b95eb908c9b9b785805d174" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.tomcat/tomcat-coyote@8.5.38?type=jar" }, { @@ -20035,7 +20513,7 @@ "content": "bdd09a9a94b2735ac2b567e21477d3b9d19d7d250b9ea8df6a7a1900c484410b71f52df6f09de8aed02b18076a8533954218fcc3d6c1af0a5318a9711101a508" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.tomcat/tomcat-util@8.5.38?type=jar" }, { @@ -20079,7 +20557,7 @@ "content": "2b89ffb205546211207484a5cfdcc2c9eddae7abaa709b373d68e3a00126015d2cd47fefad650aa69f99da68305d99dcf8cf23bf30091792e4fb19ab8c762084" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.tomcat/tomcat-util-scan@8.5.38?type=jar" }, { @@ -20123,7 +20601,7 @@ "content": "5117a23a47ede6cf71af16d8ac6060775a72b8060103983f5b54e4d320f06017c0f09bbe6cd80deb441a535cbf7e05277c5cdd2ed1724cf52164ef344e81869b" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.tomcat/tomcat-jaspic-api@8.5.38?type=jar" }, { @@ -20168,7 +20646,7 @@ "content": "b1da031792034e04348b9991b2d7fcfb6d9136b0bbf4f619413d8bf061a1e710db6dd53fb310acce2bc28b9f84f0585e21da030dd7d35542570d3d99817af7f2" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.keycloak/keycloak-saml-tomcat-adapter-core@10.0.2?type=jar", "externalReferences": [ { @@ -20235,7 +20713,7 @@ "content": "93639d5ee93f4708748737200ac1d773c0e256288c331fc28ee9b614ee8c5d62b4cacdac487d3f49fe31ee381f34a0e590f1463619b2dcac781d8188c27a3f16" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.keycloak/keycloak-saml-undertow-adapter@10.0.2?type=jar", "externalReferences": [ { @@ -20302,7 +20780,7 @@ "content": "88a2d8eafd5a58309e89a54ce9705dd2c303527f54fb93148fb7fbd7330993c77a5d25c9e83fc4627844ceaed12c487a6f2dd7193d1e429ce6c817be0c881c40" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.keycloak/keycloak-jboss-adapter-core@10.0.2?type=jar", "externalReferences": [ { @@ -20369,7 +20847,7 @@ "content": "f59eef326bfbbf8c0d9d70ad40d22324a7f659f774e0192018bc7063e4213ae7fdde310fcb1751c1b7ae0cedd1058283e6d23bbc527d265272802cafdd7ad3cd" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.keycloak/keycloak-authz-client@10.0.2?type=jar", "externalReferences": [ { @@ -20436,7 +20914,7 @@ "content": "80e53f007976cb580486f7336b8871983f153cf12f2155f67be991bfaabd875bfe94b2d7b36aca3ccd4de628b24c7e8483d93a2d5cef1c422ce5df54f67e2bec" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.keycloak/keycloak-adapter-core@10.0.2?type=jar", "externalReferences": [ { @@ -20503,10 +20981,14 @@ "content": "122f8c3b251e6821f05cf7328d257025c515cb32a1e76c5edc48d63c9796615e549396fd08693e51fc380338381cd15c4fe5aa91ec8dd3f3522c004b083ece28" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-asn1@1.11.4.Final?type=jar", "externalReferences": [ { @@ -20569,10 +21051,14 @@ "content": "aa3f06fbe13c242a9212d4cb0ea79de11231360a3692a2378b4d885f770227e0c7b81361f489f3b945a53daa47849998f587ee1d9defafc4decebe33458fb854" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-audit@1.11.4.Final?type=jar", "externalReferences": [ { @@ -20635,10 +21121,14 @@ "content": "8f9bea49b8d6115ed1a5469260d206f44269a5088e40f84c48a0b31b10940aa2a8793767331e5efb6c96bb088572b1582f97d773fc571da39925de3b2325a8c5" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-auth@1.11.4.Final?type=jar", "externalReferences": [ { @@ -20701,10 +21191,14 @@ "content": "77dd518cd1b932c77dda56b3a921fad6adc81332169515f205aee3c949851e221f600b53241338b6194110867dfc4efe95af8c24f71e8443669600bdd2751be7" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server@1.11.4.Final?type=jar", "externalReferences": [ { @@ -20767,10 +21261,14 @@ "content": "94506f33be994bfda83d0f17ec9512daff17fca710cb4246765cb5693ac29d850ce3d810303e85f46196f4594b26d8740befd800c98b04de3206bda68d07f0a7" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server-deprecated@1.11.4.Final?type=jar", "externalReferences": [ { @@ -20833,10 +21331,14 @@ "content": "444807117deb9d9d7bea5a8f3aeef87442ecbb51b64864bae7532ecc4eccf27b2743d5dc8c99efe13628cbbcfddea894e21cc95ad4b7a079fbdc2639d9f5d753" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server-http@1.11.4.Final?type=jar", "externalReferences": [ { @@ -20899,10 +21401,14 @@ "content": "f3d0d6d0b004acf497fe47661dbc1b4c4d3f2ffffb25ae9c342d8e02f6e0fa0624c22d20da76fd117da13cb893002307d920c6505d7fd589f42b88d70c33a436" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server-sasl@1.11.4.Final?type=jar", "externalReferences": [ { @@ -20965,10 +21471,14 @@ "content": "10c885b59944f386a88e8dcf571d350c83f82cf05581b7458585f86f1b081bdf2e99313fe1bbd9f2ddc96773a7595800b9425abe533cb4a37f8c5ebc95e9a446" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-auth-util@1.11.4.Final?type=jar", "externalReferences": [ { @@ -21031,10 +21541,14 @@ "content": "83aae03e2787ef972102789dc3e7da388908fd23ecaf2ac81919ed5f597c103234968b7ae5640ec987ceb85d18478f583af73a9577fa07a41073843eabc96312" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-base@1.11.4.Final?type=jar", "externalReferences": [ { @@ -21097,10 +21611,14 @@ "content": "84258096bc16ea40a6a5e9374b519a17da0a4a0454cb52e22145e11de077876548ebd15e58e739f59d77e8fc46409b964ff3f2706ffe458a0e7b95aab729c017" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-client@1.11.4.Final?type=jar", "externalReferences": [ { @@ -21163,10 +21681,14 @@ "content": "ae4b4993aeb01ed064c2cf3ce54aa43cf443586b317eff851b2e49f8f916e972bd0acb291625551da844b6be516a00a1c478992eb6d2066c1c545f778f40b468" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-credential-source-impl@1.11.4.Final?type=jar", "externalReferences": [ { @@ -21229,10 +21751,14 @@ "content": "74934a41cc61f70f073f24d40145c1e0eb725b351792e804c8bc2fa625dd50f46b69683404b2cdb542b3b1e2f4bbd2842addf890a848f19116ff9d382ab62a73" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-provider-util@1.11.4.Final?type=jar", "externalReferences": [ { @@ -21295,10 +21821,14 @@ "content": "e6d76a102f05d65b3d6355fbcf7341fb67d781433778e7e0c61f8577c768983846b1f7f316298c9bd92e11d178d6cf4039c8e8a87ab0d106e8ddcceeb0952d76" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-credential@1.11.4.Final?type=jar", "externalReferences": [ { @@ -21361,10 +21891,14 @@ "content": "6f98e106985d074b9936302fea2e61d8e249c417df75a8929b2a5ec667d29d3499de64de10a2ebd265e0ef139366039916743c110bebfba3b1c2e31d351ceb3c" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-credential-source-deprecated@1.11.4.Final?type=jar", "externalReferences": [ { @@ -21427,10 +21961,14 @@ "content": "ffff7eceb69e0ef5e3c0de549b04a868b0d0588a7b807f68b13c3cb12bdaf703c18832828ab8e9b6dcd037608d1c15e20ca8df03cf3fdf583020a7e41c12ddb3" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-credential-store@1.11.4.Final?type=jar", "externalReferences": [ { @@ -21493,10 +22031,14 @@ "content": "63bc14f3ee2211589ff0b9d3c0d079e67cf93a15ab86de1c7d875628cbdedf7fc9765e99a2229dfddc4d3e14fd3c55582714769dc2223c68856980431fd3faea" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-digest@1.11.4.Final?type=jar", "externalReferences": [ { @@ -21559,10 +22101,14 @@ "content": "3ba8c9fc9c756da60b79eb9c85745341141685006fe95d46a3fe428b3ebb42e73e560690e7e525fb47c47cdcb2a511a65e6bebf70ec55b9e651fcb9f995e7686" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-http@1.11.4.Final?type=jar", "externalReferences": [ { @@ -21625,10 +22171,14 @@ "content": "5729b362ae4bd2a1b2a750732c58e705969429312129b09af34fcb261fcf0c8c8c9816cbe22a3f1eea7bbce2b193370ac6e14b89c8d0f886afc2a27ed3559217" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-http-basic@1.11.4.Final?type=jar", "externalReferences": [ { @@ -21691,10 +22241,14 @@ "content": "442e1c569b8b755917e18a49e3a6224ac4ffe15411113e98b4475ef8afe9fdb8373e99f272eb492849ef2593bd5c17f892232d7507b1cbb3a0e7ea79edd5707f" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-http-bearer@1.11.4.Final?type=jar", "externalReferences": [ { @@ -21757,10 +22311,14 @@ "content": "c39902889fcb7dbc880bd86a4c4f8169de5ee3e88c58f7b7b7edc6b52465e8ae47219fa14e7b696a13be4cb815d437997d2adb714333a1097f5c4bc5ab58de3e" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-http-cert@1.11.4.Final?type=jar", "externalReferences": [ { @@ -21823,10 +22381,14 @@ "content": "44b8dcfc5c93fc35b9dd4a5ef8f519e7848e993e3889fce3925c554edf0387c634d023723b5b4d88236827405865967016a605b8094918a1b1384774b1a2861d" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-http-deprecated@1.11.4.Final?type=jar", "externalReferences": [ { @@ -21889,10 +22451,14 @@ "content": "2341148038d2779187407aae7d9225ec4d9d8f2c9fa0d744ff10973265d1b8370abf51a6e7d39cbc4f3722e286c87dd76c905e35791d8f9088ddb785211898ce" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-http-digest@1.11.4.Final?type=jar", "externalReferences": [ { @@ -21955,10 +22521,14 @@ "content": "8a4774dc50936aa4ef901b7b4a4b658dd972e6d2b4708cb43055955e72719dd0a3c8270949f56667eea0cb0948fede7626c3b149fede76546ce43d8f476abe09" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-http-form@1.11.4.Final?type=jar", "externalReferences": [ { @@ -22021,10 +22591,14 @@ "content": "0f8860b8f6be769a45091bf614577e2fc219dc31050a753ef01c97b738fec2f1a849ac5f194fd5a446046b053e978d76ba5d889a5268e74c3ce3040cee9fcecc" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-http-spnego@1.11.4.Final?type=jar", "externalReferences": [ { @@ -22087,10 +22661,14 @@ "content": "6ccc51accba888a4c4716fb02bcf502b21f117948e867572cdc34f145c8af304be9935dea7b1fa7d72a2da91fa7a9c329d6c0b5257244432a5a4d885b8165ef3" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-http-sso@1.11.4.Final?type=jar", "externalReferences": [ { @@ -22153,10 +22731,14 @@ "content": "edfaea7025ca49620e54ec2484071221613308b9d7eea1030b5d54d54dca8202c6229a15669b21f9ab27becb1e41e1d0858b108c17122cd3229f3efb071b1eb0" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-http-util@1.11.4.Final?type=jar", "externalReferences": [ { @@ -22219,10 +22801,14 @@ "content": "b4db0007c4af48cb840349599c7717e4e3a9161f05e6a2ce3eb0242830474fa352107f57d14416fe966a5c4371391dee607e7f418339185bd455969e79c0f099" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-jacc@1.11.4.Final?type=jar", "externalReferences": [ { @@ -22285,10 +22871,14 @@ "content": "0a906c164fc802cf2fb0b818b94429da0a59cf0e5fd5104844c3b4fc3877dc59c8b6bc29c30007a7ebdc55de8345d3bf76b95131ad62820ec9372590c7952b7a" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-jaspi@1.11.4.Final?type=jar", "externalReferences": [ { @@ -22351,10 +22941,14 @@ "content": "50e51c9a27a4c193fc62d0183ada94cfa7d40d050633f8f4831b5bd2ae1404e0a2a11a4d78b9f081fcbece231b528a97256e6ebdc46fc1c8a8665675504ca561" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-json-util@1.11.4.Final?type=jar", "externalReferences": [ { @@ -22417,10 +23011,14 @@ "content": "6676623792f62ed73d7509dae7b355389f7127bc8c404fe61b8925a50590aae05e5894964c86be9dccf87f9481fb6c3da7845c9d21aaa8b2e1a29701520ab847" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-keystore@1.11.4.Final?type=jar", "externalReferences": [ { @@ -22483,10 +23081,14 @@ "content": "6237ab629167eef3e857a9a68bdd34fa63c34e33fe143450aa1ac66ff501d339fb11b4e93033f00771323894b2f5e8c02171bc26107d15dd84679c0af055b278" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism@1.11.4.Final?type=jar", "externalReferences": [ { @@ -22549,10 +23151,14 @@ "content": "b613cee3b1ab3474c5453caf951fc58d19be5a7070407886ab2e5fe26465d7190e3eaf06928231b34f60f5f9cc400439f7b1c3fe1c8edebf29965e6b6edac63a" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-digest@1.11.4.Final?type=jar", "externalReferences": [ { @@ -22615,10 +23221,14 @@ "content": "eb56a7b5ea54fcc372dbb88f81a6007d24278f7be97624d2eff0f877ee853e84bea17dc4885f4f0be9e1224d2096712d8e3f80d2eaa42f3bc42479694b03f684" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-gssapi@1.11.4.Final?type=jar", "externalReferences": [ { @@ -22681,10 +23291,14 @@ "content": "5783f279b17fef428904c9f8fd9a527865f8b2a59a9f15879d2d3f8bc2f44f9f27945d69045acc4ef467cf8d4d5f5a1e44daffb6ae287759f26a44c9eca3b279" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-http@1.11.4.Final?type=jar", "externalReferences": [ { @@ -22747,10 +23361,14 @@ "content": "e8629c476ba8064841cbd6b418213c9b8b9d5146df168e09915e8dc1af87a7e7ba5f4f013b399bb87e3b3a689573dd4feaf1bde08d96a5fe575297f283567344" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-oauth2@1.11.4.Final?type=jar", "externalReferences": [ { @@ -22813,10 +23431,14 @@ "content": "aded2fcc6bd7d655939179f98fef1a9512f1432b13f76415962a2c7f25d12f0c5e7f6c8d7a2383d18d2c611b3ab573accbdd7e84c7f4f41285203672bc631e4b" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-scram@1.11.4.Final?type=jar", "externalReferences": [ { @@ -22879,10 +23501,14 @@ "content": "cbf352d73d840a0535b28b1e5abb16eab133b8917ca1c2040a3ebaf4e028b237bd0a2cd6eed32f92922240ade9c3ee478b22465a05182e7911a07e8bcec772b2" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-password-impl@1.11.4.Final?type=jar", "externalReferences": [ { @@ -22945,10 +23571,14 @@ "content": "1d686df05ac3964a6863ce2744c33d255a9857f045bf92796c5c35ba00fcbba4261fa3009dd90982d6a3b1e4b4a828638329c4421b1691386ec8b74c70cf53b3" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-permission@1.11.4.Final?type=jar", "externalReferences": [ { @@ -23011,10 +23641,14 @@ "content": "c3e64c87d1cb00d5e37c23de8d96a5993d8692cba429183e083ca723b63fbb48c71c67b576cdd8a2d0847cace34f81ff257b4593798fdf58eb8c496e1928972c" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-realm@1.11.4.Final?type=jar", "externalReferences": [ { @@ -23077,10 +23711,14 @@ "content": "9744ee0401875f44aec77e5621ddd826aef560d306b1581fa977cf900995cbbb15d3dc433d3674ea084a8674e72bb8380e9d41d0bd20217490a82dd4de65c9b8" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-realm-jdbc@1.11.4.Final?type=jar", "externalReferences": [ { @@ -23143,10 +23781,14 @@ "content": "9fcda9ee28b9cf35fa4a92be925e107a34b46ad7004daf1aee03f8b1d7393fa102f12c4da6261bf9745f554ccea92dcfe0b766522de919b5c6532981a29ba5c1" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-realm-ldap@1.11.4.Final?type=jar", "externalReferences": [ { @@ -23209,10 +23851,14 @@ "content": "42c84d73a17b46101bab6c5db60734c46d0867b9ce88fc26a928db1253f0278f65738af1fdb75c98c689913e03d58c58f0ea10645f280c64160ed234bd3dd330" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-realm-token@1.11.4.Final?type=jar", "externalReferences": [ { @@ -23275,10 +23921,14 @@ "content": "63e511599407682f928c6c28bc99f502e5733287285d2f6dd895ffa52a6be588e9b409d07ae8dfc462a161bbb32a42ac98cff3b8e4e43c13897896711d555fdb" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl@1.11.4.Final?type=jar", "externalReferences": [ { @@ -23341,10 +23991,14 @@ "content": "d9193d9d82a9dcb7d296ea5cfc0b9292fcca2d27e77bd1aa379b80d21b0092f9a6cfcd5dfd122cabce56eedd46296b1c5570042e99d67f1b074549bdd5db3e55" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-anonymous@1.11.4.Final?type=jar", "externalReferences": [ { @@ -23407,10 +24061,14 @@ "content": "51d06d03409137bc69a6ea754fbb99973f3134afb770bbfdc993a2a3dbb71d8552c672a1f75196e08043e18413ceb5ad47dd7afd3803ae3ccd3f2cfa70419c06" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-auth-util@1.11.4.Final?type=jar", "externalReferences": [ { @@ -23473,10 +24131,14 @@ "content": "50005290f174e902ebfe63a998ab9547cb6498776891fba703b38e73e5c2298f02e5774539cab9a5efffa952006959097ca10df78d4065b1fd45cf5c17243452" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-deprecated@1.11.4.Final?type=jar", "externalReferences": [ { @@ -23539,10 +24201,14 @@ "content": "cde1520bcc2df317515969782296095ca730aaf5ee48fef1d2f26e2e125d14d00e7fe847026bf979d8849dbf5b97f8079ec2adb58f7a318526d4d16b2aec9b91" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-digest@1.11.4.Final?type=jar", "externalReferences": [ { @@ -23605,10 +24271,14 @@ "content": "d0b1467a5d9619a45cd798327e9c8bdb070c69c4cdfe9aed88c116f01d637acf00f65b1c1c51a9b8a7ac7b6f0c7af276c24667fc31a30a3b302a8bc2561ed6d7" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-entity@1.11.4.Final?type=jar", "externalReferences": [ { @@ -23671,10 +24341,14 @@ "content": "13c79199efe242ed2834da2f07d3f7ab956443534bc5d6d86093beb2cf10e53afdb29bf402a3fda7cdbea0fe4e21814fe3785bfa0502291244a938cb08c7381c" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-external@1.11.4.Final?type=jar", "externalReferences": [ { @@ -23737,77 +24411,85 @@ "content": "7cd94a7a4640b82e020febfcf3ba0f7ede7e3ef6d61eb04ebbcf9ec5c108dc22dae6447ecf61d8742eb74038e8ab92005d12dbfdd61a6b8454fe9cbf157c4906" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], - "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-gs2@1.11.4.Final?type=jar", - "externalReferences": [ - { - "type": "issue-tracker", - "url": "https://issues.jboss.org/browse/ELY" - }, - { - "type": "vcs", - "url": "https://github.com/wildfly-security/wildfly-elytron" - }, - { - "type": "website", - "url": "http://www.jboss.org" - }, - { - "type": "mailing-list", - "url": "http://lists.jboss.org/pipermail/jboss-user/" - } - ] - }, - { - "type": "library", - "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-gssapi@1.11.4.Final?type=jar", - "publisher": "JBoss by Red Hat", - "group": "org.wildfly.security", - "name": "wildfly-elytron-sasl-gssapi", - "version": "1.11.4.Final", - "description": "WildFly Security GSSAPI SASL Implementation", - "hashes": [ - { - "alg": "MD5", - "content": "ceb44d432a494599cfafae4511438ec0" - }, - { - "alg": "SHA-1", - "content": "6d2edd24a0fdb97129ae0d885b7b44f937af8be2" - }, - { - "alg": "SHA-256", - "content": "3c4a94f6fc891acce3d36ce51777ed241c4becef297d669def5990374ba5c191" - }, - { - "alg": "SHA-384", - "content": "1492bc2decd45a7381bb5ecfee6c2d01803c7a4c2f4337b075d8aa1cb14a6872ab30c039e50823ea2ba276303e979abd" - }, - { - "alg": "SHA-512", - "content": "00ecb9bfce031fd49f819fa34e80a841e3a88b12eec95ff6af762ec40f94b3e959392f5e968dab827cb714e5bf2c82ef0354d0bae22f5ec2d350ae217c1b836d" - }, - { - "alg": "SHA3-256", - "content": "c3548ad0538aa1fa19ba5d979ed4b2f47a99ab5c6a99a9b8a93d84cb5b59fe59" - }, - { - "alg": "SHA3-384", - "content": "90b7970ddecd1e36d7fad6ae8e248c97066df643c0ca727b147259f5cdaeba523f6b238557e0410f3b0aa9023d48427a" - }, + "licenses": [ { - "alg": "SHA3-512", - "content": "7cfe6c9adc0cf28c39dd48453e3be65872f0e4f1a7501e8ff8875b1ccc7a7f3eadfd179ce86b8376ad9f32ef8a90c39e4e8bba4bbfe565fa8a6ee7e4cd4fe44d" + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], - "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-gssapi@1.11.4.Final?type=jar", + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-gs2@1.11.4.Final?type=jar", + "externalReferences": [ + { + "type": "issue-tracker", + "url": "https://issues.jboss.org/browse/ELY" + }, + { + "type": "vcs", + "url": "https://github.com/wildfly-security/wildfly-elytron" + }, + { + "type": "website", + "url": "http://www.jboss.org" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-gssapi@1.11.4.Final?type=jar", + "publisher": "JBoss by Red Hat", + "group": "org.wildfly.security", + "name": "wildfly-elytron-sasl-gssapi", + "version": "1.11.4.Final", + "description": "WildFly Security GSSAPI SASL Implementation", + "hashes": [ + { + "alg": "MD5", + "content": "ceb44d432a494599cfafae4511438ec0" + }, + { + "alg": "SHA-1", + "content": "6d2edd24a0fdb97129ae0d885b7b44f937af8be2" + }, + { + "alg": "SHA-256", + "content": "3c4a94f6fc891acce3d36ce51777ed241c4becef297d669def5990374ba5c191" + }, + { + "alg": "SHA-384", + "content": "1492bc2decd45a7381bb5ecfee6c2d01803c7a4c2f4337b075d8aa1cb14a6872ab30c039e50823ea2ba276303e979abd" + }, + { + "alg": "SHA-512", + "content": "00ecb9bfce031fd49f819fa34e80a841e3a88b12eec95ff6af762ec40f94b3e959392f5e968dab827cb714e5bf2c82ef0354d0bae22f5ec2d350ae217c1b836d" + }, + { + "alg": "SHA3-256", + "content": "c3548ad0538aa1fa19ba5d979ed4b2f47a99ab5c6a99a9b8a93d84cb5b59fe59" + }, + { + "alg": "SHA3-384", + "content": "90b7970ddecd1e36d7fad6ae8e248c97066df643c0ca727b147259f5cdaeba523f6b238557e0410f3b0aa9023d48427a" + }, + { + "alg": "SHA3-512", + "content": "7cfe6c9adc0cf28c39dd48453e3be65872f0e4f1a7501e8ff8875b1ccc7a7f3eadfd179ce86b8376ad9f32ef8a90c39e4e8bba4bbfe565fa8a6ee7e4cd4fe44d" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-gssapi@1.11.4.Final?type=jar", "externalReferences": [ { "type": "issue-tracker", @@ -23869,10 +24551,14 @@ "content": "dd5992aa61182721a6de57e165cd55cc73ae34a969181a6d4b07bde4a857b381fa220882c7e93cb4d89b6ca3a0abdb6e09b404d3f42bf4a81197d18f26d95fab" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-localuser@1.11.4.Final?type=jar", "externalReferences": [ { @@ -23935,10 +24621,14 @@ "content": "e8ec095a3934168f5309b53d1f6eb56693d1e4ed039625fc26de82c0333ebcfcc524d3e3258e9f36d5b344b7698074a1638a79b653c167eda7caff5dfe30b344" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-oauth2@1.11.4.Final?type=jar", "externalReferences": [ { @@ -24001,10 +24691,14 @@ "content": "7a3ee8bb7bd356ac331f612c6df49f7b03eb1ab0c9ea69381a2e0c6782e9b99a96097ed7d5d52836cf28427dff08aaaa5852aa732bf7ccff4bfbcc7584715b53" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-otp@1.11.4.Final?type=jar", "externalReferences": [ { @@ -24067,10 +24761,14 @@ "content": "7cdfeab01aa14ee6ed81d9b81008242cbb557fea4d44664bb586ecf66f3d0c1a9e4ba84ee4f591b006adb74b4da95bb456e8fd13ea1ce66b880c3afc9544ecf8" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-plain@1.11.4.Final?type=jar", "externalReferences": [ { @@ -24133,10 +24831,14 @@ "content": "1f561ca50f4e64bcfc558a669262b308c8c0d7070a28bb45a7ec8f6ef460e3b0bb479c9fb22f703838ef7de89bfea8b936fced6a7a8882b88fb995049a2bdd2b" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-scram@1.11.4.Final?type=jar", "externalReferences": [ { @@ -24199,10 +24901,14 @@ "content": "03a938aa0e1c071e1693198592ebcab4f9c08769a29346c5bf86158f5c6890ee8a9b0e2f256b5fb8dc597461cadf7918ddf061c9e10c0bbe03fac197360d0f16" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-security-manager@1.11.4.Final?type=jar", "externalReferences": [ { @@ -24265,10 +24971,14 @@ "content": "309629e4f2343d0eb0c1d5240f92c1a174470823f35ccf62fb7d14634e0a8c4cd1a2e64a7063cd1e313594bd96e6e2dcdff6412321d2ad71693ca6ae98cf7158" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-security-manager-action@1.11.4.Final?type=jar", "externalReferences": [ { @@ -24331,10 +25041,14 @@ "content": "997a1055427f157d8f9c6c0ccdd58f20de0f3c7b0a428286ba9e39420b6839af2ee1cb08b0db6a3315a2c65a667c91bad8110bae55554b9b422ef867941465fa" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-ssl@1.11.4.Final?type=jar", "externalReferences": [ { @@ -24397,10 +25111,14 @@ "content": "fa3a82ef419403ae5f0f4dfd922d6652309d06aa90d9d334b856b04944b74411b4501bc9f0544ce8061d93a29d5d27b8efe46a415ce06895295a19aca6a7d9fd" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-util@1.11.4.Final?type=jar", "externalReferences": [ { @@ -24463,10 +25181,14 @@ "content": "33b11f8c0cdd1db948de625588843d8bb4a07efe154ef72eb7f5bb16696bd07d6ec9b835787aa0493fba2e2135188da9b0a8f51a7eea0f489381ec161ab9901b" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500@1.11.4.Final?type=jar", "externalReferences": [ { @@ -24529,10 +25251,14 @@ "content": "b989f0630fff6cc9f5b57be12d5322fa15affaedc47b1793d5ea997b2770b90bf567d3921c6110d0e9e27826c346f9386e20a1e0959246767990dbc8769b250f" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500-cert@1.11.4.Final?type=jar", "externalReferences": [ { @@ -24595,10 +25321,14 @@ "content": "dcf7ebc1ba191eaa46978aabe0e4c327af0dc4fa0bdf5668825244432fad098da7252923ed0efdd7cbbd278119f394f48a8793afb96956768f9460761dd83aa3" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500-cert-acme@1.11.4.Final?type=jar", "externalReferences": [ { @@ -24661,10 +25391,14 @@ "content": "846ae3a43d7e2945c40565ee87e2b92b1520feeb113fd752b87eebbae92ff0fa0573279ec4db7c0ca49f6694cc344684a3a9ff481d7749e9c04559cab5a49ecb" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500-cert-util@1.11.4.Final?type=jar", "externalReferences": [ { @@ -24727,10 +25461,14 @@ "content": "d984a006adf71da39a681be52d65aeec8a761f6700a5e0917eb1b5fbe8686736188ed347e17edc56ff7963266255f3bdfc53a1ac74389410ce386a64352225d9" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500-deprecated@1.11.4.Final?type=jar", "externalReferences": [ { @@ -24793,10 +25531,14 @@ "content": "6b6bc291b227dac71dd691f047d87538c5404056b5256ab87d960d53e8e3ddd66cb3d9d7e187e6f91282f2f53da3c7650cd9be800200e566566c5969650ca809" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500-principal@1.11.4.Final?type=jar", "externalReferences": [ { @@ -24859,7 +25601,7 @@ "content": "e4291c44d736cdbba23d6ab04a047c2183edced5d276fdd01d2f2a77d2b60ca0b791a06c3ce127b97945de1daa8eef87094558b47f80d1cc670dd70f50896b41" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.keycloak/keycloak-saml-wildfly-adapter@10.0.2?type=jar", "externalReferences": [ { @@ -24926,7 +25668,7 @@ "content": "885d55e33a90b1b7fc82e2b09ed2c3e9344461a9c9d8689a318d8b7c34fad3b4fc91718a4e65eea2da68fc21b6c30dfcc2b857b36ddbea764f7b635d0a09ebe0" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.keycloak/keycloak-saml-wildfly-elytron-adapter@10.0.2?type=jar", "externalReferences": [ { @@ -24993,7 +25735,7 @@ "content": "03fa79559665f933eee4e9ef5cf51c7209e534164e98224c9e63a5702b95cf905dcf15920caaa642fde4e51dcb12f9551594e2f58586ff4d6b7c807feaa60397" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.keycloak/keycloak-servlet-adapter-spi@10.0.2?type=jar", "externalReferences": [ { @@ -25060,7 +25802,7 @@ "content": "797a358e0ae2557e005835bfb44f7a0b038709828a465bd973d6941319854829ea297c11962446b280eb2036f634bd7993454a2d3070e1a726c070c288ce977f" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.keycloak/keycloak-jetty-adapter-spi@10.0.2?type=jar", "externalReferences": [ { @@ -25127,7 +25869,7 @@ "content": "c08a1e5db1af64c04c9dd6ed15e5acdc83ec72618391210e8348ab438d47c08939f634ad7975766f312cd42b8ce1032f421810c29f56cd69566dcb182e17871c" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.keycloak/keycloak-saml-jetty-adapter-core@10.0.2?type=jar", "externalReferences": [ { @@ -25195,8 +25937,8 @@ } ], "licenses": [ - {"license": {"id": "Apache-2.0"}}, - {"license": {"id": "EPL-1.0"}} + { "license": { "id": "Apache-2.0" } }, + { "license": { "id": "EPL-1.0" } } ], "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.2.4.v20141103?type=jar", "externalReferences": [ @@ -25328,8 +26070,8 @@ } ], "licenses": [ - {"license": {"id": "Apache-2.0"}}, - {"license": {"id": "EPL-1.0"}} + { "license": { "id": "Apache-2.0" } }, + { "license": { "id": "EPL-1.0" } } ], "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.4.v20141103?type=jar", "externalReferences": [ @@ -25398,8 +26140,8 @@ } ], "licenses": [ - {"license": {"id": "Apache-2.0"}}, - {"license": {"id": "EPL-1.0"}} + { "license": { "id": "Apache-2.0" } }, + { "license": { "id": "EPL-1.0" } } ], "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.2.4.v20141103?type=jar", "externalReferences": [ @@ -25468,8 +26210,8 @@ } ], "licenses": [ - {"license": {"id": "Apache-2.0"}}, - {"license": {"id": "EPL-1.0"}} + { "license": { "id": "Apache-2.0" } }, + { "license": { "id": "EPL-1.0" } } ], "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.2.4.v20141103?type=jar", "externalReferences": [ @@ -25538,8 +26280,8 @@ } ], "licenses": [ - {"license": {"id": "Apache-2.0"}}, - {"license": {"id": "EPL-1.0"}} + { "license": { "id": "Apache-2.0" } }, + { "license": { "id": "EPL-1.0" } } ], "purl": "pkg:maven/org.eclipse.jetty/jetty-security@9.2.4.v20141103?type=jar", "externalReferences": [ @@ -25608,8 +26350,8 @@ } ], "licenses": [ - {"license": {"id": "Apache-2.0"}}, - {"license": {"id": "EPL-1.0"}} + { "license": { "id": "Apache-2.0" } }, + { "license": { "id": "EPL-1.0" } } ], "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.3.9.v20160517?type=jar", "externalReferences": [ @@ -25678,8 +26420,8 @@ } ], "licenses": [ - {"license": {"id": "Apache-2.0"}}, - {"license": {"id": "EPL-1.0"}} + { "license": { "id": "Apache-2.0" } }, + { "license": { "id": "EPL-1.0" } } ], "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.9.v20160517?type=jar", "externalReferences": [ @@ -25748,8 +26490,8 @@ } ], "licenses": [ - {"license": {"id": "Apache-2.0"}}, - {"license": {"id": "EPL-1.0"}} + { "license": { "id": "Apache-2.0" } }, + { "license": { "id": "EPL-1.0" } } ], "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.3.9.v20160517?type=jar", "externalReferences": [ @@ -25818,8 +26560,8 @@ } ], "licenses": [ - {"license": {"id": "Apache-2.0"}}, - {"license": {"id": "EPL-1.0"}} + { "license": { "id": "Apache-2.0" } }, + { "license": { "id": "EPL-1.0" } } ], "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.3.9.v20160517?type=jar", "externalReferences": [ @@ -25888,8 +26630,8 @@ } ], "licenses": [ - {"license": {"id": "Apache-2.0"}}, - {"license": {"id": "EPL-1.0"}} + { "license": { "id": "Apache-2.0" } }, + { "license": { "id": "EPL-1.0" } } ], "purl": "pkg:maven/org.eclipse.jetty/jetty-security@9.3.9.v20160517?type=jar", "externalReferences": [ @@ -25958,8 +26700,8 @@ } ], "licenses": [ - {"license": {"id": "Apache-2.0"}}, - {"license": {"id": "EPL-1.0"}} + { "license": { "id": "Apache-2.0" } }, + { "license": { "id": "EPL-1.0" } } ], "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.4.2.v20170220?type=jar", "externalReferences": [ @@ -26028,8 +26770,8 @@ } ], "licenses": [ - {"license": {"id": "Apache-2.0"}}, - {"license": {"id": "EPL-1.0"}} + { "license": { "id": "Apache-2.0" } }, + { "license": { "id": "EPL-1.0" } } ], "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.2.v20170220?type=jar", "externalReferences": [ @@ -26098,8 +26840,8 @@ } ], "licenses": [ - {"license": {"id": "Apache-2.0"}}, - {"license": {"id": "EPL-1.0"}} + { "license": { "id": "Apache-2.0" } }, + { "license": { "id": "EPL-1.0" } } ], "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.2.v20170220?type=jar", "externalReferences": [ @@ -26168,8 +26910,8 @@ } ], "licenses": [ - {"license": {"id": "Apache-2.0"}}, - {"license": {"id": "EPL-1.0"}} + { "license": { "id": "Apache-2.0" } }, + { "license": { "id": "EPL-1.0" } } ], "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.2.v20170220?type=jar", "externalReferences": [ @@ -26238,8 +26980,8 @@ } ], "licenses": [ - {"license": {"id": "Apache-2.0"}}, - {"license": {"id": "EPL-1.0"}} + { "license": { "id": "Apache-2.0" } }, + { "license": { "id": "EPL-1.0" } } ], "purl": "pkg:maven/org.eclipse.jetty/jetty-security@9.4.2.v20170220?type=jar", "externalReferences": [ @@ -26395,10 +27137,14 @@ "content": "74d12937f4c420f5e225bc316e11b93de758adec7602589b9f27b4e0145a72e43ef96796a56471e4cceac4b6cb11e16287302dbf1ffbe6898cfcb9b9251daee4" } ], - "licenses": [{"license": { - "name": "ALv2", - "url": "http://www.apache.org/licenses/LICENSE-2.0.html" - }}], + "licenses": [ + { + "license": { + "name": "ALv2", + "url": "http://www.apache.org/licenses/LICENSE-2.0.html" + } + } + ], "purl": "pkg:maven/org.ops4j.pax.web/pax-web-runtime@7.1.0?type=jar", "externalReferences": [ { @@ -26469,7 +27215,7 @@ "content": "e729b5eebdee90aaa4c8909a1c1199223b62b6b8e12a0fb66f1f44fc710f4e83f8aacc35c28d14ec69f406a79d0ec1a48231d24d310eb275c4dfaed122cfdda3" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.jasypt/jasypt@1.9.2?type=jar", "externalReferences": [ { @@ -26524,10 +27270,14 @@ "content": "79204d792d96e1b36252cba6bcf08119ff81f0316cf2f2cfc4f169b2c657e7d1c5086eec410032cf422677da7f9223c66ea2ef37dd7fe073e45379bfe6aca03e" } ], - "licenses": [{"license": { - "name": "ALv2", - "url": "http://www.apache.org/licenses/LICENSE-2.0.html" - }}], + "licenses": [ + { + "license": { + "name": "ALv2", + "url": "http://www.apache.org/licenses/LICENSE-2.0.html" + } + } + ], "purl": "pkg:maven/org.ops4j.pax.web/pax-web-spi@7.1.0?type=jar", "externalReferences": [ { @@ -26598,10 +27348,14 @@ "content": "3b45aba1ac5e476bcfb0e9fad124f2091c67454e920213e2eb1187cf7b24ba0bff70e37d65daff062cf8fc279a2abaa5f980dbfaf30c0b24be67adfc70f3be96" } ], - "licenses": [{"license": { - "name": "ALv2", - "url": "http://www.apache.org/licenses/LICENSE-2.0.html" - }}], + "licenses": [ + { + "license": { + "name": "ALv2", + "url": "http://www.apache.org/licenses/LICENSE-2.0.html" + } + } + ], "purl": "pkg:maven/org.ops4j.pax.web/pax-web-api@7.1.0?type=jar", "externalReferences": [ { @@ -26672,7 +27426,7 @@ "content": "b849fdaa19b2d3e652d31d8f32343e9370a43b7105521cab7f7af1e2e9c7b81908c807ce8ce6e3361653bd99a9420ab45dfb51915f658b1c7048f1ab00d4b5d0" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.keycloak/keycloak-undertow-adapter@10.0.2?type=jar", "externalReferences": [ { @@ -26739,7 +27493,7 @@ "content": "3fc5ea5b7bbaa2802ebbbea1517d0125ac69824a3357848a92cd79238d7b449f1cbe210f3faaed4b00c015680ad44ff0a216509e065086c670bddee60d6a6dfe" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.camel/camel-undertow@2.21.2?type=jar", "externalReferences": [ { @@ -26806,7 +27560,7 @@ "content": "ce3663cae5d8aa0916ec53fb2e1749a2e485cd7f87fff9a1a3d8c3777b459c86acb0b12d10e57b1b4016da05174b8cddce166b3ad8d66eb92f117b56b7928563" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.camel/camel-http-common@2.21.2?type=jar", "externalReferences": [ { @@ -26873,7 +27627,7 @@ "content": "26a779908b640fa28282d47ce2965013f5050f69ec6c3515b6f6604e00afec95ca7e3e1d06ecb19286ebe83582104152a075106316444e964b63350b34889bc8" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.camel/camel-core@2.21.2?type=jar", "externalReferences": [ { @@ -26940,10 +27694,14 @@ "content": "d5b0d8f148877a383fb168bab7b4666178c94fb8fbe422e2c0d712e21ac6a40c56b44a3e424485f5ef7f68ec7b098d91ae5576db87dfaa3c0409e5aa8941ef48" } ], - "licenses": [{"license": { - "id": "CDDL-1.1", - "url": "http://glassfish.java.net/public/CDDL+GPL_1_1.html" - }}], + "licenses": [ + { + "license": { + "id": "CDDL-1.1", + "url": "http://glassfish.java.net/public/CDDL+GPL_1_1.html" + } + } + ], "purl": "pkg:maven/com.sun.xml.bind/jaxb-core@2.3.0?type=jar", "externalReferences": [ { @@ -27010,10 +27768,14 @@ "content": "c6b9e55aa36338c2ac19295f599679440b5646459b1d8c368d3da738d8a48fa23c53aa5b34d4b83ca13ab3bc7909f34f5348e76e2fafb6205a918ffd3a648deb" } ], - "licenses": [{"license": { - "id": "CDDL-1.1", - "url": "http://glassfish.java.net/public/CDDL+GPL_1_1.html" - }}], + "licenses": [ + { + "license": { + "id": "CDDL-1.1", + "url": "http://glassfish.java.net/public/CDDL+GPL_1_1.html" + } + } + ], "purl": "pkg:maven/com.sun.xml.bind/jaxb-impl@2.3.0?type=jar", "externalReferences": [ { @@ -27080,7 +27842,7 @@ "content": "940514e3c10a3943f67e8571e4878937b433ba7fbb7ff0e0503a6130633e182a990048c8dbd307d3ba5697029968f6676adeaed58f34d6a2834f0858bd0f0da8" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.cxf/cxf-rt-transports-http@3.3.6?type=jar", "externalReferences": [ { @@ -27151,7 +27913,7 @@ "content": "701c80fb7636fe94102b647abbb1f421b4766cdf83794c0095140a0fdca1fe0d900b2488bafcdf77366142026c72b753b5b7ee95ebfc1e7946b29febb2add40b" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.cxf/cxf-core@3.3.6?type=jar", "externalReferences": [ { @@ -27222,7 +27984,7 @@ "content": "b747a3620be8991d4fe664b2fe4def137a6fe42e97627d3f08383d6a15fee39826413553ccc31eadc09e4b331575333de7c18f7488841f439bc41d728c887c1d" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/com.fasterxml.woodstox/woodstox-core@5.0.3?type=jar", "externalReferences": [ { @@ -27285,10 +28047,14 @@ "content": "ac3d87dab7f1e89c83f039557557536433c52a0d3201a2f514b82bb8b4f454eb9fc28b02b46a45a9caf983239612cf270085270421e4fd79eccfce0fd01f99da" } ], - "licenses": [{"license": { - "name": "The BSD License", - "url": "http://www.opensource.org/licenses/bsd-license.php" - }}], + "licenses": [ + { + "license": { + "name": "The BSD License", + "url": "http://www.opensource.org/licenses/bsd-license.php" + } + } + ], "purl": "pkg:maven/org.codehaus.woodstox/stax2-api@3.1.4?type=jar", "externalReferences": [ { @@ -27347,7 +28113,7 @@ "content": "c5adac90dfd591d8fca6b43ca7e20e0acda8c8396e3f162a0ff0c06ccb261d82853b227b03921482da8795d9af971bf9cbb284892bb0a466cff4b57ef8b1af89" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.ws.xmlschema/xmlschema-core@2.2.5?type=jar", "externalReferences": [ { @@ -27414,7 +28180,7 @@ "content": "d8cdadaf35428b85020f03c01a5e102801615f3a1f4d6b968951565dbafd720e7f05b7089a79d7a293c8c5d000a9d03251a0d50dc2ca51349df5713147c3aa41" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.geronimo.specs/geronimo-ws-metadata_2.0_spec@1.1.3?type=jar", "externalReferences": [ { @@ -27545,8 +28311,8 @@ } ], "licenses": [ - {"license": {"id": "CDDL-1.1"}}, - {"license": {"id": "GPL-2.0-with-classpath-exception"}} + { "license": { "id": "CDDL-1.1" } }, + { "license": { "id": "GPL-2.0-with-classpath-exception" } } ], "purl": "pkg:maven/org.jvnet.mimepull/mimepull@1.9.7?type=jar", "externalReferences": [ @@ -27668,10 +28434,14 @@ "content": "dcd9a56dfb4cd9d062253a41dcef80f59e037afee155d75bae2ffb29a4037dd70df00f75bfb0af182823e517316015f4354a2a875bf10a5ff11ac7c36905c63e" } ], - "licenses": [{"license": { - "name": "GNU Lesser General Public License", - "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html" - }}], + "licenses": [ + { + "license": { + "name": "GNU Lesser General Public License", + "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html" + } + } + ], "purl": "pkg:maven/org.jacorb/jacorb-omgapi@3.9?type=jar", "externalReferences": [ { @@ -27734,7 +28504,7 @@ "content": "aeb00105ed515e0127fc391fa86b3e805819047b6aa42963c0b6d1bbf23216c26efd7152655d18d428b3965a2bdd6695aaca8d261030841b661df539f96f9d7c" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.geronimo.specs/geronimo-jta_1.1_spec@1.1.1?type=jar", "externalReferences": [ { @@ -27797,10 +28567,14 @@ "content": "c6faa07271a730b8b93480c389202c9e25c58ba9eb0c3da85bb26ca724d7ecd8feccdce5f91f20fba535034bf5a6caf1559cfa3b4858b3af4ecbd1425e0f9579" } ], - "licenses": [{"license": { - "name": "lgpl", - "url": "http://repository.jboss.org/licenses/lgpl-2.1.txt" - }}], + "licenses": [ + { + "license": { + "name": "lgpl", + "url": "http://repository.jboss.org/licenses/lgpl-2.1.txt" + } + } + ], "purl": "pkg:maven/org.jboss.spec.javax.rmi/jboss-rmi-api_1.0_spec@1.0.6.Final?type=jar", "externalReferences": [ { @@ -27863,7 +28637,7 @@ "content": "6c5c2ca97ed9c8f6b88d5d364179087fe952bf3d6f57480f3acc3603decb8d2a32928973ec81a53936c500b3326669f3fafd447416917d6f22ffa6436013745b" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.cxf/cxf-rt-transports-http-undertow@3.3.6?type=jar", "externalReferences": [ { @@ -27934,7 +28708,7 @@ "content": "a60d3945106bfaf9470f7010ea8d77d998b9a908b12364fafe8ac9eb262398a22697f57a4bcef9b4e1657ee3605b4549c14ed646a391a75de807cebb01ec0820" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.keycloak/keycloak-osgi-adapter@10.0.2?type=jar", "externalReferences": [ { @@ -28001,7 +28775,7 @@ "content": "08d6d98f77a435d57b2e08442b1d07773261f2dfb89d10a449c9234541ea343831019840c80f84961fcc857060c755a900f0ffe9c49dee1b33f0ac3129adcba3" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.keycloak/keycloak-jetty-core@10.0.2?type=jar", "externalReferences": [ { @@ -28068,7 +28842,7 @@ "content": "e6ac1e27de8073f4921640a3b4646adcd525b58f5953f57fa64606d22601a4bdba50b213da8d4c2b4398313b26b59c11cbdfbb6c671de231193069db344d4ea3" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.keycloak/keycloak-jetty94-adapter@10.0.2?type=jar", "externalReferences": [ { @@ -28135,7 +28909,7 @@ "content": "d2e52e22e71853b10856ea7760628eb2a61ef7d0872f502a230e81a8f95a18c5edcc030a617aadbbf56c2098ea1f0201623e49a1c92c460a5b9aade3f6bc914b" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.keycloak/keycloak-tomcat-core-adapter@10.0.2?type=jar", "externalReferences": [ { @@ -28202,7 +28976,7 @@ "content": "beee8245494d694b7ebb030ec5749f3e2172bb4eadbbdf519b354ac9e9ce748d20c2a1dc41fe0addd4549c09713866f5aff002c39fa35a4bbe0365c5cb118792" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.keycloak/keycloak-tomcat-adapter@10.0.2?type=jar", "externalReferences": [ { @@ -28269,7 +29043,7 @@ "content": "e4003b456595d7449f550bf060f2d1f333f3c410e0d2735467d226ef7bb60e2685357dffdcf929848e5f6f618869b6db8933d3c4c5fa26b1d10be5b33e97212c" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.keycloak/keycloak-installed-adapter@10.0.2?type=jar", "externalReferences": [ { @@ -28336,7 +29110,7 @@ "content": "aa59b6235ef5fdd249b906a2165693fa859d6901f8cc761b2dbe01985c4447cc9fb733b16a34c1b15dcbdc20e4eaf673606680c8049c7ef518be5a294393264c" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/commons-codec/commons-codec@1.13?type=jar", "externalReferences": [ { @@ -28407,10 +29181,14 @@ "content": "217ba0463ba7124d3e446548cf93ee339e6c544c35e33b34e5f0e7532874490e86e3d985508d2191bbba20bc22e4882942fb83072374ccff35d4867af73aefd4" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.jboss.resteasy/resteasy-jackson2-provider@3.11.2.Final?type=jar", "externalReferences": [ { @@ -28477,7 +29255,7 @@ "content": "8b808f8ae43161d2e24b60b380a833978248a4304d60d0ef24694c1a78dd0836819cc42ab61bb3e93626d0fe3302fab102774f9340afa40d1d9c09b13bc5d06e" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.keycloak/keycloak-jetty93-adapter@10.0.2?type=jar", "externalReferences": [ { @@ -28544,7 +29322,7 @@ "content": "9137f0d93ddb70680536d36c0dbae5f1a78e111622c55c6715d37a7a3d1683c526868b1f56e6a04fa3bb89df8dcbab6e9d4edd3464449d5e4b2abf86a8bd6ae5" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework.security/spring-security-config@3.2.7.RELEASE?type=jar", "externalReferences": [ { @@ -28598,7 +29376,7 @@ "content": "830bc3f8328be76897990e9b9fc42eef02623115e456af96ad09b20900ad615519c8c8de60155ac04fb332eaa9510110d52edd13911af76271c71d91cbd789cc" } ], - "licenses": [{"license": {"name": "Public Domain"}}], + "licenses": [{ "license": { "name": "Public Domain" } }], "purl": "pkg:maven/aopalliance/aopalliance@1.0?type=jar" }, { @@ -28643,7 +29421,7 @@ "content": "77c474797954f565f4d81288ce6c09cef34840f10c0388eb188a3c0a19941394ddd4a77327bba1f828d8234e564da584c1441b37f9ad71d22659190bbb87ff22" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework.security/spring-security-core@3.2.7.RELEASE?type=jar", "externalReferences": [ { @@ -28698,7 +29476,7 @@ "content": "ca16575b392cda4ea1775864aff933a30209ce1188ce62a4e8fb9ae290c6b73d1afda5cd76d73167ae0218b48d14b154f8506e1cb83e63136991c69a2d8509cd" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework/spring-aop@3.2.13.RELEASE?type=jar", "externalReferences": [ { @@ -28753,7 +29531,7 @@ "content": "778b62af6b1e2456c1aa38c710d58707d5d46f31a28bc9adee373687936e81fa6bc7eb93bd512a1f66953a0da544f40d744928348718a0dd43033e18064e7ec7" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework/spring-beans@3.2.13.RELEASE?type=jar", "externalReferences": [ { @@ -28808,7 +29586,7 @@ "content": "7845eef8d5172a2211e8c4c9127e710b661f22a7457f5877ed7734b5441e8af9ddc7fc133f3c086f738d29d1693a9e383f9b28e9995fb99cccbf31e09b676f09" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework/spring-context@3.2.13.RELEASE?type=jar", "externalReferences": [ { @@ -28863,7 +29641,7 @@ "content": "903e726d79eea2ec80577fb3323569090c6d1677f41a3cbc23328268cafcaacf366bc85fcbf8b82082c93922b401b6f395775b4d7fc9d9933b88317173a96e82" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework/spring-core@3.2.13.RELEASE?type=jar", "externalReferences": [ { @@ -28918,7 +29696,7 @@ "content": "10821f95e3c5673c243c2133e65fb8c6f575cdaa2e11f37d1268f443b431d863236d1f09ede6c454f91198b5f764ad9622d7a5d93574e1fc67e7e37a64d6e525" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework.security/spring-security-web@3.2.7.RELEASE?type=jar", "externalReferences": [ { @@ -28973,7 +29751,7 @@ "content": "03ea22a32558c93bf3cc76ddba03c986cc18aae134413627a47d3d6f1af4e7f78fbbf38fb5c14303225a0a1617d05ae626b344d427512e8758d953b0b085477d" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework/spring-expression@3.2.13.RELEASE?type=jar", "externalReferences": [ { @@ -29028,7 +29806,7 @@ "content": "bd26e874647a0f0ee01d7163db2465ee3bff38267263e70522673855a92556ed5b4848173a14134716c109f4e6bde156294eff503f524ec7f8b2efee180fb1bb" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework/spring-web@3.2.13.RELEASE?type=jar", "externalReferences": [ { @@ -29083,7 +29861,7 @@ "content": "e24d012373ed374d1b8e3e2aea3603b88f0f6001ffb7ed2a93224926ff13de5c2b737c5a3fbdab337a69e603a400b8632174daceebe325cf57db3a6179664eaa" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.keycloak/spring-boot-container-bundle@10.0.2?type=jar", "externalReferences": [ { @@ -29150,7 +29928,7 @@ "content": "bbe7c4c9b54e224dbe2b57ce26f6a136ea107106bb6676401b3126f45b418b2f129e1b728c041e0602adb9f03af49c23cc796415dea4d611ee141eca65706af6" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.keycloak/spring-boot-legacy-container-bundle@10.0.2?type=jar", "externalReferences": [ { @@ -29217,7 +29995,7 @@ "content": "bcc2f06d3e00b063a8e8db94f94843f06a0ae7b2082ae1840801a344486ebccb651973ec870b6d99ee07257484a4066105140058d1d4877687e609cebf5b1a01" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.keycloak/keycloak-spring-security-adapter@10.0.2?type=jar", "externalReferences": [ { @@ -29284,7 +30062,7 @@ "content": "0a171bce17a51bc758c090d79fb38d73b5095d430dbe51ca15b4a8347749f367019a0c878b39d50f0969e88d07f9b9d742d4089826090c46c7cbcc7cfc592cf3" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework.boot/spring-boot-starter-web@1.5.16.RELEASE?type=jar", "externalReferences": [ { @@ -29347,7 +30125,7 @@ "content": "ed119204d1076ec286ebe76ac5a80e06e150dc086ba61503099a1635bfee76ecb6b0a2dc3f49d17e5de696f801e3ab3d0c7621b3841cbcd8da4f85304cc65b70" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework.boot/spring-boot-starter@1.5.16.RELEASE?type=jar", "externalReferences": [ { @@ -29410,7 +30188,7 @@ "content": "4c171a516f5cd0fe73ecc219cb5b029cf293bcd3d9beda778c196976ad88983c37647461980e439e14895d4f547bf27d6baa88a0d2d2cf556f825cbf410b7d1d" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework.boot/spring-boot@1.5.16.RELEASE?type=jar", "externalReferences": [ { @@ -29473,7 +30251,7 @@ "content": "a16131685bc1cdc9056d13c8ed0f94a0f2b06cf8309476940ea645e1c8621ce261c5c60ba61272fa3aa821f82bc8b24d7a518842c437ce8fc199dd1744698126" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework.boot/spring-boot-autoconfigure@1.5.16.RELEASE?type=jar", "externalReferences": [ { @@ -29536,7 +30314,7 @@ "content": "71ca4920ca961d41759a432d083b1c76ce6cb8a056bc90e323881fa879f1de9fea8846725eef04cfdb72b1c98e9b9d7b859fabccb2133cfb616d6ee161821565" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework.boot/spring-boot-starter-logging@1.5.16.RELEASE?type=jar", "externalReferences": [ { @@ -29600,11 +30378,13 @@ } ], "licenses": [ - {"license": {"id": "EPL-1.0"}}, - {"license": { - "name": "GNU Lesser General Public License", - "url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html" - }} + { "license": { "id": "EPL-1.0" } }, + { + "license": { + "name": "GNU Lesser General Public License", + "url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html" + } + } ], "purl": "pkg:maven/ch.qos.logback/logback-classic@1.1.11?type=jar", "externalReferences": [ @@ -29665,11 +30445,13 @@ } ], "licenses": [ - {"license": {"id": "EPL-1.0"}}, - {"license": { - "name": "GNU Lesser General Public License", - "url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html" - }} + { "license": { "id": "EPL-1.0" } }, + { + "license": { + "name": "GNU Lesser General Public License", + "url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html" + } + } ], "purl": "pkg:maven/ch.qos.logback/logback-core@1.1.11?type=jar", "externalReferences": [ @@ -29729,10 +30511,14 @@ "content": "dffaa6188e8fb42a235fa9bd9caf4ca4c2c9f8545763d673552a3746ef7bd51ec0f2270de2e0cca21b290a01d01004ff0baaecef4ffcdb616fbec363cc8b9d22" } ], - "licenses": [{"license": { - "id": "MIT", - "url": "https://opensource.org/licenses/MIT" - }}], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], "purl": "pkg:maven/org.slf4j/jcl-over-slf4j@1.7.25?type=jar", "externalReferences": [ { @@ -29791,10 +30577,14 @@ "content": "55dbffa865b1b757b3eec49f6b9def8baac2677eb251f605b02108f5260acfabf900eeb3e962d55d74796c0fec2e7721dacb2a3136221c02cda78f852885d1a7" } ], - "licenses": [{"license": { - "id": "MIT", - "url": "https://opensource.org/licenses/MIT" - }}], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], "purl": "pkg:maven/org.slf4j/jul-to-slf4j@1.7.25?type=jar", "externalReferences": [ { @@ -29853,10 +30643,14 @@ "content": "3c0141440cd9f7223b0b32246f4cc72a9f97a9776f4ecd156f177ddf81716db959a6b3e1e9e1b547ff418cf011435109c2d0c94f120fd14416ccaacd21789bf5" } ], - "licenses": [{"license": { - "name": "Apache Software Licenses", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" - }}], + "licenses": [ + { + "license": { + "name": "Apache Software Licenses", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + } + ], "purl": "pkg:maven/org.slf4j/log4j-over-slf4j@1.7.25?type=jar", "externalReferences": [ { @@ -29915,7 +30709,7 @@ "content": "09dc490ba248aa1a7221b13b078af2c697e653d2b18d020a5846aa751b1bc47df6e41592261f88069dc6589d0d0147c398b1e543f9d527785d78d236ad955329" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework/spring-core@4.3.19.RELEASE?type=jar", "externalReferences": [ { @@ -29973,7 +30767,7 @@ "content": "c72751b39000c6e06dd2c6ecad316b33f3eaf84ea2c089ad4f86e990a1556947fc6e969d186554cce9e865b831cdc3a198a7f5dd564193c8ae9ae1b9e34b4c89" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.yaml/snakeyaml@1.17?type=jar", "externalReferences": [ { @@ -30028,7 +30822,7 @@ "content": "13d66b7f2cdbf9863db891d7ad1cb385c3bc0824d8aad0a6d100aca588f07ae35169ec02b33779cc53c4b9d54abde6b78f0b1dd2d3cbe28cb55ba8804968603b" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework.boot/spring-boot-starter-tomcat@1.5.16.RELEASE?type=jar", "externalReferences": [ { @@ -30090,7 +30884,7 @@ "content": "68a7b0ac69b3032f55c8f616774e95e4e31a015871f55d69c4ae5da1e77a148c1d006bec0951963e5ef31c8d574e32ce6758c192bf19ad1e3f5185a178042a3e" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.tomcat.embed/tomcat-embed-core@8.5.34?type=jar" }, { @@ -30134,7 +30928,7 @@ "content": "73d2054d5596542272360e94e486666332e991c116093160d85bb87e3effcdb6ccadbd25bf6045720960587001610729db05dcb697acb57db28483a43aaa9b68" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.tomcat/tomcat-annotations-api@8.5.34?type=jar" }, { @@ -30178,7 +30972,7 @@ "content": "2c618085c132dc4b6dce7e2bdea651aa43c928fee768233585f8dec706b0a3aa8c8432c6a4ccc789b55912b3e0bad89a21d5a74fda9cec933569463c535bd0ac" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.tomcat.embed/tomcat-embed-el@8.5.34?type=jar" }, { @@ -30222,7 +31016,7 @@ "content": "6cb09f840253f3a2debdd75e12862b43e98519f6c23a4aa451fa20175d24e31ba00665ac0b3d16d7c85408b855108ed9fe069a5adf68b5921433e37b1c56e139" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.tomcat.embed/tomcat-embed-websocket@8.5.34?type=jar" }, { @@ -30266,10 +31060,14 @@ "content": "05c5c0b8c2414d313518e8a001bfba3efe9e00d1282175942b851a952b23a337950b98d4dd2323bc0bec046d93666c620f53ec2e7169e7367027f0af00ceef86" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.hibernate/hibernate-validator@5.3.6.Final?type=jar", "externalReferences": [ { @@ -30331,7 +31129,7 @@ "content": "a042781692aaaa9458be722d0437484c5f1fd8f3f4955c00008224caebeb671ab93740052599ce2f5feab8d7ec712c72786492f7c7ca1c27c25425545b05a91e" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/javax.validation/validation-api@1.1.0.Final?type=jar", "externalReferences": [ { @@ -30390,7 +31188,7 @@ "content": "4f8dbfc4a877d6d68327e06c3e808f2a3594e2faa0657a7b9a3630af97d6822271bde7cf55a1442f75034d42d610466836a93b400de0ae58ba3ea60f2414385b" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/com.fasterxml/classmate@1.3.1?type=jar", "externalReferences": [ { @@ -30453,7 +31251,7 @@ "content": "ea2c497f5c02a099bd1187e29a6fa68eeaa78a4c651d593f000d5fd8755f85f7a1d900b743d6078e9700f1226bc3da3eaa28a10452582c225d742dcad8eb8903" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework/spring-web@4.3.19.RELEASE?type=jar", "externalReferences": [ { @@ -30512,7 +31310,7 @@ "content": "1248dc8e662f23dbc65dcdc9b38976229c3bb46e5e39b786912562712369254459903d43c17cd679d811905ab41e960ac33a9003f64f90b6fe7302758b57cb83" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework/spring-aop@4.3.19.RELEASE?type=jar", "externalReferences": [ { @@ -30571,7 +31369,7 @@ "content": "409ad64bd05cce47ede56a4e7307892cb05436efcf93625725f11ea0d6ceac413d2905c0bf39452facd8835eb03230ed30e9f6aebcb7dfda98900ecda25d6e99" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework/spring-beans@4.3.19.RELEASE?type=jar", "externalReferences": [ { @@ -30630,7 +31428,7 @@ "content": "04bd8b78ccbe001640ec4c0d9a5e28b90fcfccbd08c20e6ce8c08d92ece807eed72b2b7bbe64e8aa515995966162e06d8d6efaf34ada4c18f81cb2af853b3276" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework/spring-context@4.3.19.RELEASE?type=jar", "externalReferences": [ { @@ -30689,7 +31487,7 @@ "content": "09fcf22a44505fe1b7241c2b68e5bc5989e468ab0abbad852c31e59c62d21b28c3c1e5149bcf14e0ba228618f9fbcee1cb0b00222726cc49062f60581dab0d24" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework/spring-webmvc@4.3.19.RELEASE?type=jar", "externalReferences": [ { @@ -30748,7 +31546,7 @@ "content": "05b1898484fe78283f926ac6e32826e300047aa1ec6a63572687f26998e0d8e2491e8b14753acc0b0c425f2c3adb470632edd87e49b048ddece00e0e56c6285f" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework/spring-expression@4.3.19.RELEASE?type=jar", "externalReferences": [ { @@ -30808,8 +31606,8 @@ } ], "licenses": [ - {"license": {"id": "Apache-2.0"}}, - {"license": {"id": "EPL-1.0"}} + { "license": { "id": "Apache-2.0" } }, + { "license": { "id": "EPL-1.0" } } ], "purl": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.4.v20141103?type=jar", "externalReferences": [ @@ -30878,8 +31676,8 @@ } ], "licenses": [ - {"license": {"id": "Apache-2.0"}}, - {"license": {"id": "EPL-1.0"}} + { "license": { "id": "Apache-2.0" } }, + { "license": { "id": "EPL-1.0" } } ], "purl": "pkg:maven/org.eclipse.jetty/jetty-xml@9.2.4.v20141103?type=jar", "externalReferences": [ @@ -30948,8 +31746,8 @@ } ], "licenses": [ - {"license": {"id": "Apache-2.0"}}, - {"license": {"id": "EPL-1.0"}} + { "license": { "id": "Apache-2.0" } }, + { "license": { "id": "EPL-1.0" } } ], "purl": "pkg:maven/org.eclipse.jetty/jetty-servlet@9.2.4.v20141103?type=jar", "externalReferences": [ @@ -31017,7 +31815,7 @@ "content": "14d33737c3ee85c0ec9c9e8ff60011c9b45cff28a3272df14178e267211c53b06c9ddfabaf4183d3966cba6e50ea731ee78ff94cb4420c14dc7a4a857ff6f5b6" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework.boot/spring-boot-configuration-processor@1.5.16.RELEASE?type=jar", "externalReferences": [ { @@ -31080,7 +31878,7 @@ "content": "f95d736a19a24e403122a5e47ad0c9a5a1f965128e9075aedc71550b7a25cee8c79eb5f2c20ac33cba7b103408969ad82d54e36ce0b6038948a9691749ce63e0" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.keycloak/keycloak-spring-boot-adapter-core@10.0.2?type=jar", "externalReferences": [ { @@ -31147,7 +31945,7 @@ "content": "8a0a7c4e88613841be5709fed8ff1dc852de7db3b262539ca0713323228fa062f3bc9df869abfc19985b2b93b7f41a3695e49d73030b9c0568f029c08caaa3e6" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework/spring-core@4.1.6.RELEASE?type=jar", "externalReferences": [ { @@ -31206,7 +32004,7 @@ "content": "a443e65b5d52339c295ff5e4ec5aeb792d6b35dc1d01ea768e44aba12a6693c66e707933814dfac7611ee0133df9c08cd8abe61f6d72ac073aa8b6ad586e3529" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework/spring-core@5.0.2.RELEASE?type=jar", "externalReferences": [ { @@ -31265,7 +32063,7 @@ "content": "2eea0cb41f1399dce2e929c2ecc5b321c88a5af6be79e60325111d780bb4f1ffc8fb43d2fb8afce8353c9bb734fc3306c4d8ddbbfa1af852b1873046302339ad" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework/spring-jcl@5.0.2.RELEASE?type=jar", "externalReferences": [ { @@ -31324,7 +32122,7 @@ "content": "52f6a2c53336967bc62270ad75a89dbf2758a59badb18bb5dee5a707f014a67390556b8c894b93ddb793ea0d482e56072684bbd6810efbef71cf62948870dd52" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework.boot/spring-boot-starter-web@2.0.5.RELEASE?type=jar", "externalReferences": [ { @@ -31383,7 +32181,7 @@ "content": "e7eff871a2dfc7379ee22d8290c1a750b8b617215b884e3ec4e4e10a14682049418b9541472c3e20ce25815da635d4646a1c836127aedd3aec895988e9b61620" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework.boot/spring-boot-starter@2.0.5.RELEASE?type=jar", "externalReferences": [ { @@ -31442,7 +32240,7 @@ "content": "55d9d601ce73de8593363ba5ceb76ea6fc8ea216ce32cafaa1f1e72345c5ca7c08081e85d42ac40a608ef26de72bd597143cc0a7724c89e31fd5e5069113924a" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework.boot/spring-boot@2.0.5.RELEASE?type=jar", "externalReferences": [ { @@ -31501,7 +32299,7 @@ "content": "87a3bbc1117320a1764962e4f51c7b9d56f8418983d02b36256c8b30aa43df6b71df364bf57094bcf7bd3d9c8a2b48a44a3ad668185341f0e8385c889b323bf1" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework.boot/spring-boot-autoconfigure@2.0.5.RELEASE?type=jar", "externalReferences": [ { @@ -31560,7 +32358,7 @@ "content": "e39de394778c87f2e11b973d33791c0d8d9bb127f0d0a9157d12bfef1cdeb57bd97a719f586ed4236e91ae2c64d2369c43d20dd2644bb6a0b3e7c823e9a322f3" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework.boot/spring-boot-starter-logging@2.0.5.RELEASE?type=jar", "externalReferences": [ { @@ -31620,11 +32418,13 @@ } ], "licenses": [ - {"license": {"id": "EPL-1.0"}}, - {"license": { - "name": "GNU Lesser General Public License", - "url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html" - }} + { "license": { "id": "EPL-1.0" } }, + { + "license": { + "name": "GNU Lesser General Public License", + "url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html" + } + } ], "purl": "pkg:maven/ch.qos.logback/logback-classic@1.2.3?type=jar", "externalReferences": [ @@ -31685,11 +32485,13 @@ } ], "licenses": [ - {"license": {"id": "EPL-1.0"}}, - {"license": { - "name": "GNU Lesser General Public License", - "url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html" - }} + { "license": { "id": "EPL-1.0" } }, + { + "license": { + "name": "GNU Lesser General Public License", + "url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html" + } + } ], "purl": "pkg:maven/ch.qos.logback/logback-core@1.2.3?type=jar", "externalReferences": [ @@ -31749,7 +32551,7 @@ "content": "eb816a9e2c45dcdb12e79fd7bf04c758f5aeb79e821a1e63234564bcca0ae45ca68ea9288239dded475cd89b631cc6918117a11a0c59ed95c1ac5d40137f0c6b" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.logging.log4j/log4j-to-slf4j@2.10.0?type=jar", "externalReferences": [ { @@ -31820,7 +32622,7 @@ "content": "d0fae8fe2b6ca37036b697bb55dcb4c2432b5df78f4b99103d7a00b486029d44b23c9ef00c9c955c8cd16c6e0d924a7dbc6ab8f30ca91b06354f2cecf760ed95" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.logging.log4j/log4j-api@2.10.0?type=jar", "externalReferences": [ { @@ -31890,7 +32692,7 @@ "content": "d266d19ac942a73d593c0a1fe73e158b70b310cbf0518483798b75f7536c7fe1989d9359d7296f43c787644c0001399e128bfc93452ceda11e39659844a06f86" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.yaml/snakeyaml@1.19?type=jar", "externalReferences": [ { @@ -31945,7 +32747,7 @@ "content": "8e876cacda60aadb1d8f0e77083fdf9257099e2c92183f6f7b6ae44cbed98a847f66bff2b2f8664e63459a9e0ba91d5f2a8ee535a19312915f8c8b708a47f2c6" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework.boot/spring-boot-starter-json@2.0.5.RELEASE?type=jar", "externalReferences": [ { @@ -32004,7 +32806,7 @@ "content": "d38f3243cf3f6e5851d44b0a8edf9f4f584e65a0fd72dd8a279e4293ff496ff72918969fbe60dd1d9faad5c5b1e2e3f9b1a1c642d45e0f61e1d5921d83790a51" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jdk8@2.9.6?type=jar", "externalReferences": [ { @@ -32067,7 +32869,7 @@ "content": "b530c6a40c3f455f6dd8feb533da4d5b0f16f2dd7ebc7505c9b09419b86a512fa36b3da486f427c835597a4b0529760d3465406c4c2e52b914e15463387ef30c" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jsr310@2.9.6?type=jar", "externalReferences": [ { @@ -32130,7 +32932,7 @@ "content": "fcd971b4e51f15fb63c96173d84281824ddce6972939a7a69e2b6cae7f249e18e858d3e5f118922246730ee3a9a674a9247678ffd7744ffc18a43b4c1139095b" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/com.fasterxml.jackson.module/jackson-module-parameter-names@2.9.6?type=jar", "externalReferences": [ { @@ -32193,7 +32995,7 @@ "content": "539c23902941a73ccd5610b1033933f1de4fd26ec1f851332667047e40dc1d61da7d4216ca231cf74e58c8459d5ec07ffb2c0d9000fe5e50e846f323d5261185" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework.boot/spring-boot-starter-tomcat@2.0.5.RELEASE?type=jar", "externalReferences": [ { @@ -32251,10 +33053,14 @@ "content": "0ef231d8ce857e39da520d9301d7a1895c23da185e08774dd10ec10eb0a89bdf790678224990328630245f61f1efabba4c353d1c85b8392f40d80b6528b5fdc1" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.hibernate.validator/hibernate-validator@6.0.12.Final?type=jar", "externalReferences": [ { @@ -32316,10 +33122,14 @@ "content": "c8e8c4f83fb4c3d881c7dfda07650b035db00251aa8b8030f00c4a0cf1ed919665a76c44a0da78b1bda118279cbf26646c1b813c1f3c21be2b8099020ffdfd01" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/javax.validation/validation-api@2.0.1.Final?type=jar", "externalReferences": [ { @@ -32378,7 +33188,7 @@ "content": "2de13071fd177b9622db10675007f09fd42ea4d2b5674e9d95e95295c981dfea88dafa0c3eeed552240ade401a623046e7dbe4e14c7f5de0ccd34eec76796318" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework/spring-web@5.0.9.RELEASE?type=jar", "externalReferences": [ { @@ -32437,7 +33247,7 @@ "content": "2b79a45bd4ec939018d6f5b66204d06747ab33ac5636acb6a71b6e1afb1d6d44db591f002c92aba621edc6a6bc80f5619da7f30599cac2e8c90632b10ad9c423" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework/spring-beans@5.0.9.RELEASE?type=jar", "externalReferences": [ { @@ -32496,7 +33306,7 @@ "content": "7526d4b5267a097da9f31ed6c0350cd43ea279714cd3fe171da6b45e22b4ec28f2cf429e585b1e9bb3e166c9d5559b3e048a3be3495f7ac0381ff7c408bf2c80" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework/spring-webmvc@5.0.9.RELEASE?type=jar", "externalReferences": [ { @@ -32555,7 +33365,7 @@ "content": "0a7e28a00fa13871636f88bdc59c1f3ed8e0ffdefc67c3927107e4fd04dab7109f6f020b94b7aceffff9084c0508806dc197207d630552f0ff2764b21f1ed1d9" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework/spring-aop@5.0.9.RELEASE?type=jar", "externalReferences": [ { @@ -32614,7 +33424,7 @@ "content": "6ff5b0205eaf65131d9773d10d26dd7e1a11376fc2885f2a2fbbc8e1c3bba4327d76c57e0b1867ad5fce44b4cc1aad3901591b8e862aa0ac7cece6209ce6a859" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework/spring-context@5.0.9.RELEASE?type=jar", "externalReferences": [ { @@ -32673,7 +33483,7 @@ "content": "61af1d6ced4b5150dd7ec3281fac278e6ed92faff67507b66f8c7153a96c50073a3fe29023c502fce0a8031ff0935eef6358fd23e04e6a07a56f8a9101b59263" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework/spring-expression@5.0.9.RELEASE?type=jar", "externalReferences": [ { @@ -32732,7 +33542,7 @@ "content": "066b5f788a87f83961715e18fb52a6d420b0cf9835c6d24e0846bab00e45587f978a6283bb16399c7e5c715e61e75e3c298860c9bed735356d67d70f27da49c1" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework.boot/spring-boot-configuration-processor@2.0.5.RELEASE?type=jar", "externalReferences": [ { @@ -32791,7 +33601,7 @@ "content": "6e7064a3016e9e22039c93942490846d9a71c260cb5462e8b615900d3332fd758e30a231c49421c7e14269e9327c3783aa3cfdcabfa2ed60b1e4fdfd16446257" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework.boot/spring-boot-autoconfigure-processor@2.0.5.RELEASE?type=jar", "externalReferences": [ { @@ -32850,10 +33660,14 @@ "content": "357b8bf7c4dab83bd0f37507a81cc53419ecd331b5e5a3239a595d14416d497f2db14e3675c84e1f1deeed68e1fa567414656c37cee2bc14c2ae614d19a5525a" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.security.elytron-web/undertow-common-test@1.7.1.Final?type=jar", "externalReferences": [ { @@ -32916,7 +33730,7 @@ "content": "78f046f0bc68a7afa972e26b8bc5d84c02edb7df87c1121078f9024594d7cc7f6a644054cb9d84ae2a82c2cbe4caecdcf9f99d5a788a58a610cd7050a3c3c487" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.keycloak/keycloak-wildfly-adapter@10.0.2?type=jar", "externalReferences": [ { @@ -32983,7 +33797,7 @@ "content": "182459e9db934db9f2804678d120adf0411b5c509a98065b8f5f7d52f14153629af9492463bbe4a69d52af4b3b3f2b2840d8a455e66af74f947beddf9b16347f" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.keycloak/keycloak-wildfly-elytron-oidc-adapter@10.0.2?type=jar", "externalReferences": [ { @@ -33050,7 +33864,7 @@ "content": "1604041677e61711415b23e093baf790e9f29ee4a97c097ed67fd9445dd372f380dda7526511bfffd61972481401f6109f41d1f34cf6ee67877002e8fe4f4374" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.keycloak/keycloak-spring-boot-2-adapter@10.0.2?type=jar", "externalReferences": [ { @@ -33117,7 +33931,7 @@ "content": "659ccb457b4c0aa5f2531bdec0208c06a55e76dfb939f104bc7550f3f13d0f1d6c0b987cc1aeba5857fa65d21154c4d858ab6081f28245efb81b19967ca0c98f" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework.boot/spring-boot-starter@2.0.3.RELEASE?type=jar", "externalReferences": [ { @@ -33176,7 +33990,7 @@ "content": "a3964db1d56e1e1e87f2dbfe5efdaba643d7d066be71c1397d8e1e5bcfda591df943b00e6c709eb1bdad93156fc970e4211b34c11a5a363529a56f1c80927908" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework.boot/spring-boot@2.0.3.RELEASE?type=jar", "externalReferences": [ { @@ -33235,7 +34049,7 @@ "content": "b590868d35282c243921a72921d369694f1345453b6e8e57a9bda3f17d143a7afb060ed822f54c8e85c516a9634566f3bc34716c51b2a1e7ed1ab50f4e98700e" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework/spring-context@5.0.7.RELEASE?type=jar", "externalReferences": [ { @@ -33294,7 +34108,7 @@ "content": "e057673f1fe4b86b0b3bd60d2feeef09549bd373cfd56e8d8a88b13272f8824b87bc8cfd02fb9739b1456ffa82567e1e99ca3cf6d5c1b7954cd0a0aa8f4d4299" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework.boot/spring-boot-autoconfigure@2.0.3.RELEASE?type=jar", "externalReferences": [ { @@ -33353,7 +34167,7 @@ "content": "b675c9c232396c19d8599e8090815c1b4f335c2674b485ad842b3edc847e19d750b8c3f923cb059723aab8567f9149ee9b53b764e39e1f9d9d9a32434a9d508a" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework.boot/spring-boot-starter-logging@2.0.3.RELEASE?type=jar", "externalReferences": [ { @@ -33412,7 +34226,7 @@ "content": "aa346100f5297969092dcfc7318f8647567ad586ec9260d3e492e9b1d65dba3343a6f23771e032c0932862d8db80081e7bd64e8dab7279a01efad687bc47fad3" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework/spring-core@5.0.7.RELEASE?type=jar", "externalReferences": [ { @@ -33471,7 +34285,7 @@ "content": "ecd92f66d430000dac40078f11d7d35aa4104b4e035b1233f3aab85389f3f37009adb3769f0ce22b6663367a8784b6b6c5391f104061add36adc684e4d95765e" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework/spring-jcl@5.0.7.RELEASE?type=jar", "externalReferences": [ { @@ -33530,7 +34344,7 @@ "content": "5f79653ff96fc59d89573dd6a6cd120ed74ce29241affa3ac6c758b978c1ba69c302a2e7378a8cfe0ba1038ae24cef36f3667ff1d2254546c1af539440ec1f19" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.keycloak/keycloak-spring-boot-adapter@10.0.2?type=jar", "externalReferences": [ { @@ -33597,7 +34411,7 @@ "content": "909be839202de9fbe1520c7a4d984ebc3283ac324105f931e426fe9a562bd2c4f613c681b3bb6a40c8a5cef6d051be3c24d6e202e82b334564166155d04f6f77" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework.boot/spring-boot-starter@1.5.14.RELEASE?type=jar", "externalReferences": [ { @@ -33660,7 +34474,7 @@ "content": "bb5da9c0fb3f6e3ad4e93db00f5238ec0bed99800599dd0dab4f394a20691075ad590bb94cf1b64c435b9ebd38f100eba42b9aadb3e915a89a6dcbf64ca88fbb" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework.boot/spring-boot@1.5.14.RELEASE?type=jar", "externalReferences": [ { @@ -33723,7 +34537,7 @@ "content": "f373b4ad9ca7e1184697e0048bd41eefefc7228791907b03bcaa1511a215ff82f422bea76fb3bedecdfc39859249b0eab6ae86850e6204f1a8be5eaab1ce8607" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework/spring-context@4.3.18.RELEASE?type=jar", "externalReferences": [ { @@ -33782,7 +34596,7 @@ "content": "105a456b17d974d4149af26547e4460e76d4869bb2f53edb2b6d95343f72e64ee63cfef8ad331a22e4b446fd8a8a9057e878ef7921ea4c30dc8661650ab435f6" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework/spring-aop@4.3.18.RELEASE?type=jar", "externalReferences": [ { @@ -33841,7 +34655,7 @@ "content": "c2278c5c55fcf40945db07a44d98f7c84d5ca3c01354d29916a50436cee7431e66219b3368d115857bcbab6e4406cd6a5a020eb8fbf1aa83112c0b4eb7454d36" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework/spring-beans@4.3.18.RELEASE?type=jar", "externalReferences": [ { @@ -33900,7 +34714,7 @@ "content": "ffd249d1cc9a5b8610e62b63f5a844ed8cae0f3a0fcb2945bf89d64780ce4fd156fc417571ab9c5efe6130d18c1353dca201f5709c3f03e7cfd6e886f82e0fa9" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework/spring-expression@4.3.18.RELEASE?type=jar", "externalReferences": [ { @@ -33959,7 +34773,7 @@ "content": "989ab0c78e80940c0a8a3aa49b972e31aba3b8bf5b64916ac79b9261fb488b807b4898babbfb34d594255260fe8110bd720b1809dfcef37e9ae92fe867db7d7f" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework.boot/spring-boot-autoconfigure@1.5.14.RELEASE?type=jar", "externalReferences": [ { @@ -34022,7 +34836,7 @@ "content": "65b6ade4078b0930bb311c56f2d7373e7fec00b87c17678b54f24dcd84c9f2ed63f3deec57ecd90ea397d9306b43314bd71804c06600bf54e08599b2652ffbf2" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework.boot/spring-boot-starter-logging@1.5.14.RELEASE?type=jar", "externalReferences": [ { @@ -34085,7 +34899,7 @@ "content": "283a607c855fb1eb9a5597a9ab890dfed2e3dc03e95b877728a590caa59999327001416292c91367f61e3e7caf6ffdf783455f15c2dc815c3d908b105f4daf2c" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework/spring-core@4.3.18.RELEASE?type=jar", "externalReferences": [ { @@ -34144,7 +34958,7 @@ "content": "08a495b7202a0e51b5778b531f14484de6797c04891e4f456bf1b5a6e93f0fce1c7d7f086e0f9e595acaec57a1b7cb04868e0b9162583b677c2fa89b265dd3a6" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.keycloak/keycloak-client-registration-api@10.0.2?type=jar", "externalReferences": [ { @@ -34211,7 +35025,7 @@ "content": "cad4f66c949a15efe7fc8e6394346fa4b5e01c1c9f838859d7d53e4da0e4015399cca8d0b54db3b2ff7cca57f45829becc34f0f0c43e68fe96eb4b9231a98c84" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.keycloak/keycloak-admin-client@10.0.2?type=jar", "externalReferences": [ { @@ -34277,7 +35091,7 @@ "content": "e01c9b8d2ad7e3b036fed46f66ee6e39faa850a085acc10f0906bb3a44f6de71b7fb19421d5c8d29437af9cb404d4ac48b66592f1c5cedf02bf72612a242ca43" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.seleniumhq.selenium/selenium-java@2.35.0?type=jar", "externalReferences": [ { @@ -34331,7 +35145,7 @@ "content": "a84f66b4bedc074f96ad50a8b77c0cd7d25c31caa3e897e51ff8796129f04c48f3600f1c44243923ecfc7ef3e5f6547bd9971ea707a814a60332f88e78e08939" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.seleniumhq.selenium/selenium-android-driver@2.35.0?type=jar", "externalReferences": [ { @@ -34385,7 +35199,7 @@ "content": "186f2078bc053e56033a42d5675a0cde0fa3861575f64ad380ba723f8e90c284569b8e9da93f50c97e1eb7e765aaccaec71e321a6b5dae34483891e8ede5f467" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.seleniumhq.selenium/selenium-remote-driver@2.35.0?type=jar", "externalReferences": [ { @@ -34483,15 +35297,21 @@ "content": "e5eb483771aa9968a8fca1b526ddf6aa7baec9d45d3d07b08563c012fe15b2134fa37a9b111725c0483979e1a1fbf9d29f7c7d309c6a033c232ba11e7d3074d3" } ], - "licenses": [{"license": { - "id": "JSON", - "url": "http://www.json.org/license.html" - }}], + "licenses": [ + { + "license": { + "id": "JSON", + "url": "http://www.json.org/license.html" + } + } + ], "purl": "pkg:maven/org.json/json@20080701?type=jar", - "externalReferences": [{ - "type": "website", - "url": "http://json.org/" - }] + "externalReferences": [ + { + "type": "website", + "url": "http://json.org/" + } + ] }, { "type": "library", @@ -34534,7 +35354,7 @@ "content": "9541320dced37b5e97c136063d8235a9bbe4b3558838453f0e98e519e5e02e4f7e92808e179d4d6fb64587003c6bae97e369bba6a70106c3e31cdb5b2c235896" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.seleniumhq.selenium/selenium-htmlunit-driver@2.35.0?type=jar", "externalReferences": [ { @@ -34589,7 +35409,7 @@ "content": "1297e11c223595fb9679b52abf1a32422aa18cda881914d3e6569c106e313c76fafd36354fad461e76eae0a42673d740227e17f0dd0724e00047f30e44a2328c" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/net.sourceforge.htmlunit/htmlunit@2.12?type=jar", "externalReferences": [ { @@ -34656,7 +35476,7 @@ "content": "6d470f5affff6446ab584dc4261e67a7babbfc647e38fec729731544d53ec67b80f973e59604d4250c357b6cbfc821cfab9e0751547bae02d307d90988484d79" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/xalan/xalan@2.7.1?type=jar", "externalReferences": [ { @@ -34715,7 +35535,7 @@ "content": "d105813edfbf83160d06b532c09743f62e4b4eee31ce4e69a11e99f7d2f887a373680d99ebe688295f3f267d89a2ab5c9fdf646c7d9ab9977d4dd2c9401ec923" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/xalan/serializer@2.7.1?type=jar", "externalReferences": [ { @@ -34774,7 +35594,7 @@ "content": "e80564b2b7a9771cffb50d45e06a8ca94aa4d8c992c63a0191f5a2a20d287d9f6cbb14571144b66a62adab0c5763a681a6d1c2b95d4a0a5e84b5ed80565424b6" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/commons-collections/commons-collections@3.2.1?type=jar", "externalReferences": [ { @@ -34841,7 +35661,7 @@ "content": "2dd5b60623f76e9565151e0cc27846086d5f810b3f6323d473cebc1aaf87f529c6a834b94ebc3f09a9c23d3597c892fc08d8bcb9d0a491b8be9a047bacb59be8" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.commons/commons-lang3@3.9?type=jar", "externalReferences": [ { @@ -34912,7 +35732,7 @@ "content": "57bd3caadf856254d06c14aadf85406b3f298e9c3d7787c76a972b6fec7602d81a15bde36c77445acc0c0c520e8e89f3b453fe2f554915b80f731cca457dbd92" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.httpcomponents/httpmime@4.5.11?type=jar", "externalReferences": [ { @@ -34978,15 +35798,21 @@ "content": "1d081d8e98ade500b4c87db156fa36d3f96f2b9b2e42f68f65899f5319e0474d9f85fe2335a5935861cd3f2282394af6840c3f8de6f3f5e72b26402d4de506da" } ], - "licenses": [{"license": { - "id": "MPL-2.0", - "url": "http://www.mozilla.org/MPL/2.0/" - }}], + "licenses": [ + { + "license": { + "id": "MPL-2.0", + "url": "http://www.mozilla.org/MPL/2.0/" + } + } + ], "purl": "pkg:maven/net.sourceforge.htmlunit/htmlunit-core-js@2.12?type=jar", - "externalReferences": [{ - "type": "vcs", - "url": "https://github.com/htmlunit" - }] + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/htmlunit" + } + ] }, { "type": "library", @@ -35029,12 +35855,14 @@ "content": "a52112119bbf831374b7d728b8d1ec84af67fe84eec8955f441fd189ddf4fa406b97f79ac99916d402a67208c3dfbcf09242dafa3423ac07a61332809423506c" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/xerces/xercesImpl@2.10.0?type=jar", - "externalReferences": [{ - "type": "vcs", - "url": "https://svn.apache.org/repos/asf/xerces/java/" - }] + "externalReferences": [ + { + "type": "vcs", + "url": "https://svn.apache.org/repos/asf/xerces/java/" + } + ] }, { "type": "library", @@ -35077,7 +35905,7 @@ "content": "ddd489ddca5e88cbce480f28c9ee0c79eca7612b529c95887f5997a93634293cbbd5e3a1a98db0cdc4ce1ebe545ad661fa2360ec63a92ec9934843a78e10efae" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/net.sourceforge.nekohtml/nekohtml@1.9.18?type=jar", "externalReferences": [ { @@ -35131,10 +35959,14 @@ "content": "c37ccbe3fa6f528f9e57846cfce9f2e4ad027b8a4a55ddce80149fc12086024bdb7c7a55dfdb6c058491dd644dae737783172333be34109aa7a708fd36e479be" } ], - "licenses": [{"license": { - "name": "GNU Lesser General Public License", - "url": "http://www.gnu.org/licenses/lgpl.txt" - }}], + "licenses": [ + { + "license": { + "name": "GNU Lesser General Public License", + "url": "http://www.gnu.org/licenses/lgpl.txt" + } + } + ], "purl": "pkg:maven/net.sourceforge.cssparser/cssparser@0.9.9?type=jar", "externalReferences": [ { @@ -35193,10 +36025,14 @@ "content": "4f6efe3e15d0bea59bc1eaeecbbedadf10fd49e84a57a934e499c1bd0dc421d8a4a25ad99fdbe1faf2242a66e5732d9f3a97f3f534a6fd585c7d59b0db7d5208" } ], - "licenses": [{"license": { - "name": "The W3C Software License", - "url": "http://www.w3.org/Consortium/Legal/copyright-software-19980720" - }}], + "licenses": [ + { + "license": { + "name": "The W3C Software License", + "url": "http://www.w3.org/Consortium/Legal/copyright-software-19980720" + } + } + ], "purl": "pkg:maven/org.w3c.css/sac@1.3?type=jar", "externalReferences": [ { @@ -35252,8 +36088,8 @@ } ], "licenses": [ - {"license": {"id": "Apache-2.0"}}, - {"license": {"id": "EPL-1.0"}} + { "license": { "id": "Apache-2.0" } }, + { "license": { "id": "EPL-1.0" } } ], "purl": "pkg:maven/org.eclipse.jetty/jetty-websocket@8.1.9.v20130131?type=jar", "externalReferences": [ @@ -35322,8 +36158,8 @@ } ], "licenses": [ - {"license": {"id": "Apache-2.0"}}, - {"license": {"id": "EPL-1.0"}} + { "license": { "id": "Apache-2.0" } }, + { "license": { "id": "EPL-1.0" } } ], "purl": "pkg:maven/org.eclipse.jetty/jetty-util@8.1.9.v20130131?type=jar", "externalReferences": [ @@ -35392,8 +36228,8 @@ } ], "licenses": [ - {"license": {"id": "Apache-2.0"}}, - {"license": {"id": "EPL-1.0"}} + { "license": { "id": "Apache-2.0" } }, + { "license": { "id": "EPL-1.0" } } ], "purl": "pkg:maven/org.eclipse.jetty/jetty-io@8.1.9.v20130131?type=jar", "externalReferences": [ @@ -35462,8 +36298,8 @@ } ], "licenses": [ - {"license": {"id": "Apache-2.0"}}, - {"license": {"id": "EPL-1.0"}} + { "license": { "id": "Apache-2.0" } }, + { "license": { "id": "EPL-1.0" } } ], "purl": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.9.v20130131?type=jar", "externalReferences": [ @@ -35530,7 +36366,7 @@ "content": "03d3732350ca26c4832775d7fef943b74033db254eb21e809a72bf02e0df45e71f6c5fba2e5a3b7edb6a1fd6f80b0b44a2ae5f80900e04adc5df8bf3391b62f0" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.seleniumhq.selenium/selenium-firefox-driver@2.35.0?type=jar", "externalReferences": [ { @@ -35585,7 +36421,7 @@ "content": "c7cb78617b5c09058774f7a1209cd11ff35cd911f9427fc48d206b1d5dd507b71af6a310f82b5f7d101b6bd226aa29cbcf1249ddb5727dd81c66f22814f0d380" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.commons/commons-exec@1.1?type=jar", "externalReferences": [ { @@ -35655,7 +36491,7 @@ "content": "a7da8284d6f348404fea5cf5ed6a34500347fc9e888c6fcfd9d019ee3d09bea8909c0085a934b435bdde113e2f602160b08642d16ad3cff9dd17e276ee9964b7" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.seleniumhq.selenium/selenium-ie-driver@2.35.0?type=jar", "externalReferences": [ { @@ -35709,15 +36545,21 @@ "content": "3a3fa2439540a43f99b87c16772191ff54845e8c74c0f189f55ffd22f895ab06c7cf2e7966596ec90b4c7c58e7c33be796327f9d40b8c38d2991b39dd57f16f0" } ], - "licenses": [{"license": { - "name": "LGPL, version 2.1", - "url": "http://creativecommons.org/licenses/LGPL/2.1/" - }}], + "licenses": [ + { + "license": { + "name": "LGPL, version 2.1", + "url": "http://creativecommons.org/licenses/LGPL/2.1/" + } + } + ], "purl": "pkg:maven/net.java.dev.jna/platform@3.4.0?type=jar", - "externalReferences": [{ - "type": "vcs", - "url": "https://github.com/twall/jna" - }] + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/twall/jna" + } + ] }, { "type": "library", @@ -35760,7 +36602,7 @@ "content": "47b7b9d5e6d254d41e93e0d91a5145a62ebef06853571bd947773697ea32230aed3800c323221a17b8878bb15f20e4d008d5e381fbd815708d26c1afec591cff" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.seleniumhq.selenium/selenium-iphone-driver@2.35.0?type=jar", "externalReferences": [ { @@ -35814,7 +36656,7 @@ "content": "ad97a19f82ff14ff9acb43573bca1c5feb5ca57c36f6cf1353ada158ed89e95154f42a6a9549109e54cc03b7af658ec603bfb575d8263f30eb16fbbaaddee887" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.seleniumhq.selenium/selenium-safari-driver@2.35.0?type=jar", "externalReferences": [ { @@ -35868,7 +36710,7 @@ "content": "cf0e7c3e968e13db3080b40db94c15a6e92318a264a5b970caba3ae67f3054535590f3dc95b7b31c35209570597ab45a88e2e3e9ac6b660ba9e029a73caae0a9" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.seleniumhq.selenium/selenium-support@2.35.0?type=jar", "externalReferences": [ { @@ -35922,7 +36764,7 @@ "content": "e39021816505129ec14a7bade6d4b417284472c6d35b4bdecc4bfaf41adc1d70f16b9f1f63337188e82b26b558e09c33b178c81652e09c88b88f3cc7a811272d" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.seleniumhq.selenium/selenium-api@2.35.0?type=jar", "externalReferences": [ { @@ -35976,10 +36818,14 @@ "content": "3b00c6caffa0dc037d9e3b889f776ebd88c6dc3e5b52760c0f4d5548c578953a4d9af4f243885e30678ccd2b923c44d41bc7cc1f43cc114da4c876b119082657" } ], - "licenses": [{"license": { - "name": "BSD License", - "url": "http://www.opensource.org/licenses/bsd-license" - }}], + "licenses": [ + { + "license": { + "name": "BSD License", + "url": "http://www.opensource.org/licenses/bsd-license" + } + } + ], "purl": "pkg:maven/org.webbitserver/webbit@0.4.14?type=jar", "externalReferences": [ { @@ -36034,7 +36880,7 @@ "content": "5fd3923aad834542e6f14b5c31fe9573625f8f7212c3441e8c84f5541d5867dbf530ac66bcefb9a1e13776ddaca18d32899be6471b39877e54022558032d468d" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/io.netty/netty@3.5.2.Final?type=jar", "externalReferences": [ { @@ -36093,7 +36939,7 @@ "content": "4a70605f3c6c54c31db2f9c12311c493b32043c791fa540968800c6d14ca0b66d458f89c40c012c9405f28dd9caf1179ff25ecbce8b86f0d53cbb3af3d9abae9" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.maven/maven-plugin-api@3.3.9?type=jar", "externalReferences": [ { @@ -36164,7 +37010,7 @@ "content": "4dddd72cbdf424572ffb38582f04b92e31cbad26639b980dacaec56d7dcd5d1ad7b2669843c0fdb4ab53dbef6f0b6bb7e54dd504cea3aa19f33920d0963b7d22" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.maven/maven-model@3.3.9?type=jar", "externalReferences": [ { @@ -36235,7 +37081,7 @@ "content": "83ae90ef76842b37a917e3f2d8fc0f958e2fda726b5ce6bca77e343ee5c1d4c6d358178e6547c6006f82237a3abc5d4a916cddbd7eb9fb26f3149c83ba927670" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.maven/maven-artifact@3.3.9?type=jar", "externalReferences": [ { @@ -36306,7 +37152,7 @@ "content": "c91fd6c6b1407bb86561e8ad9e362d8a88993acde0806bfbb1767e24a1341b65217fbe6d110c3130da8527928e0d93d456938267acf4608d394c7bd0eea34fc4" } ], - "licenses": [{"license": {"id": "EPL-1.0"}}], + "licenses": [{ "license": { "id": "EPL-1.0" } }], "purl": "pkg:maven/org.eclipse.sisu/org.eclipse.sisu.plexus@0.3.2?type=jar", "externalReferences": [ { @@ -36377,7 +37223,7 @@ "content": "27fc4a60df1a65feb497c9296d2ecd7ff9a93b28b6ec7cefd25dfe1b96735cbbeb2d7824f71903dc6ea273357ff24462a6420bdef0b82bf1e75bbc117d92032b" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/javax.enterprise/cdi-api@1.0?type=jar", "externalReferences": [ { @@ -36443,15 +37289,21 @@ "content": "d7edd7a76d88d466b310d71fdc10d7b289838391408f8b704620b6683b65e436c0fa411d8dd356b0792e29e2fef8fbb8a6658bb97e7046e1277404a3395a9a53" } ], - "licenses": [{"license": { - "name": "COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0", - "url": "https://glassfish.dev.java.net/public/CDDLv1.0.html" - }}], + "licenses": [ + { + "license": { + "name": "COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0", + "url": "https://glassfish.dev.java.net/public/CDDLv1.0.html" + } + } + ], "purl": "pkg:maven/javax.annotation/jsr250-api@1.0?type=jar", - "externalReferences": [{ - "type": "distribution", - "url": "http://jcp.org/aboutJava/communityprocess/final/jsr250/index.html" - }] + "externalReferences": [ + { + "type": "distribution", + "url": "http://jcp.org/aboutJava/communityprocess/final/jsr250/index.html" + } + ] }, { "type": "library", @@ -36495,7 +37347,7 @@ "content": "da43d88cc85e3a11defe0a4493249adb0799db850c83c1436a7ca33a3b87de7265f01cc8c457eebe0826e36fe0a2b8296d4da176561dc3cb07c4b386f1cfcc5c" } ], - "licenses": [{"license": {"id": "EPL-1.0"}}], + "licenses": [{ "license": { "id": "EPL-1.0" } }], "purl": "pkg:maven/org.eclipse.sisu/org.eclipse.sisu.inject@0.3.2?type=jar", "externalReferences": [ { @@ -36566,7 +37418,7 @@ "content": "983ec9130863633e5e2e107f5c596e0354e0bf2c20c3697175be94c2d32269bd344f11782a8868dad5076846c3a5015569f2fd43f3edd0f2f6655dc8a8306d71" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.maven.plugin-tools/maven-plugin-annotations@3.4?type=jar", "externalReferences": [ { @@ -36637,7 +37489,7 @@ "content": "f08e8611f91385c79ba26a6038275bd1b2e3bc248e23b8b3e07c0fcca0b21ead4349873a10ff20cad139816541fde6a176830dc627292d2b272cdd651e1126a2" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.maven/maven-core@3.3.9?type=jar", "externalReferences": [ { @@ -36708,7 +37560,7 @@ "content": "cc995fdc969fa0254cfba799107fa9d8aac54753c311b957152b61e614d300959d1148512412853cb5348734ddc09b74eca883a76b0e14441dd6c3e048efaaf6" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.maven/maven-settings@3.3.9?type=jar", "externalReferences": [ { @@ -36779,7 +37631,7 @@ "content": "2c5c31d0698ac2211e388c1e8d178edbb07058e67f83f6eba1be5f6d0addd51dea8b06ebb28d613095416050d69785ab51e229294252aa69d34e2a0f546377bb" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.maven/maven-settings-builder@3.3.9?type=jar", "externalReferences": [ { @@ -36850,7 +37702,7 @@ "content": "d9d89cf205a7542e74d7b524e813bb0e0bea4356d2a62ed4ad03a37490333eb413d0bce1ef76bf0bbe7fb3c5f56eded93c4b8da1f7d0d1ff25ebfba56e004684" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.maven/maven-builder-support@3.3.9?type=jar", "externalReferences": [ { @@ -36921,7 +37773,7 @@ "content": "70323ae2a339cee4dda47f801b894a5226aa09103c0d602c9c3a9e8fd16898488c0c9291130d8affda8bfdc5835b6eb06a1ca925402de674ce07b71bbc40c3b0" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.maven/maven-repository-metadata@3.3.9?type=jar", "externalReferences": [ { @@ -36992,7 +37844,7 @@ "content": "c482be838b0afa699fed79d7905edbc75bb23e3459330486349a33d3ab78ce1601f7460813cdce3e8498d7f0712ca0b1a13861d702cec3c2b3409aaf9fda7afa" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.maven/maven-model-builder@3.3.9?type=jar", "externalReferences": [ { @@ -37063,7 +37915,7 @@ "content": "68b0db21902b24ae4fee9e0612cc03ed2007a4da0b6a7b93ee2628873e3f370a45ad18a3ba3cb93f3978a4a3737ba1da04b66c646173bfd237b5b0540b267b66" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.maven/maven-aether-provider@3.3.9?type=jar", "externalReferences": [ { @@ -37134,7 +37986,7 @@ "content": "7a2ed5a08ed1c266bb26b807ac3cd5a002d8417f2c9576763a4fd82b0404724c10e0f539f58ff4cfe1aab4ca5ada07bb978a0e6abbe42508cd2cb1cc728e81dd" } ], - "licenses": [{"license": {"id": "EPL-1.0"}}], + "licenses": [{ "license": { "id": "EPL-1.0" } }], "purl": "pkg:maven/org.eclipse.aether/aether-spi@1.0.2.v20150114?type=jar", "externalReferences": [ { @@ -37205,7 +38057,7 @@ "content": "6c18f8413092431f77db5aba75ebd37f632919475192860f1014a28b7eb0804b8937b81ff8a5cd230bac5f8cbda27d232ebd1669d6bee5824010a7ee420447d8" } ], - "licenses": [{"license": {"id": "EPL-1.0"}}], + "licenses": [{ "license": { "id": "EPL-1.0" } }], "purl": "pkg:maven/org.eclipse.aether/aether-impl@1.0.2.v20150114?type=jar", "externalReferences": [ { @@ -37276,7 +38128,7 @@ "content": "f03d4426a6fe31035b0c11f540e6f66956016970d3ca74b72bf2a520082f42d8105741fc469ea752ecc699fc3f4f6218ae4218e2006e176a5cb0ccf01afd432b" } ], - "licenses": [{"license": {"id": "EPL-1.0"}}], + "licenses": [{ "license": { "id": "EPL-1.0" } }], "purl": "pkg:maven/org.eclipse.aether/aether-api@1.0.2.v20150114?type=jar", "externalReferences": [ { @@ -37347,7 +38199,7 @@ "content": "3db48aca805360f1d71ddd8ad0db18dd0512833c13cd5bdafc07e28d9b8d41da5a130dbdf643b3c1ac67655c3a7c89881043ba6df9a091dc7a0a339b5966f492" } ], - "licenses": [{"license": {"id": "EPL-1.0"}}], + "licenses": [{ "license": { "id": "EPL-1.0" } }], "purl": "pkg:maven/org.eclipse.aether/aether-util@1.0.2.v20150114?type=jar", "externalReferences": [ { @@ -37459,12 +38311,14 @@ "content": "fb290f5a70b1efc1dff12f40a0b2d7b94019f66da42e78010c0b8e61f222c4f267b67e356a9e9c346eb801e5515e36243888f280c5cb95c2dd69016a30cadeb9" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/javax.inject/javax.inject@1?type=jar", - "externalReferences": [{ - "type": "vcs", - "url": "http://code.google.com/p/atinject/source/checkout" - }] + "externalReferences": [ + { + "type": "vcs", + "url": "http://code.google.com/p/atinject/source/checkout" + } + ] }, { "type": "library", @@ -37508,7 +38362,7 @@ "content": "7784d80c733fce282ac416c21fc883894679a48a63f5afa50dadd6ff554babc80188fc13eec959e0adcc4e49711c06b338aa5b8f5df80f2abb36394923e32088" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.codehaus.plexus/plexus-interpolation@1.21?type=jar", "externalReferences": [ { @@ -37579,7 +38433,7 @@ "content": "a79120c778747fd54c04b3c4730fb309c51179d639e6c9a12aee233758b756362c4c161ff03504b3bbb3a4c5efbd926769d9e3e284dd4f6343d0b99c97203c56" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.codehaus.plexus/plexus-utils@3.0.22?type=jar", "externalReferences": [ { @@ -37650,7 +38504,7 @@ "content": "0da78c61970ad7c2f351727d89361270458559a7448083c5f369547a19cc7a9afc4f3b939e829e87bef06406cd0d4cb57a5b6749d4692d71da37dd4bd090fe41" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.codehaus.plexus/plexus-classworlds@2.5.2?type=jar", "externalReferences": [ { @@ -37721,7 +38575,7 @@ "content": "2fe01b5f08fba30c5e67b3d335cffaa3f944f0ce48b58577a444a62bd90f5a349c8be0baa079df8e1265242f6560f294cdcb2a9572dbbc6e2cb02a20482264d4" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.codehaus.plexus/plexus-component-annotations@1.6?type=jar", "externalReferences": [ { @@ -37790,7 +38644,7 @@ "content": "323c863614c94d12508265454a5c598358a0b5b2fb18400d1ab457cf3a161c7e31079ada7ab8ed5d1b28d1e4dee9ab8f82cfb84ad40b42d69e330562d1a69da7" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.sonatype.plexus/plexus-sec-dispatcher@1.3?type=jar", "externalReferences": [ { @@ -37847,7 +38701,7 @@ "content": "1a8b406ab9d63cb3af63e56a09bbde88e404041a1b70c68487c1c0009c24d042cea9ee2325ad99c0aee845ec61ff17a69ae14843f08de2f5af90cd5bb617e34c" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.sonatype.plexus/plexus-cipher@1.4?type=jar", "externalReferences": [ { @@ -37906,7 +38760,7 @@ "content": "2b30d9cb9b9ec6155224bd5731667b229dcaa35c333510e4f39f1d221a319389468814331ac911c5d9fc3692aac6723557f43073e87854db42fbcd0302373a93" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/javax.enterprise/cdi-api@1.0-SP4?type=jar", "externalReferences": [ { @@ -37969,10 +38823,14 @@ "content": "3829ea06a24983794769144a6af40e98f34cd7d16690e48cf0b7c53a89151bc6c7cb6f1b3ef582e670aca663e3bbc30e1a9c48239f77c4b7c516c5a1b76c3ded" } ], - "licenses": [{"license": { - "name": "lgpl", - "url": "http://repository.jboss.org/licenses/lgpl-2.1.txt" - }}], + "licenses": [ + { + "license": { + "name": "lgpl", + "url": "http://repository.jboss.org/licenses/lgpl-2.1.txt" + } + } + ], "purl": "pkg:maven/org.jboss.spec.javax.interceptor/jboss-interceptors-api_1.1_spec@1.0.0.Beta1?type=jar", "externalReferences": [ { @@ -38031,10 +38889,14 @@ "content": "9e8f7057647c11564178e4569cf4f5682d3688b49d81acc60fd301f61053932ee9ac109c19cb639f7710d23afc76cb106ebde0f8143e2fe5fa08605201720a8b" } ], - "licenses": [{"license": { - "id": "EPL-1.0", - "url": "http://www.eclipse.org/legal/epl-v10.html" - }}], + "licenses": [ + { + "license": { + "id": "EPL-1.0", + "url": "http://www.eclipse.org/legal/epl-v10.html" + } + } + ], "purl": "pkg:maven/junit/junit@4.12?type=jar", "externalReferences": [ { @@ -38105,7 +38967,7 @@ "content": "8cd8e0e4456d5823731282337cc2daa44e587e645d7dcd622e45334f6e5c23de23e3aca800691de838b4ca641678c307569807738e95d2b45151ef52cf4d1680" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.cxf/cxf-rt-frontend-jaxrs@3.3.6?type=jar", "externalReferences": [ { @@ -38177,8 +39039,8 @@ } ], "licenses": [ - {"license": {"id": "EPL-2.0"}}, - {"license": {"id": "GPL-2.0-with-classpath-exception"}} + { "license": { "id": "EPL-2.0" } }, + { "license": { "id": "GPL-2.0-with-classpath-exception" } } ], "purl": "pkg:maven/jakarta.ws.rs/jakarta.ws.rs-api@2.1.5?type=jar", "externalReferences": [ @@ -38242,7 +39104,7 @@ "content": "2e5a10934999a3ef2ce8a0904b697da84458f15739d164da90f29695325f2545e36799d21fd9756f7aecdca1f4831a6451bda48cf092c3f2057969c324060d4e" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.cxf/cxf-rt-security@3.3.6?type=jar", "externalReferences": [ { @@ -38313,7 +39175,7 @@ "content": "3328a015262fb7ebf0979a0b1db4dbf1b4ac9292c6679f9b5fa5dc086590b8cba06c900b04cbbb0a789705e323335770131478302ed822ac6e8ca2dda0531378" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.cxf/cxf-rt-transports-http-jetty@3.3.6?type=jar", "externalReferences": [ { @@ -38385,8 +39247,8 @@ } ], "licenses": [ - {"license": {"id": "Apache-2.0"}}, - {"license": {"id": "EPL-1.0"}} + { "license": { "id": "Apache-2.0" } }, + { "license": { "id": "EPL-1.0" } } ], "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.4.27.v20200227?type=jar", "externalReferences": [ @@ -38455,8 +39317,8 @@ } ], "licenses": [ - {"license": {"id": "Apache-2.0"}}, - {"license": {"id": "EPL-1.0"}} + { "license": { "id": "Apache-2.0" } }, + { "license": { "id": "EPL-1.0" } } ], "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.27.v20200227?type=jar", "externalReferences": [ @@ -38525,8 +39387,8 @@ } ], "licenses": [ - {"license": {"id": "Apache-2.0"}}, - {"license": {"id": "EPL-1.0"}} + { "license": { "id": "Apache-2.0" } }, + { "license": { "id": "EPL-1.0" } } ], "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.27.v20200227?type=jar", "externalReferences": [ @@ -38595,8 +39457,8 @@ } ], "licenses": [ - {"license": {"id": "Apache-2.0"}}, - {"license": {"id": "EPL-1.0"}} + { "license": { "id": "Apache-2.0" } }, + { "license": { "id": "EPL-1.0" } } ], "purl": "pkg:maven/org.eclipse.jetty/jetty-security@9.4.27.v20200227?type=jar", "externalReferences": [ @@ -38665,8 +39527,8 @@ } ], "licenses": [ - {"license": {"id": "Apache-2.0"}}, - {"license": {"id": "EPL-1.0"}} + { "license": { "id": "Apache-2.0" } }, + { "license": { "id": "EPL-1.0" } } ], "purl": "pkg:maven/org.eclipse.jetty/jetty-continuation@9.4.27.v20200227?type=jar", "externalReferences": [ @@ -38735,8 +39597,8 @@ } ], "licenses": [ - {"license": {"id": "Apache-2.0"}}, - {"license": {"id": "EPL-1.0"}} + { "license": { "id": "Apache-2.0" } }, + { "license": { "id": "EPL-1.0" } } ], "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.27.v20200227?type=jar", "externalReferences": [ @@ -38804,7 +39666,7 @@ "content": "b60a0db090d4dd896e34d0a41ad39a5a97e32f11a71a61fe10d7c42ebfeaad22d32e9f5b7447829bff8a791e5e6586c999ce5d3fd010ec240904655d3fca72d9" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.geronimo.specs/geronimo-ws-metadata_2.0_spec@1.1.2?type=jar", "externalReferences": [ { @@ -38867,7 +39729,7 @@ "content": "0355e2f742f7cea8fa0bbaedeaf1bb83715e6b170252e25950dd7ae10b97c95b52287230bb19450cf80b88d8cf25a99541b90376e655d58d15876832f8144a66" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.geronimo.specs/geronimo-jaxws_2.2_spec@1.0?type=jar", "externalReferences": [ { @@ -38977,14 +39839,18 @@ } ], "licenses": [ - {"license": { - "name": "GNU General Public Library", - "url": "http://www.gnu.org/licenses/gpl.txt" - }}, - {"license": { - "name": "COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0", - "url": "http://www.sun.com/cddl/cddl.html" - }} + { + "license": { + "name": "GNU General Public Library", + "url": "http://www.gnu.org/licenses/gpl.txt" + } + }, + { + "license": { + "name": "COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0", + "url": "http://www.sun.com/cddl/cddl.html" + } + } ], "purl": "pkg:maven/javax.xml.stream/stax-api@1.0-2?type=jar" }, @@ -39030,7 +39896,7 @@ "content": "e3c59a653a8d1e13007fa60abb35a978387304b838f55249b5df1851e5c659c0e8a6b7bad0bda443f3232850c27256f410afdbb4b583d4f3380779d39536130f" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.cxf/cxf-rt-frontend-jaxws@3.3.6?type=jar", "externalReferences": [ { @@ -39101,7 +39967,7 @@ "content": "762f05d93e4f9cc95a969f8fecad13f97064897c83f4e057e84fe054601275912b68be76bb50da7e8d90b30846712b77341eb26a6405c59c07b06e223e9b027c" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/xml-resolver/xml-resolver@1.2?type=jar", "externalReferences": [ { @@ -39164,10 +40030,14 @@ "content": "9df72eca1487a2dd7581df7a1625b61983396c1faac93ffd3b150dba6798341a1e9aeea374161ef019b4dd55b9968b42ce5d396392f8aa91cebd4da4365c9cb6" } ], - "licenses": [{"license": { - "name": "BSD", - "url": "http://asm.ow2.org/license.html" - }}], + "licenses": [ + { + "license": { + "name": "BSD", + "url": "http://asm.ow2.org/license.html" + } + } + ], "purl": "pkg:maven/org.ow2.asm/asm@7.1?type=jar", "externalReferences": [ { @@ -39230,7 +40100,7 @@ "content": "7a63e2e9263b9e4a4fa9160d4542a4784c315c8fc21c821a686470af69cff7df5ab4e5a4515d0b695c0a5888e048278815251afb401666f987f8e3d634263b13" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.cxf/cxf-rt-bindings-soap@3.3.6?type=jar", "externalReferences": [ { @@ -39301,7 +40171,7 @@ "content": "ed69cbb43d90178b22c7af204695c4f03a75bff8362279f7077c7d46d85d875ea7ed37696dc026db3ce58f30af288b5bb03ed2a0bfcf5ca781c9f3aa3aa3db5b" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.cxf/cxf-rt-wsdl@3.3.6?type=jar", "externalReferences": [ { @@ -39371,15 +40241,21 @@ "content": "915711a72ea5b1773e3336afcaed273d65283e5e93ddf35a12b8473951cfd3e1454bf782945c7da5399922dda46277054185b182136f2dbc356d43adb8afec8c" } ], - "licenses": [{"license": { - "name": "CPL", - "url": "http://www.opensource.org/licenses/cpl1.0.txt" - }}], + "licenses": [ + { + "license": { + "name": "CPL", + "url": "http://www.opensource.org/licenses/cpl1.0.txt" + } + } + ], "purl": "pkg:maven/wsdl4j/wsdl4j@1.6.3?type=jar", - "externalReferences": [{ - "type": "vcs", - "url": "http://wsdl4j.cvs.sourceforge.net/wsdl4j" - }] + "externalReferences": [ + { + "type": "vcs", + "url": "http://wsdl4j.cvs.sourceforge.net/wsdl4j" + } + ] }, { "type": "library", @@ -39423,7 +40299,7 @@ "content": "db1d138c9d2d0531eb7f0593aeb29d8e9a2d6c105b68551788e30888dc261cd583b27336343517a2224f5f31ca623a2b2bfc64332a1b8a65d9618a86f77ec2df" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.cxf/cxf-rt-databinding-jaxb@3.3.6?type=jar", "externalReferences": [ { @@ -39494,7 +40370,7 @@ "content": "74342613c0cfbb5d8cc6d209a5a5978dfe4d62cad48293f1ef9bef1f09de93e457f92b8789c6eef51af987b616b5fa55da7a9e4c6b02a25e7951196e1fcf9bb7" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.cxf/cxf-rt-bindings-xml@3.3.6?type=jar", "externalReferences": [ { @@ -39565,7 +40441,7 @@ "content": "a73ac5b20deaff106a69e11b06448ab63470e17a33497df1f349638adc8496e854311b132868b8aedb812be6ddb983e4d95f11b4087ca2fb33a55eaf920037ed" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.cxf/cxf-rt-frontend-simple@3.3.6?type=jar", "externalReferences": [ { @@ -39636,7 +40512,7 @@ "content": "22d170e3ff06ad0b8a5ff140472fc8ff392c9aedfcffccf98077971d40d21bb44fb9f5450aa7a4e42ee2eb6fd1fd30682d422d9c8e47b8ad011e57539e331d74" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.cxf/cxf-rt-ws-addr@3.3.6?type=jar", "externalReferences": [ { @@ -39707,7 +40583,7 @@ "content": "03b5f730e8fec7b0cc9af33d8adf1946864da72b4c2c1d9d9a83284b693da41bc1342a92f753fe06415bac04aabfa8d8bc81c5b327ff5b4fb592dc79518b4158" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.cxf/cxf-rt-ws-policy@3.3.6?type=jar", "externalReferences": [ { @@ -39778,7 +40654,7 @@ "content": "4cb4d1c1e03196586fc95ac9cabb1f47742bc67dd6a23232335f496fd587ca556e6ee11d099647f60cdcad30e6b6fb0b14b85f1a7a4250a507cca0a33bb366ca" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.neethi/neethi@3.1.1?type=jar", "externalReferences": [ { @@ -39845,7 +40721,7 @@ "content": "ef32f79bf08a0d38d656acb29db0b9bcc93d7bde5f77f8b1f8566469431ed2239b1e4c11776326a6bd56edb17bd18702c879e4161c66561815ab6eb1db801276" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.keycloak.testsuite/fuse-example-cxf-jaxws@10.0.2?type=jar", "externalReferences": [ { @@ -39912,7 +40788,7 @@ "content": "507bfe73e059d9dce74d30632e9a7508a3e825e69bc639a2dcaff02701e7fa6ce41beeed263c79eaed602eedd8be2304e53cf1103dc198f28066b5f82da4af9e" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.keycloak.testsuite/fuse-example-cxf-jaxws-fuse7-undertow@10.0.2?type=jar", "externalReferences": [ { @@ -39979,7 +40855,7 @@ "content": "8230820b7fb7b166d42990198355259b2766e25055500701b6a5d7904ddb14143021907523c054079a2150ff04d89ccd44b4c5ad14e17c67c65e10077819bdb6" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.camel/camel-blueprint@2.21.2?type=jar", "externalReferences": [ { @@ -40046,7 +40922,7 @@ "content": "8e78759b6aa501c70bfee0a4ee7ad8d007fad277635098ebb18ecec5952ca68b64017f68de9820976ee50b8568151936ea5f5c08aea969e208f548fe43c19941" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.camel/camel-core-xml@2.21.2?type=jar", "externalReferences": [ { @@ -40113,7 +40989,7 @@ "content": "eb7ca975ab9f0cea81bf85e7418ed5460df6a2c0882375fc52e91afdc07444172862c52ebcbfcde3e5ffbd19f9f7f3d71112eeb46b0dfb128e76be2f497a099c" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.camel/camel-core-osgi@2.21.2?type=jar", "externalReferences": [ { @@ -40180,7 +41056,7 @@ "content": "26c667b190baf13ff6edee5ebd9f1b9f13823ae1edb16b7000342b79bb24be080d48ec8c7f227cc5e8c9c9f3642b341d560d38b88c9aa14ecea194457284d034" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.camel/camel-jetty9@2.21.2?type=jar", "externalReferences": [ { @@ -40248,8 +41124,8 @@ } ], "licenses": [ - {"license": {"id": "Apache-2.0"}}, - {"license": {"id": "EPL-1.0"}} + { "license": { "id": "Apache-2.0" } }, + { "license": { "id": "EPL-1.0" } } ], "purl": "pkg:maven/org.eclipse.jetty/jetty-server@9.4.6.v20170531?type=jar", "externalReferences": [ @@ -40318,8 +41194,8 @@ } ], "licenses": [ - {"license": {"id": "Apache-2.0"}}, - {"license": {"id": "EPL-1.0"}} + { "license": { "id": "Apache-2.0" } }, + { "license": { "id": "EPL-1.0" } } ], "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.6.v20170531?type=jar", "externalReferences": [ @@ -40388,8 +41264,8 @@ } ], "licenses": [ - {"license": {"id": "Apache-2.0"}}, - {"license": {"id": "EPL-1.0"}} + { "license": { "id": "Apache-2.0" } }, + { "license": { "id": "EPL-1.0" } } ], "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.6.v20170531?type=jar", "externalReferences": [ @@ -40458,8 +41334,8 @@ } ], "licenses": [ - {"license": {"id": "Apache-2.0"}}, - {"license": {"id": "EPL-1.0"}} + { "license": { "id": "Apache-2.0" } }, + { "license": { "id": "EPL-1.0" } } ], "purl": "pkg:maven/org.eclipse.jetty/jetty-servlet@9.4.6.v20170531?type=jar", "externalReferences": [ @@ -40528,8 +41404,8 @@ } ], "licenses": [ - {"license": {"id": "Apache-2.0"}}, - {"license": {"id": "EPL-1.0"}} + { "license": { "id": "Apache-2.0" } }, + { "license": { "id": "EPL-1.0" } } ], "purl": "pkg:maven/org.eclipse.jetty/jetty-security@9.4.6.v20170531?type=jar", "externalReferences": [ @@ -40598,8 +41474,8 @@ } ], "licenses": [ - {"license": {"id": "Apache-2.0"}}, - {"license": {"id": "EPL-1.0"}} + { "license": { "id": "Apache-2.0" } }, + { "license": { "id": "EPL-1.0" } } ], "purl": "pkg:maven/org.eclipse.jetty/jetty-servlets@9.4.6.v20170531?type=jar", "externalReferences": [ @@ -40668,8 +41544,8 @@ } ], "licenses": [ - {"license": {"id": "Apache-2.0"}}, - {"license": {"id": "EPL-1.0"}} + { "license": { "id": "Apache-2.0" } }, + { "license": { "id": "EPL-1.0" } } ], "purl": "pkg:maven/org.eclipse.jetty/jetty-continuation@9.4.6.v20170531?type=jar", "externalReferences": [ @@ -40738,8 +41614,8 @@ } ], "licenses": [ - {"license": {"id": "Apache-2.0"}}, - {"license": {"id": "EPL-1.0"}} + { "license": { "id": "Apache-2.0" } }, + { "license": { "id": "EPL-1.0" } } ], "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.4.6.v20170531?type=jar", "externalReferences": [ @@ -40808,8 +41684,8 @@ } ], "licenses": [ - {"license": {"id": "Apache-2.0"}}, - {"license": {"id": "EPL-1.0"}} + { "license": { "id": "Apache-2.0" } }, + { "license": { "id": "EPL-1.0" } } ], "purl": "pkg:maven/org.eclipse.jetty/jetty-jmx@9.4.6.v20170531?type=jar", "externalReferences": [ @@ -40878,8 +41754,8 @@ } ], "licenses": [ - {"license": {"id": "Apache-2.0"}}, - {"license": {"id": "EPL-1.0"}} + { "license": { "id": "Apache-2.0" } }, + { "license": { "id": "EPL-1.0" } } ], "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.6.v20170531?type=jar", "externalReferences": [ @@ -40947,7 +41823,7 @@ "content": "de4c6b93369b5878e9ca4902fd8fdd67e5e1d2f3068b52cc7d69acfaa8bd9bfa9e5df4d875868fa19003a90967c19d8abdb0f3da67abb48145bef17cba8eddd2" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.camel/camel-jetty-common@2.21.2?type=jar", "externalReferences": [ { @@ -41014,7 +41890,7 @@ "content": "137f2270593a1b53b293400f22249896f01ccb61ddea24cb85a584b2fcbf3347a40d7dc64080c8d85b7f3183b252e30e386652a20cd7138e5efe3a7277acd564" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework.boot/spring-boot-starter-thymeleaf@1.5.20.RELEASE?type=jar", "externalReferences": [ { @@ -41077,7 +41953,7 @@ "content": "224bc08cf19eeb69ebb52dc8cc4fc295063aec81d0c2abfa4cac0e01d0a00180c37122101e3b3767eb82b0c2ccb0ecef82c2c0c3c63b80d8f7e364dcc6a97174" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework.boot/spring-boot-starter@1.5.20.RELEASE?type=jar", "externalReferences": [ { @@ -41140,7 +42016,7 @@ "content": "71f56818662b418caaa4ff5ccb400c856e1f3d038a1b2a3a12ef20812980b6bbc015f17916c645ec487b46f3b101e31c5fa67a7fbe9e2464f2884fe4cf0cc96a" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework.boot/spring-boot@1.5.20.RELEASE?type=jar", "externalReferences": [ { @@ -41203,7 +42079,7 @@ "content": "fc14f9f53ce20d248f6b70b50541b572a8bd49b4783c881fad756e98779877cbef87c0d2c038b2ca18addf1aa5e458f9801fbf608dc743e1a30fee16ecc4fc61" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework.boot/spring-boot-autoconfigure@1.5.20.RELEASE?type=jar", "externalReferences": [ { @@ -41266,7 +42142,7 @@ "content": "0d3c89412b43648a59a416f7402240cc40aa651b8e4a1af9873b8664b00079370ce3fbe70d62e4dd4519ca5e886c3162341103674e0e01890e21ce029744c3a1" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework.boot/spring-boot-starter-logging@1.5.20.RELEASE?type=jar", "externalReferences": [ { @@ -41329,10 +42205,14 @@ "content": "bfb810653f89ac499283aa7d860f89369133a07b65398a4112a6f654d53cce6d4a74d2f45acd9ba669233604c94bd338247751171bb8f21d62a183bbe91ba90d" } ], - "licenses": [{"license": { - "id": "MIT", - "url": "https://opensource.org/licenses/MIT" - }}], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], "purl": "pkg:maven/org.slf4j/jcl-over-slf4j@1.7.26?type=jar", "externalReferences": [ { @@ -41391,10 +42271,14 @@ "content": "2bf9adba76cbd0541b1462e952cce50baedb6feac8d963f59db8374a895469d340f5787defeffefb48162a0171f54dbfe1d173de7ec08b080c01260611dd7e25" } ], - "licenses": [{"license": { - "id": "MIT", - "url": "https://opensource.org/licenses/MIT" - }}], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], "purl": "pkg:maven/org.slf4j/jul-to-slf4j@1.7.26?type=jar", "externalReferences": [ { @@ -41453,10 +42337,14 @@ "content": "349b75322aaf3d4fa035ed2c98c3f289ea6c2bef2bc6756b018df99536d99ceaa17b9192ce5bdde1a213ec75ecc60d11629189a5774b166e671a709e7f2df708" } ], - "licenses": [{"license": { - "name": "Apache Software Licenses", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" - }}], + "licenses": [ + { + "license": { + "name": "Apache Software Licenses", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + } + ], "purl": "pkg:maven/org.slf4j/log4j-over-slf4j@1.7.26?type=jar", "externalReferences": [ { @@ -41515,7 +42403,7 @@ "content": "e5ef8079dc3d52f2bf9aad97bbaec17a3d71dd63cf0e61419c7da91ec7ca9e5ef6b30dcebb99af4f381bad1bdecb9f1270a818b2e0594459592faf1a3efde126" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.thymeleaf/thymeleaf-spring4@2.1.6.RELEASE?type=jar", "externalReferences": [ { @@ -41570,7 +42458,7 @@ "content": "c4d027c54714b83877cea27b5152614376c0d19f90fbc90a6b02ec680bfdc3fc1336453c6995b1d8e46522b34a67984de8741f4d68c2fd650f0f6a4c5e711bcf" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.thymeleaf/thymeleaf@2.1.6.RELEASE?type=jar", "externalReferences": [ { @@ -41625,7 +42513,7 @@ "content": "a9086bf91726d59ffc6acb012ffb355e7183e4ae62c59b80b4fee118442d520a327d9d19028e3e6cdcef489896af5273ef2d8a75e483de6f9a4fe3c78ed2dda2" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/ognl/ognl@3.0.8?type=jar", "externalReferences": [ { @@ -41689,12 +42577,14 @@ } ], "licenses": [ - {"license": {"id": "MPL-1.1"}}, - {"license": {"id": "LGPL-2.1-only"}}, - {"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }} + { "license": { "id": "MPL-1.1" } }, + { "license": { "id": "LGPL-2.1-only" } }, + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } ], "purl": "pkg:maven/org.javassist/javassist@3.21.0-GA?type=jar", "externalReferences": [ @@ -41750,7 +42640,7 @@ "content": "ef2bab87dc1ab51c71cefb4bd687f576dcae1db199b6c0fd5b14376b9a78a63dad0ceb8471a38610e2ad8d42d89974e5b92318d6f4209ffffc06ad96967797ff" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.unbescape/unbescape@1.1.0.RELEASE?type=jar", "externalReferences": [ { @@ -41804,12 +42694,14 @@ "content": "b976c4831f0a56701da4a9283392333c0c5f81e4f09da0b6e715fdef75aebd355f34e453c140df12e2e1868dcea30bfa39b4847336247e7e2c9e73a81c29f934" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/nz.net.ultraq.thymeleaf/thymeleaf-layout-dialect@1.4.0?type=jar", - "externalReferences": [{ - "type": "vcs", - "url": "https://github.com/ultraq/thymeleaf-layout-dialect" - }] + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/ultraq/thymeleaf-layout-dialect" + } + ] }, { "type": "library", @@ -41853,7 +42745,7 @@ "content": "3a72030448ab0bb79c2cc4adc34a6a574cfe3e6148885cd80591b1172ab5376b649710cc9c56e79384ba62d7bb30cfabbbc86ea284c9ad1f307605386b668616" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.codehaus.groovy/groovy@2.4.16?type=jar", "externalReferences": [ { @@ -41916,7 +42808,7 @@ "content": "6177ea03e08e4e7c5a1c73c0b40be91a7d2dd4d8f935563911b722bb9334ceeed699be8abc201cec895d60974951617851a1139df9fcb668d2dfa46372decaad" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework/spring-core@4.3.23.RELEASE?type=jar", "externalReferences": [ { @@ -41975,7 +42867,7 @@ "content": "e22093540d6a0f7667e32fe7a181351257cd1ec7a2f1af0ea5d164bcdc90d72b26df30872e037cb57d628466010a6c4f1fe5170551f4fd3f1848c4be838d82dd" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework.boot/spring-boot-starter-web@1.5.20.RELEASE?type=jar", "externalReferences": [ { @@ -42038,7 +42930,7 @@ "content": "2842b6f1b773dd8ea956f6933ffd9a634c11bc94977311548e20579c3589d61ebbf08eb45cb4dbe3468090f8741bcfe60c9f44efe3d936de8a54cfe51c61ea95" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework.boot/spring-boot-starter-tomcat@1.5.20.RELEASE?type=jar", "externalReferences": [ { @@ -42100,7 +42992,7 @@ "content": "a87e4621dd1b4ed52cbffcdabe458b394cc0a131d06f5cddb437121b2a3e8eb6a4dc56a765dff3685b05a50cd4ede06e070101fdf9946f0739351dde5262e53d" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.tomcat.embed/tomcat-embed-core@8.5.39?type=jar" }, { @@ -42144,7 +43036,7 @@ "content": "d4c1e39d5798f8d6e37e0f1ee233db4bf372d59af624228efc92e6eb9f95e02635ae448b170a32bebc9b0d75a85a25202d89adee7a48dfc4199e126ffe06299c" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.tomcat/tomcat-annotations-api@8.5.39?type=jar" }, { @@ -42188,7 +43080,7 @@ "content": "b3c358969ee7b681cc8291c4e9b66ac20d37e8cab3f3f8a9ec13e00c9917e2e462464b0cb66e8279b690ce51bde92ad7b66033c4407b2619859dd58c0946e69d" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.tomcat.embed/tomcat-embed-el@8.5.39?type=jar" }, { @@ -42232,7 +43124,7 @@ "content": "e4bc16464f36c1875621e947d50e7ad163a0017de212725b947ff1bd3060f7414d416edadb461132effc3f565bccfa04f0c0e0bc66e4e09260ed0c494974093b" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.tomcat.embed/tomcat-embed-websocket@8.5.39?type=jar" }, { @@ -42277,7 +43169,7 @@ "content": "6c97420cdf48ecacd6d60ab2a29df694ca92043b4aa87f281f82df79a3e60a3f5b367adccebe477ccf9d511c69ba8fbbcbc52c11971a1942177cd7b276ee8038" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework/spring-web@4.3.23.RELEASE?type=jar", "externalReferences": [ { @@ -42336,7 +43228,7 @@ "content": "5fa7a4246113b906b6ace510b70164f93007dc4a474f1572292ec94326f0053cec46557c78d3cd50ef7bbab1b19a4a09c7bf0c45a6d2460e09e9ef9a36ca7e70" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework/spring-aop@4.3.23.RELEASE?type=jar", "externalReferences": [ { @@ -42395,7 +43287,7 @@ "content": "7f87fb804460ef1f0e4040c709169f7518b10acf18309db5e488785f3fe00c53d012aa11a8bea19919ff2b3ae98563540ac87cab84da0f016ab342b52e750f6b" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework/spring-beans@4.3.23.RELEASE?type=jar", "externalReferences": [ { @@ -42454,7 +43346,7 @@ "content": "d884c1056a3d9e41a1c21bfa3eb201465c1dd7fe63fa8b116c579baa6d241045c1bce95471f23fb3054b38843ab143983e80750202288f564a84eb2b69388ba0" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework/spring-context@4.3.23.RELEASE?type=jar", "externalReferences": [ { @@ -42513,7 +43405,7 @@ "content": "fa4aa0c97a8a24f3e32dccaefce17fd1cba10ab7c33f2e12fc9f358851b196f6f6927c76bc2c747d7d929c19bd5c4ee24faef0dec8e6c827020ba194dcd5ba32" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework/spring-webmvc@4.3.23.RELEASE?type=jar", "externalReferences": [ { @@ -42572,7 +43464,7 @@ "content": "8f7146f6df944a76f2567b1c072bacf8346c15bec8202290e8f7a026cce16d3dd508d8a3ac6702f514808ca7911e69925339dc015ef8f63b1aa3f88c81f96ae9" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework/spring-expression@4.3.23.RELEASE?type=jar", "externalReferences": [ { @@ -42673,7 +43565,7 @@ "content": "2c0a3c75355daab84c377dc3a7c9a57f841e1d5ede295900f1998a3ba20316f28c04fcc6f2bbd802663beda86374c8e1917671e70a84e6ee647c6737409378e8" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.keycloak/keycloak-wildfly-adduser@10.0.2?type=jar", "externalReferences": [ { @@ -42739,10 +43631,14 @@ "content": "d7ef116204278ecac874ac3e42ae9a6653411b02cc3202ebeb67badf1e317ca8d38f6e10d6c3eb11e16f53cfc83d0bb2d3a496daa5c93ad4ccb5746202257a2f" } ], - "licenses": [{"license": { - "name": "BSD 3-clause New License", - "url": "https://github.com/dom4j/dom4j/blob/master/LICENSE" - }}], + "licenses": [ + { + "license": { + "name": "BSD 3-clause New License", + "url": "https://github.com/dom4j/dom4j/blob/master/LICENSE" + } + } + ], "purl": "pkg:maven/org.dom4j/dom4j@2.1.3?type=jar" }, { @@ -42787,10 +43683,14 @@ "content": "e4e559e2ba179a147e7458c395f941b078e99c193a0e362678f7d384ab4e112f2122030e6055e38962debe89e78ff9b5566a1a141ec2df5b8fc43f095861a326" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.jboss.resteasy/resteasy-undertow@3.11.2.Final?type=jar", "externalReferences": [ { @@ -42857,7 +43757,7 @@ "content": "86c1256c9fdeee16ed20d86046d6f128b3be3748ba8a2e6fe98f96ba3c970068e0e144404c238f1de03717f30a263a358afef14e70014da7a3027ad3df4c0cf8" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.keycloak/keycloak-saml-servlet-filter-adapter@10.0.2?type=jar", "externalReferences": [ { @@ -42924,7 +43824,7 @@ "content": "d70972898839889a4dad0324eb6c7f393a284984d2e407005eb83e2ce64f95885495b835a234294d2abee4386269f61512323888f03d27215fb6d3c2f3f80235" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.keycloak/keycloak-servlet-filter-adapter@10.0.2?type=jar", "externalReferences": [ { @@ -42991,7 +43891,7 @@ "content": "7a3ed5b331789878a23e536640ed64c535464d6120113cc2304df02bd566dcadf977e615e0efa2d553f627e5f91a9a3407ae57c6a1dcd40ffd4cf4ed1921fedb" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.keycloak/keycloak-jaxrs-oauth-client@10.0.2?type=jar", "externalReferences": [ { @@ -43058,7 +43958,7 @@ "content": "0a883de6d04884da3c40f4e5f33621b66c6eb8804a9b482cce9f7f8029f29c780489b0e19fb3e2d551f95242386503d9b61099ec1eec3629aeb975e8ad68b9eb" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.keycloak.testsuite/integration-arquillian-testsuite-providers@10.0.2?type=jar", "externalReferences": [ { @@ -43124,15 +44024,21 @@ "content": "1a5538cc48c5b99e496ee5924f80df410fecc555e3619a79b8c6204156dc333cf0cbebae05bca5a8144ab89b2f2fe4802080128d76b1e94a51acced8aedb4354" } ], - "licenses": [{"license": { - "name": "MPL 2.0 or EPL 1.0", - "url": "http://h2database.com/html/license.html" - }}], + "licenses": [ + { + "license": { + "name": "MPL 2.0 or EPL 1.0", + "url": "http://h2database.com/html/license.html" + } + } + ], "purl": "pkg:maven/com.h2database/h2@1.4.197?type=jar", - "externalReferences": [{ - "type": "vcs", - "url": "https://github.com/h2database/h2database" - }] + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/h2database/h2database" + } + ] }, { "type": "library", @@ -43176,7 +44082,7 @@ "content": "432963d727152efca4115bdaca44aaaeeb13b7aba6d0a5b747743cc3f2b4a71a6be08d1d0e94b6025a7e9a01308d903172acfaaaa22da92a5ecc19112b45ac69" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/com.icegreen/greenmail@1.3.1b?type=jar", "externalReferences": [ { @@ -43234,15 +44140,21 @@ "content": "bd4b6637423f4cae25c04643b7bddd56757feff7846953fda779082d75d4f7388eb3b8a238a5f71dad2d44de184f19c3d6606bfc6475d573694899128cb3e7a6" } ], - "licenses": [{"license": { - "name": "Common Development and Distribution License (CDDL) v1.0", - "url": "https://glassfish.dev.java.net/public/CDDLv1.0.html" - }}], + "licenses": [ + { + "license": { + "name": "Common Development and Distribution License (CDDL) v1.0", + "url": "https://glassfish.dev.java.net/public/CDDLv1.0.html" + } + } + ], "purl": "pkg:maven/javax.mail/mail@1.4?type=jar", - "externalReferences": [{ - "type": "distribution", - "url": "https://maven-repository.dev.java.net/nonav/repository/javax.mail/jars/mail-1.4.jar" - }] + "externalReferences": [ + { + "type": "distribution", + "url": "https://maven-repository.dev.java.net/nonav/repository/javax.mail/jars/mail-1.4.jar" + } + ] }, { "type": "library", @@ -43286,15 +44198,19 @@ } ], "licenses": [ - {"license": {"id": "Apache-2.0"}}, - {"license": { - "id": "SAX-PD", - "url": "http://www.saxproject.org/copying.html" - }}, - {"license": { - "name": "The W3C License", - "url": "http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/java-binding.zip" - }} + { "license": { "id": "Apache-2.0" } }, + { + "license": { + "id": "SAX-PD", + "url": "http://www.saxproject.org/copying.html" + } + }, + { + "license": { + "name": "The W3C License", + "url": "http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/java-binding.zip" + } + } ], "purl": "pkg:maven/xml-apis/xml-apis@1.4.01?type=jar", "externalReferences": [ @@ -43354,7 +44270,7 @@ "content": "75492aec4c2ad040963b9ba14005b7501cd181a7cee34a0bab3defcd944c78f5de251f2581f97f12e8313db9fbe5b8b337ad86f8e9a5a2e0992a3cfdddcd3ffe" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.keycloak/keycloak-util-embedded-ldap@10.0.2?type=jar", "externalReferences": [ { @@ -43421,10 +44337,14 @@ "content": "75931d499da88baef6412a7189a331941cbf5d5b29a948542e4ee05a5337f9583891c02352a14abd1b190e5fc9cf78d345faa3d2d42f46ceb00ba363b1452850" } ], - "licenses": [{"license": { - "id": "LGPL-2.1-or-later", - "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" - }}], + "licenses": [ + { + "license": { + "id": "LGPL-2.1-or-later", + "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" + } + } + ], "purl": "pkg:maven/org.wildfly/wildfly-undertow@19.1.0.Final?type=jar", "externalReferences": [ { @@ -43487,10 +44407,14 @@ "content": "e787074b32de4200f5737cedd2a84086f928165571f9d0b7a6be0544559a51aeda0e1cbfc58fee31e4af4e52eede3ed54ad12ce54068834f509fc8736dd279a3" } ], - "licenses": [{"license": { - "name": "lgpl", - "url": "http://repository.jboss.org/licenses/lgpl-2.1.txt" - }}], + "licenses": [ + { + "license": { + "name": "lgpl", + "url": "http://repository.jboss.org/licenses/lgpl-2.1.txt" + } + } + ], "purl": "pkg:maven/org.jboss.common/jboss-common-beans@2.0.1.Final?type=jar", "externalReferences": [ { @@ -43553,10 +44477,14 @@ "content": "91d5c8f1781b4ca15b03dae3952d47369d07ec452d07d9107b8ca5c965c55b7b74abef00af258a4be579beb2ee06ccf6c73f16e4bd086f7e7c6a6c945180eaed" } ], - "licenses": [{"license": { - "id": "LGPL-2.1-or-later", - "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" - }}], + "licenses": [ + { + "license": { + "id": "LGPL-2.1-or-later", + "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" + } + } + ], "purl": "pkg:maven/org.wildfly/wildfly-clustering-web-container@19.1.0.Final?type=jar", "externalReferences": [ { @@ -43619,10 +44547,14 @@ "content": "d78da9fde3cb78c7824b2f7519d3023f30c63db6ac115192d67a5b4866b0e114fa5a27f45c31c86697c65043ebb79e28aba0bfa35911566c9dd4b11ce01afaa8" } ], - "licenses": [{"license": { - "id": "LGPL-2.1-or-later", - "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" - }}], + "licenses": [ + { + "license": { + "id": "LGPL-2.1-or-later", + "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" + } + } + ], "purl": "pkg:maven/org.wildfly/wildfly-clustering-common@19.1.0.Final?type=jar", "externalReferences": [ { @@ -43685,10 +44617,14 @@ "content": "19d8693dcaa1cf27150fee9eb2456d85072b987a258654081938a14834dde1a4542a39ce5a8bbbfc6c7f5a68757165541e0ed5e97fbdd5f94d65fe74037d8032" } ], - "licenses": [{"license": { - "id": "LGPL-2.1-or-later", - "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" - }}], + "licenses": [ + { + "license": { + "id": "LGPL-2.1-or-later", + "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" + } + } + ], "purl": "pkg:maven/org.wildfly/wildfly-clustering-service@19.1.0.Final?type=jar", "externalReferences": [ { @@ -43752,14 +44688,18 @@ } ], "licenses": [ - {"license": { - "id": "LGPL-2.1-or-later", - "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" - }}, - {"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }} + { + "license": { + "id": "LGPL-2.1-or-later", + "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" + } + }, + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } ], "purl": "pkg:maven/org.wildfly.core/wildfly-event-logger@11.1.1.Final?type=jar", "externalReferences": [ @@ -43824,14 +44764,18 @@ } ], "licenses": [ - {"license": { - "id": "EPL-2.0", - "url": "https://www.eclipse.org/legal/epl-2.0" - }}, - {"license": { - "name": "GNU General Public License, version 2 with the GNU Classpath Exception", - "url": "https://projects.eclipse.org/license/secondary-gpl-2.0-cp" - }} + { + "license": { + "id": "EPL-2.0", + "url": "https://www.eclipse.org/legal/epl-2.0" + } + }, + { + "license": { + "name": "GNU General Public License, version 2 with the GNU Classpath Exception", + "url": "https://projects.eclipse.org/license/secondary-gpl-2.0-cp" + } + } ], "purl": "pkg:maven/jakarta.json/jakarta.json-api@1.1.6?type=jar", "externalReferences": [ @@ -43895,10 +44839,14 @@ "content": "a7780584e8ad768c89d3e6d1702c2da2787ba8f8a4c81a3a16f407736ff007415ac71fdcb70cd94b37692c7cce2d03dd49bf8201337f797e247dd951955de3e0" } ], - "licenses": [{"license": { - "id": "LGPL-2.1-or-later", - "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" - }}], + "licenses": [ + { + "license": { + "id": "LGPL-2.1-or-later", + "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" + } + } + ], "purl": "pkg:maven/org.wildfly/wildfly-security@19.1.0.Final?type=jar", "externalReferences": [ { @@ -43961,10 +44909,14 @@ "content": "4722ab000e25f8f713c7c4b90a519db3ad98694cd6a488c5c44fada6a8bf6c7bd3ada23a9c32c67818c2134bc0d1c66f7e33d3df5aeb82b584b20c323233da52" } ], - "licenses": [{"license": { - "id": "LGPL-2.1-or-later", - "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" - }}], + "licenses": [ + { + "license": { + "id": "LGPL-2.1-or-later", + "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" + } + } + ], "purl": "pkg:maven/org.wildfly/wildfly-clustering-infinispan-spi@19.1.0.Final?type=jar", "externalReferences": [ { @@ -44027,10 +44979,14 @@ "content": "8aec04ce1b76eb3f8201ed3fc0dea47d168e6315054754c02317fca3686fabd30253cb21c381e4b9175364867e0a8a92fbb2a8eb6f0975314a9106841163dba2" } ], - "licenses": [{"license": { - "id": "LGPL-2.1-or-later", - "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" - }}], + "licenses": [ + { + "license": { + "id": "LGPL-2.1-or-later", + "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" + } + } + ], "purl": "pkg:maven/org.wildfly/wildfly-clustering-marshalling-spi@19.1.0.Final?type=jar", "externalReferences": [ { @@ -44093,10 +45049,14 @@ "content": "0fd8a0a9458b6e19482a3f60ef69b07c6dc9957ccf94480fa109f07998ddca9c78f00b5afeee12d7dfca5c8b761a2454a1ad52eb00df9eee64e0088777e8d661" } ], - "licenses": [{"license": { - "id": "LGPL-2.1-or-later", - "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" - }}], + "licenses": [ + { + "license": { + "id": "LGPL-2.1-or-later", + "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" + } + } + ], "purl": "pkg:maven/org.wildfly/wildfly-clustering-marshalling-api@19.1.0.Final?type=jar", "externalReferences": [ { @@ -44159,10 +45119,14 @@ "content": "d3cf9fffb2abdf54bdd2770e15028471c6597bd0701ea694417aa7a0dbd7cb4fdf360a500c7afd185628077641f33b92a3f59111cbc08cb8767d9d08a6a6c669" } ], - "licenses": [{"license": { - "id": "LGPL-2.1-or-later", - "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" - }}], + "licenses": [ + { + "license": { + "id": "LGPL-2.1-or-later", + "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" + } + } + ], "purl": "pkg:maven/org.wildfly/wildfly-transactions@19.1.0.Final?type=jar", "externalReferences": [ { @@ -44225,10 +45189,14 @@ "content": "2b6b235433424ebbc9487a07b56f296e89f388e3e8ccc4f20e8665523e322b1f282fcab76defd7e13a1d77ad33161726fa3f770f75c3c1a9f4649a5697579780" } ], - "licenses": [{"license": { - "id": "LGPL-2.1-or-later", - "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" - }}], + "licenses": [ + { + "license": { + "id": "LGPL-2.1-or-later", + "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" + } + } + ], "purl": "pkg:maven/org.wildfly/wildfly-iiop-openjdk@19.1.0.Final?type=jar", "externalReferences": [ { @@ -44291,10 +45259,14 @@ "content": "9ae36ecd5e4cdcd6e152636e50248be618f98bbb8286cd026b73570901cd8693aff453610e646ce2a8b1a7f1cf9ddb231506cbe0d016b661f549269ba7468c03" } ], - "licenses": [{"license": { - "name": "Public Domain", - "url": "http://repository.jboss.org/licenses/cc0-1.0.txt" - }}], + "licenses": [ + { + "license": { + "name": "Public Domain", + "url": "http://repository.jboss.org/licenses/cc0-1.0.txt" + } + } + ], "purl": "pkg:maven/org.jboss.metadata/jboss-metadata-ejb@13.0.0.Final?type=jar", "externalReferences": [ { @@ -44357,10 +45329,14 @@ "content": "0689d0368ec84d423c8fe82cff808de8f8a968611ca91abb936afd0b274ad61d338530a4c41227a9e662362f12c4563ffe1218f36c11f96d254c894f4435ec55" } ], - "licenses": [{"license": { - "name": "gpl", - "url": "http://openjdk.java.net/legal/gplv2+ce.html" - }}], + "licenses": [ + { + "license": { + "name": "gpl", + "url": "http://openjdk.java.net/legal/gplv2+ce.html" + } + } + ], "purl": "pkg:maven/org.jboss.openjdk-orb/openjdk-orb@8.1.4.Final?type=jar", "externalReferences": [ { @@ -44423,7 +45399,7 @@ "content": "3a54d505d7a73e2c5d774223b9c771886b7b59fcb231f9755c611f7e707558e546a0f426ffe8377b028a1bd3d53462e3ccef133f4caf93c20d5ed185299ff42d" } ], - "licenses": [{"license": {"name": "Public Domain"}}], + "licenses": [{ "license": { "name": "Public Domain" } }], "purl": "pkg:maven/org.jboss/jboss-transaction-spi@7.6.0.Final?type=jar", "externalReferences": [ { @@ -44490,7 +45466,7 @@ "content": "cdd523ecb6d3bf30bb921c6872e10fe661eaa87ade1c7f5bd738a28f3fbd76ded71d0822df14cfd4fdd0904fdb279a25f444afa50d6d0e22354ce56c6e3da567" } ], - "licenses": [{"license": {"id": "LGPL-2.1-only"}}], + "licenses": [{ "license": { "id": "LGPL-2.1-only" } }], "purl": "pkg:maven/org.jboss.narayana.jts/narayana-jts-idlj@5.10.1.Final?type=jar", "externalReferences": [ { @@ -44561,7 +45537,7 @@ "content": "866e6aaa1a139213f1acb6b26bb504193cf4062c067dfe7bafb6de19d41f00ce6aa9436386fb1dfed9d10c59bbe16ffa5b57e7a685c5e8cf0ff1cd903b5eb2f0" } ], - "licenses": [{"license": {"id": "LGPL-2.1-only"}}], + "licenses": [{ "license": { "id": "LGPL-2.1-only" } }], "purl": "pkg:maven/org.jboss.narayana.jts/narayana-jts-integration@5.10.1.Final?type=jar", "externalReferences": [ { @@ -44633,8 +45609,8 @@ } ], "licenses": [ - {"license": {"id": "EPL-2.0"}}, - {"license": {"id": "GPL-2.0-with-classpath-exception"}} + { "license": { "id": "EPL-2.0" } }, + { "license": { "id": "GPL-2.0-with-classpath-exception" } } ], "purl": "pkg:maven/org.jboss.spec.javax.resource/jboss-connector-api_1.7_spec@2.0.0.Final?type=jar", "externalReferences": [ @@ -44698,10 +45674,14 @@ "content": "a04bb92025fd4fcdf3ca07b4c2751659ca65f0eecda31406890f9e14600f0ee11880b1a2187e21a13d600d6ae911248bb8dcd2d4e8270d554af1b959f24e1296" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.transaction/wildfly-transaction-client@1.1.9.Final?type=jar", "externalReferences": [ { @@ -44764,10 +45744,14 @@ "content": "bb924297313de2100e450c6dabc9e660fcfeff5bb92bcfa97f667629c6aceb7414f2383ec039e2045ae4fb5bfc2e93283f4fc1e027c04eaf9cb2d0fdef7ca010" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.wildfly-http-client/wildfly-http-transaction-client@1.0.20.Final?type=jar", "externalReferences": [ { @@ -44830,10 +45814,14 @@ "content": "aa2c4a1557bd6ef30968dce1610372762d11ed11f112c4533541e8fc46f56829b54a4fa43cedbfeb723bb92b98cdafc836f42c23ed063ec21d62d11e2321a3d0" } ], - "licenses": [{"license": { - "id": "LGPL-2.1-or-later", - "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" - }}], + "licenses": [ + { + "license": { + "id": "LGPL-2.1-or-later", + "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" + } + } + ], "purl": "pkg:maven/org.jboss.security/jboss-negotiation-extras@3.0.6.Final?type=jar", "externalReferences": [ { @@ -44896,10 +45884,14 @@ "content": "cbb2441791bb5461160d306b63457f51e6a7fe901fb7b6c96bf6f885ab0121ee95ea4be25b00ff56781af59472db17399226fdc99a7295c4c31cc66266489d05" } ], - "licenses": [{"license": { - "id": "LGPL-2.1-or-later", - "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" - }}], + "licenses": [ + { + "license": { + "id": "LGPL-2.1-or-later", + "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" + } + } + ], "purl": "pkg:maven/org.jboss.security/jboss-negotiation-common@3.0.6.Final?type=jar", "externalReferences": [ { @@ -44963,14 +45955,18 @@ } ], "licenses": [ - {"license": { - "name": "Common Development and Distribution License", - "url": "http://repository.jboss.org/licenses/cddl.txt" - }}, - {"license": { - "name": "GNU General Public License, Version 2 with the Classpath Exception", - "url": "http://repository.jboss.org/licenses/gpl-2.0-ce.txt" - }} + { + "license": { + "name": "Common Development and Distribution License", + "url": "http://repository.jboss.org/licenses/cddl.txt" + } + }, + { + "license": { + "name": "GNU General Public License, Version 2 with the Classpath Exception", + "url": "http://repository.jboss.org/licenses/gpl-2.0-ce.txt" + } + } ], "purl": "pkg:maven/org.jboss.spec.javax.servlet/jboss-servlet-api_3.1_spec@1.0.0.Final?type=jar", "externalReferences": [ @@ -45034,10 +46030,14 @@ "content": "26114ab3d274ba2cb0730a257017f64a862caaa7dedf5896a5659cda80dfed5f25534cd31a60710342b52a98c88d8373a84206a32bc059eb33881edca6c03e9e" } ], - "licenses": [{"license": { - "id": "LGPL-2.1-or-later", - "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" - }}], + "licenses": [ + { + "license": { + "id": "LGPL-2.1-or-later", + "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" + } + } + ], "purl": "pkg:maven/org.jboss.security/jboss-negotiation-spnego@3.0.6.Final?type=jar", "externalReferences": [ { @@ -45101,8 +46101,8 @@ } ], "licenses": [ - {"license": {"id": "EPL-2.0"}}, - {"license": {"id": "GPL-2.0-with-classpath-exception"}} + { "license": { "id": "EPL-2.0" } }, + { "license": { "id": "GPL-2.0-with-classpath-exception" } } ], "purl": "pkg:maven/org.jboss.spec.javax.security.jacc/jboss-jacc-api_1.5_spec@2.0.0.Final?type=jar", "externalReferences": [ @@ -45166,10 +46166,14 @@ "content": "46db6ecdafc6ad3703f8c485ec96a931a606d841c9ad9498ad04cb270e909cf7e41b2bd19cac318eed2ddaddbe5a8e35727f3f0e8b2212762ae7706cd51027b7" } ], - "licenses": [{"license": { - "name": "lgpl", - "url": "http://repository.jboss.org/licenses/lgpl-2.1.txt" - }}], + "licenses": [ + { + "license": { + "name": "lgpl", + "url": "http://repository.jboss.org/licenses/lgpl-2.1.txt" + } + } + ], "purl": "pkg:maven/org.picketbox/picketbox-infinispan@5.0.3.Final?type=jar", "externalReferences": [ { @@ -45228,10 +46232,14 @@ "content": "9e63d4673ecca82821374ae775b6861a3205daea075e67a3d0864a19db7ce0161589fb714c9a0ade566dcfb4aa9394d76e9eb5feeec5a5819e3d493db4e6d4d8" } ], - "licenses": [{"license": { - "name": "lgpl", - "url": "http://repository.jboss.com/licenses/lgpl.txt" - }}], + "licenses": [ + { + "license": { + "name": "lgpl", + "url": "http://repository.jboss.com/licenses/lgpl.txt" + } + } + ], "purl": "pkg:maven/org.picketbox/picketbox-commons@1.0.0.final?type=jar", "externalReferences": [ { @@ -45290,7 +46298,7 @@ "content": "737381965fc1fb7b746ceeaf449f4f8c481793b1d43c2260be2ef94eb93d558f7399f0b82f367620cbd1ecedb64dd2b4da990e6dc63a54d2ef3a875ca00f7cbf" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/commons-cli/commons-cli@1.3.1?type=jar", "externalReferences": [ { @@ -45361,10 +46369,14 @@ "content": "52a7d405de304149f3c150205164a16f8122f94e6c3223cddd07a8a96d3b81ca1bf62bb3c7f302e3ea4e9fa2eccaf7f0907c6ce79de42bc776b58029e56970a5" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.security.elytron-web/undertow-server-servlet@1.7.1.Final?type=jar", "externalReferences": [ { @@ -45427,7 +46439,7 @@ "content": "0aa10bbdfcfdbfe96665b20841c900db19978bcaaa352a4086e55010c26e52e997d837f201d1b59f13830e8d2acc4523ba79964a64a214dd90334948fd926607" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/io.undertow/undertow-websockets-jsr@2.1.0.Final?type=jar", "externalReferences": [ { @@ -45491,14 +46503,18 @@ } ], "licenses": [ - {"license": { - "id": "EPL-2.0", - "url": "https://www.eclipse.org/legal/epl-2.0" - }}, - {"license": { - "name": "GNU General Public License, version 2 with the GNU Classpath Exception", - "url": "https://projects.eclipse.org/license/secondary-gpl-2.0-cp" - }} + { + "license": { + "id": "EPL-2.0", + "url": "https://www.eclipse.org/legal/epl-2.0" + } + }, + { + "license": { + "name": "GNU General Public License, version 2 with the GNU Classpath Exception", + "url": "https://projects.eclipse.org/license/secondary-gpl-2.0-cp" + } + } ], "purl": "pkg:maven/org.jboss.spec.javax.websocket/jboss-websocket-api_1.1_spec@2.0.0.Final?type=jar", "externalReferences": [ @@ -45562,10 +46578,14 @@ "content": "c96138a42b989f105d22c89ca8e8a75f87999bfc8fbc2dec441f734689b028cbe1b4f7b27bdbf0f02693a2ad2ea44632a2a02abd411bb4299ce26f4e890a69c9" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.jboss.marshalling/jboss-marshalling-river@2.0.7.Final?type=jar", "externalReferences": [ { @@ -45628,10 +46648,14 @@ "content": "810929f97918aed32174c10bc3b0172651ecb827290ce8f0523fe8701adf2a6fc3fff23ad1ccb7c444f06ff457105e795541e404dd4d9e43706c71f724c76d67" } ], - "licenses": [{"license": { - "id": "Apache-2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0" - }}], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + } + ], "purl": "pkg:maven/org.wildfly.client/wildfly-client-config@1.0.0.Final?type=jar", "externalReferences": [ { @@ -45694,7 +46718,13 @@ "content": "b54396be29c2173c02ff3a04b755180811aeaec224fcceab755ee5319329c344d2db7f0d8458e03b3b51569b7deab7e9645e5ddffaaac6b6fc8742c83ef01190" } ], - "licenses": [{"license": {"name": "The GNU General Public License, v2 with FOSS exception"}}], + "licenses": [ + { + "license": { + "name": "The GNU General Public License, v2 with FOSS exception" + } + } + ], "purl": "pkg:maven/mysql/mysql-connector-java@8.0.18?type=jar", "externalReferences": [ { @@ -45749,10 +46779,14 @@ "content": "f5d31412f55989c664bbf088e1796b89f4f25e25c0c940fa94393bd4bdb1f499e62f276ece1d698336a6b5f2f816fd9f7f3bdbd42dac1e026481e9561a36349e" } ], - "licenses": [{"license": { - "id": "BSD-3-Clause", - "url": "https://opensource.org/licenses/BSD-3-Clause" - }}], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "url": "https://opensource.org/licenses/BSD-3-Clause" + } + } + ], "purl": "pkg:maven/com.google.protobuf/protobuf-java@3.6.1?type=jar", "externalReferences": [ { @@ -45811,10 +46845,14 @@ "content": "7458d3b3efefb6bf77305248ec728429d01d1ab597638aba818fac248ac07815fa2834cb0eeb404adbabbf4eacb4b205dcc6531a53757a56a6b45c858a8f6625" } ], - "licenses": [{"license": { - "id": "BSD-2-Clause", - "url": "https://opensource.org/licenses/BSD-2-Clause" - }}], + "licenses": [ + { + "license": { + "id": "BSD-2-Clause", + "url": "https://opensource.org/licenses/BSD-2-Clause" + } + } + ], "purl": "pkg:maven/org.postgresql/postgresql@42.2.8?type=jar", "externalReferences": [ { @@ -45873,10 +46911,14 @@ "content": "ee048fd9cc3d6104e07b300f60364a6f36234091c8aecbc081bcbd5092dfab3c1bdd558441229863bc01323417c5fbc41bd3b603e3c8c9de03eed99956048591" } ], - "licenses": [{"license": { - "id": "LGPL-2.1", - "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" - }}], + "licenses": [ + { + "license": { + "id": "LGPL-2.1", + "url": "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html" + } + } + ], "purl": "pkg:maven/org.mariadb.jdbc/mariadb-java-client@2.2.4?type=jar", "externalReferences": [ { @@ -45935,7 +46977,7 @@ "content": "7c0926df55950528d406f4823b3fba7a097e864f30725725b329f1ffbf3a2b4b70ebf2be4212e59cc524e782a9c685a890c3e8a1ff79c57a62c9ed9b8a769e59" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.jboss.arquillian.container/undertow-embedded@1.0.0.Alpha2?type=jar", "externalReferences": [ { @@ -45998,7 +47040,7 @@ "content": "7433f48349d293f1db6adbb440eeb3c54f1ba54e60485b8becc5831d29dc26187e92c4f9da36dbe38aa81a8f4e83d0892e294434f365c49cd0bbf8f0f7688b49" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.jboss.arquillian.container/shrinkwrap-container-undertow@1.0.0.Alpha2?type=jar", "externalReferences": [ { @@ -46061,7 +47103,7 @@ "content": "2b582d62e0e1d0969510e9a5e2494da02a392820747511aed89c7819e9157fecc98975c64ab45c92bdf0a56e07536622858588d309667f3e41a62b50b5ec1aa0" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-api@1.2.6?type=jar", "externalReferences": [ { @@ -46124,7 +47166,7 @@ "content": "f2e79e26c7bf3f0edf80ef599cec3c95f83cef1d9f5f7ff2b201044cf759065ba5e8ca348b256bc37d4cad0a3376bac08220cf560948a8180dc83cafc3372238" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.jboss.arquillian.container/arquillian-container-spi@1.6.0.Final?type=jar", "externalReferences": [ { @@ -46187,7 +47229,7 @@ "content": "6ce2aa5c5f31a668a173d4026a08be7d0659c209ae12d3845522e0331fd76d86f9d7b9d557e9c00b01aa1b41e1e344d21127c003b79ab38dcb4c3fdde189a16d" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.jboss.arquillian.core/arquillian-core-spi@1.6.0.Final?type=jar", "externalReferences": [ { @@ -46250,7 +47292,7 @@ "content": "cfba493915821848bdce886dfcf2a14620b30736c7bb48f2288ee908c99ed92f4db91c15d2c1c99b58150758e10e96d0a0a149d0ab6662eac40fc0b57df6f1b4" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.jboss.arquillian.core/arquillian-core-api@1.6.0.Final?type=jar", "externalReferences": [ { @@ -46313,7 +47355,7 @@ "content": "a44751eb36d103cc3b4b860af58372b009586d4d35ed6975322c57e5cc855b6f67a34a699e3403fb43dfee1c2eff8f14f550d8e3a75f9be125d3cf1e38481979" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.jboss.arquillian.config/arquillian-config-api@1.6.0.Final?type=jar", "externalReferences": [ { @@ -46376,7 +47418,7 @@ "content": "3ef6dd43f84e3249c0dc16a5a13c7bded205a74225ec63c54ac62891f7ba9eac4b3c85beee96bb91b06e518fd580b0603a5983d49d0cfbd243cf959274b97d78" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.jboss.arquillian.config/arquillian-config-impl-base@1.6.0.Final?type=jar", "externalReferences": [ { @@ -46439,7 +47481,7 @@ "content": "0204adad130cc0c3501c14b50190a97769d8cf7dbd6df59bf11f576036574db366331594886a1dbd1ff79c8c767e2769a0da0e4fe16785929bb8ae540b188cf1" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.jboss.arquillian.config/arquillian-config-spi@1.6.0.Final?type=jar", "externalReferences": [ { @@ -46502,7 +47544,7 @@ "content": "77f198356c383a37c613952438163da24fec6ac3d34c3e4a53a8b37e9ae3dbd89038ca710a90e1c91093a8a8e7d416e236de6def0e7669dd0c1e01a12e75c5a9" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.jboss.shrinkwrap.descriptors/shrinkwrap-descriptors-spi@2.0.0?type=jar", "externalReferences": [ { @@ -46565,7 +47607,7 @@ "content": "477fb294ff2fb49790cc380b17d2dd381a53ddd681efe41c215182dfb9c8866e55493ae9815e57866070d7091802d58cd7292ee6ece80878a352ebd3c701e802" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.jboss.shrinkwrap.descriptors/shrinkwrap-descriptors-api-base@2.0.0?type=jar", "externalReferences": [ { @@ -46628,7 +47670,7 @@ "content": "056a7e155375202ec9b88fd8949f6df16125d23d9201b184d20e05f1f68bd2fd4c8176245756289999be0fef99bb8b11dc0f601ed96b4ed5441b2c95dc2b2633" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.jboss.arquillian.container/arquillian-container-test-spi@1.6.0.Final?type=jar", "externalReferences": [ { @@ -46691,7 +47733,7 @@ "content": "618b6bbe8989dfcb12f0475c9521a697d65dd4641d97815dbfea14d43008448f8550e3c39e75a097bfc66db97039ed6bdb3185d2570270ec68ca8c2a8be4434b" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.jboss.arquillian.test/arquillian-test-spi@1.6.0.Final?type=jar", "externalReferences": [ { @@ -46754,7 +47796,7 @@ "content": "39db1ad686f3e84cc98b4b072a9f5eeb8143dd425523d0670007ac95b28f2c7add0acf4f400c26c8a9ac52c11c4a81af2d16a84c9073ff05e26dc6858dcc88be" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.jboss.arquillian.test/arquillian-test-api@1.6.0.Final?type=jar", "externalReferences": [ { @@ -46817,7 +47859,7 @@ "content": "2f712c4f1f140fa8f2611c665c44586f288ad87af8d8758f9cd16017f27f03b50727a5ae682838e125db5201a9c1bb042588a9567b531de5f07eeca4af4677e0" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.jboss.arquillian.container/arquillian-container-test-api@1.6.0.Final?type=jar", "externalReferences": [ { @@ -46880,7 +47922,7 @@ "content": "e561f89494e25a2619a19043691c398689f44489ebd80a43f0a03eb2cb43751b648ba33e9c47f1342c732baf08040bc839d43b8272712a88bb16c01559864f54" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.jboss.arquillian.testenricher/arquillian-testenricher-initialcontext@1.6.0.Final?type=jar", "externalReferences": [ { @@ -46943,7 +47985,7 @@ "content": "3de330904ea85eaff13d0fcfa9b56c7ab7204c935e4b866e500cbd1b17365803016856043641f7b1ca79627dc3c0a3556fce8937295a340c20455ebb5b5fe129" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api-maven@3.1.4?type=jar", "externalReferences": [ { @@ -47006,7 +48048,7 @@ "content": "c1005c9a9d5ce62866ef1681585e19119ae12d0d40d64b8eaa129c789ea6ab2adff3d424de54b1e0ac4f54ac23b4672db57d8bfbd1a5c3737b222142b880b6ec" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api@3.1.4?type=jar", "externalReferences": [ { @@ -47069,7 +48111,7 @@ "content": "b3dd7820626f65b4d44cd9efc024d88ac0b4339efedf8848e6106e7b377be1768b79852cc28c7c2f454071d80e132f389f9146bc5e7c779569df94897682a5e6" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.maven/maven-model@3.6.3?type=jar", "externalReferences": [ { @@ -47140,7 +48182,7 @@ "content": "82f4d76e0f0aa5f17c173f939154be88e4b665c20f2269e04776421425b5119417b35df6e55ff6cc6d32dcda9ce42fea3eb891aa2a3e16b2b595ca4303fb454e" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.codehaus.plexus/plexus-utils@3.2.1?type=jar", "externalReferences": [ { @@ -47207,81 +48249,89 @@ "content": "f5cc0e13907e617a07a919f9759eea208d4a4e519aadde61c25bfae26aa797252dd5acbb87b017c1bb233f2f527f54f4726341e75ae6a9964482a8ffa13ff4ca" } ], - "licenses": [{"license": { - "name": "Public Domain", - "url": "http://repository.jboss.org/licenses/cc0-1.0.txt" - }}], - "purl": "pkg:maven/org.jboss.arquillian.container/arquillian-container-karaf-managed@2.2.0.Final?type=jar", - "externalReferences": [ - { - "type": "distribution", - "url": "https://repository.jboss.org/nexus/service/local/staging/deploy/maven2" - }, - { - "type": "vcs", - "url": "http://github.com/arquillian/arquillian-container-osgi.git" - }, - { - "type": "website", - "url": "http://www.jboss.org" - }, - { - "type": "issue-tracker", - "url": "https://issues.jboss.org/" - }, - { - "type": "mailing-list", - "url": "http://lists.jboss.org/pipermail/jboss-user/" - } - ] - }, - { - "type": "library", - "bom-ref": "pkg:maven/org.jboss.arquillian.protocol/arquillian-protocol-osgi@2.2.0.Final?type=jar", - "publisher": "JBoss by Red Hat", - "group": "org.jboss.arquillian.protocol", - "name": "arquillian-protocol-osgi", - "version": "2.2.0.Final", - "description": "Parent POM for JBoss projects. Provides default project build configuration.", - "hashes": [ - { - "alg": "MD5", - "content": "25197d7dc6f158ca4e415a594d630416" - }, - { - "alg": "SHA-1", - "content": "a86c7c7999e9f2329f1078280f8465d105ac190c" - }, - { - "alg": "SHA-256", - "content": "dc93969017aa3786d1043de7995a6838598589356c84c9032cb065c1525313e4" - }, - { - "alg": "SHA-384", - "content": "587cec518bc9436c02d1484f4d28016685ecaaf3c948b0ca4611ebf0acc90afe22e3f8f09ed97619dbddf8d9cf596dfa" - }, - { - "alg": "SHA-512", - "content": "5e89c6512b9ca6089c784c8c7a47d2030bd1e502753b662944227a3758057e8d17b72c58762f16a5f05fa70d6689fdbd4b811657ad051d5bd68d54333413e091" - }, - { - "alg": "SHA3-256", - "content": "02a54a7837646f2fd7e100a0f8f71804799f28557b488fab5c1459c04ade2a34" - }, - { - "alg": "SHA3-384", - "content": "2f1fb943ab377757491ca89dab51ed2412fd34a963552b938fc5337ef0cd7dccf7ba9a41d6bb461d1b923d11d80f4b29" - }, + "licenses": [ { - "alg": "SHA3-512", - "content": "7268678bd5dd80eb7762e091ac879cc003482ad6f34721e8a82c8993964ba13987916f041fd22f6a411fe75e6e1d6f5958067b4d4f28067661601c11f51eadd3" + "license": { + "name": "Public Domain", + "url": "http://repository.jboss.org/licenses/cc0-1.0.txt" + } } ], - "licenses": [{"license": { - "name": "Public Domain", - "url": "http://repository.jboss.org/licenses/cc0-1.0.txt" - }}], - "purl": "pkg:maven/org.jboss.arquillian.protocol/arquillian-protocol-osgi@2.2.0.Final?type=jar", + "purl": "pkg:maven/org.jboss.arquillian.container/arquillian-container-karaf-managed@2.2.0.Final?type=jar", + "externalReferences": [ + { + "type": "distribution", + "url": "https://repository.jboss.org/nexus/service/local/staging/deploy/maven2" + }, + { + "type": "vcs", + "url": "http://github.com/arquillian/arquillian-container-osgi.git" + }, + { + "type": "website", + "url": "http://www.jboss.org" + }, + { + "type": "issue-tracker", + "url": "https://issues.jboss.org/" + }, + { + "type": "mailing-list", + "url": "http://lists.jboss.org/pipermail/jboss-user/" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:maven/org.jboss.arquillian.protocol/arquillian-protocol-osgi@2.2.0.Final?type=jar", + "publisher": "JBoss by Red Hat", + "group": "org.jboss.arquillian.protocol", + "name": "arquillian-protocol-osgi", + "version": "2.2.0.Final", + "description": "Parent POM for JBoss projects. Provides default project build configuration.", + "hashes": [ + { + "alg": "MD5", + "content": "25197d7dc6f158ca4e415a594d630416" + }, + { + "alg": "SHA-1", + "content": "a86c7c7999e9f2329f1078280f8465d105ac190c" + }, + { + "alg": "SHA-256", + "content": "dc93969017aa3786d1043de7995a6838598589356c84c9032cb065c1525313e4" + }, + { + "alg": "SHA-384", + "content": "587cec518bc9436c02d1484f4d28016685ecaaf3c948b0ca4611ebf0acc90afe22e3f8f09ed97619dbddf8d9cf596dfa" + }, + { + "alg": "SHA-512", + "content": "5e89c6512b9ca6089c784c8c7a47d2030bd1e502753b662944227a3758057e8d17b72c58762f16a5f05fa70d6689fdbd4b811657ad051d5bd68d54333413e091" + }, + { + "alg": "SHA3-256", + "content": "02a54a7837646f2fd7e100a0f8f71804799f28557b488fab5c1459c04ade2a34" + }, + { + "alg": "SHA3-384", + "content": "2f1fb943ab377757491ca89dab51ed2412fd34a963552b938fc5337ef0cd7dccf7ba9a41d6bb461d1b923d11d80f4b29" + }, + { + "alg": "SHA3-512", + "content": "7268678bd5dd80eb7762e091ac879cc003482ad6f34721e8a82c8993964ba13987916f041fd22f6a411fe75e6e1d6f5958067b4d4f28067661601c11f51eadd3" + } + ], + "licenses": [ + { + "license": { + "name": "Public Domain", + "url": "http://repository.jboss.org/licenses/cc0-1.0.txt" + } + } + ], + "purl": "pkg:maven/org.jboss.arquillian.protocol/arquillian-protocol-osgi@2.2.0.Final?type=jar", "externalReferences": [ { "type": "distribution", @@ -47347,7 +48397,7 @@ "content": "ca621babdc02ae8fd3f4cc7394b96aa3e6191e1de3a985f3cd66959a3c4f6969f75d3296180319b08c26012c8cc672679ddfa04311ceeb5cb8736e4a4a7c52bd" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.jboss.arquillian.protocol/arquillian-protocol-jmx@1.6.0.Final?type=jar", "externalReferences": [ { @@ -47410,10 +48460,14 @@ "content": "ec3f27f664b14fde260335f9c2af56185ffac8a432595894a2f7e52031448e5eb9180d6848d7216f0c0a0decceb089592928f6db55093a081cb8ff6615914f6f" } ], - "licenses": [{"license": { - "name": "Public Domain", - "url": "http://repository.jboss.org/licenses/cc0-1.0.txt" - }}], + "licenses": [ + { + "license": { + "name": "Public Domain", + "url": "http://repository.jboss.org/licenses/cc0-1.0.txt" + } + } + ], "purl": "pkg:maven/org.jboss.arquillian.testenricher/arquillian-testenricher-osgi@2.2.0.Final?type=jar", "externalReferences": [ { @@ -47480,7 +48534,7 @@ "content": "6d754115a8fe6e65351a15c4a9275da25fdefdb8777b03ee9bfda2c50ec8acab85d5eb688cd224991e9c7de2006165f05e0dbf884886d7fa084be9a1efa59c5a" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.jboss.arquillian.container/arquillian-container-test-impl-base@1.6.0.Final?type=jar", "externalReferences": [ { @@ -47543,10 +48597,14 @@ "content": "d3a0ec7c5792d6b02ac98f955cb6cdf71e55612fd6146b75b052cd8019713bde5c5a71a7eded284e1ebc21a24c369045935ff4c6efe12416a45459beac737388" } ], - "licenses": [{"license": { - "name": "lgpl_v2_1", - "url": "http://repository.jboss.com/licenses/lgpl-2.1.txt" - }}], + "licenses": [ + { + "license": { + "name": "lgpl_v2_1", + "url": "http://repository.jboss.com/licenses/lgpl-2.1.txt" + } + } + ], "purl": "pkg:maven/org.jboss.osgi.spi/jbosgi-spi@4.0.0.Final?type=jar", "externalReferences": [ { @@ -47601,10 +48659,14 @@ "content": "264d1c417887e3ddcdc8c0265dc22b1727fd8037f42957f2a2e154a9ab10285146b4bfa0210066867b305dc350ea7f5a7d23c59308c44d20213e972bb79f45f4" } ], - "licenses": [{"license": { - "name": "lgpl_v2_1", - "url": "http://repository.jboss.com/licenses/lgpl-2.1.txt" - }}], + "licenses": [ + { + "license": { + "name": "lgpl_v2_1", + "url": "http://repository.jboss.com/licenses/lgpl-2.1.txt" + } + } + ], "purl": "pkg:maven/org.jboss.osgi.vfs/jbosgi-vfs30@2.0.0.Final?type=jar", "externalReferences": [ { @@ -47659,10 +48721,14 @@ "content": "e117cb53ecdc4122a79c69cdc21b302f5dcf8cffd53773e265db98dc35dd50e63e6b28a42acf984b65d22d61c88c10061824c1e2d9a22b414916ab38f6fe0258" } ], - "licenses": [{"license": { - "name": "lgpl_v2_1", - "url": "http://repository.jboss.com/licenses/lgpl-2.1.txt" - }}], + "licenses": [ + { + "license": { + "name": "lgpl_v2_1", + "url": "http://repository.jboss.com/licenses/lgpl-2.1.txt" + } + } + ], "purl": "pkg:maven/org.jboss.osgi.vfs/jbosgi-vfs@2.0.0.Final?type=jar", "externalReferences": [ { @@ -47717,10 +48783,14 @@ "content": "854f19f9aa73e6a01ae5f5bb45e4f6862cd4dd550435452b1a6d87ab1e9a85a223fa584b1c9964f50c7d98b5da392439de9a720798acf89b7a53e383d7cbc7de" } ], - "licenses": [{"license": { - "name": "lgpl", - "url": "http://repository.jboss.org/licenses/lgpl.txt" - }}], + "licenses": [ + { + "license": { + "name": "lgpl", + "url": "http://repository.jboss.org/licenses/lgpl.txt" + } + } + ], "purl": "pkg:maven/org.jboss/jboss-vfs@3.1.0.Final?type=jar", "externalReferences": [ { @@ -47783,7 +48853,7 @@ "content": "bda39f42b160f16bbf9bed080a6d896a0022787d3593b8434aa3bb730825a21f19699d0c4fe676f09d0db86dae08233c6b1153572aed09b839b99ed00bef69ed" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-api@1.4.1?type=jar", "externalReferences": [ { @@ -47854,10 +48924,14 @@ "content": "7b7f8b5571503c51f7b38786e15565803e0d63bf64cd3dd776570d6f901108a9394e7c6d62b94c13dc5d7d93f46a771edffa3863037ab54050bc19a93de8e58e" } ], - "licenses": [{"license": { - "name": "Public Domain", - "url": "http://repository.jboss.org/licenses/cc0-1.0.txt" - }}], + "licenses": [ + { + "license": { + "name": "Public Domain", + "url": "http://repository.jboss.org/licenses/cc0-1.0.txt" + } + } + ], "purl": "pkg:maven/org.jboss.arquillian.container/arquillian-container-osgi@2.2.0.Final?type=jar", "externalReferences": [ { @@ -47966,7 +49040,7 @@ "content": "bed1cc860357278b494159ac2abe8779f56d96f9d6dc17df32794f09b5684448a923ed4bc50a649decfb9f4481f91f73d8194ab9da3ed3e3f4f2d6843fa38d12" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-spi@3.1.4?type=jar", "externalReferences": [ { @@ -48029,7 +49103,7 @@ "content": "f84c19d53fabe34669045e9af776bd25aef9aa3c2a979501ee249b365c29bf97871c293f0b7024ef98e07d9a300543ed150f7b7fd41d64c701ec3ab17b23b93a" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-spi-maven@3.1.4?type=jar", "externalReferences": [ { @@ -48092,7 +49166,7 @@ "content": "69359faaaffc15bac66fb2d5761cb32943cdbf291650208ef7beb4b05617906f13f2bb17d24631f135156bd97f7948ad4450d1ad32f09d643ae95a0d30ff8caa" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api-maven-archive@3.1.4?type=jar", "externalReferences": [ { @@ -48155,7 +49229,7 @@ "content": "1d00068f21ef396ad70062f6102c03c3024ed046178bc80c921a5b9ecc87bccee7e9ffcab2396b501da79b0ef172a4476563bb6ebc240d8397b46f504251634d" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-impl-maven@3.1.4?type=jar", "externalReferences": [ { @@ -48218,7 +49292,7 @@ "content": "a8ed60bb78db20a88fdf63ead0feff1f7d58ff2f4d95b0104b29bf6e4f2c203ba39aece579853d66b0a0714875b602b9eabfbe104f1ca6d7b00a7f2c1271f3b2" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.maven/maven-resolver-provider@3.6.3?type=jar", "externalReferences": [ { @@ -48289,7 +49363,7 @@ "content": "39bd4872d744b46bb141a01e140e94e2604c9cd949c00f2c5aabaa9eef33499a25edc7c739c038bfe3445102bc6e31db2338a1a00aea889ccb7b623860fa561c" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.maven/maven-model-builder@3.6.3?type=jar", "externalReferences": [ { @@ -48360,7 +49434,7 @@ "content": "723f0abf401dd62a99c6c03c3d363b7695dbe10912d1c46f0c26dbfbc697b09ca5b52c8567159c58f8adeece9caf9cf9ce560be110283fe315473d48a091d16a" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.maven/maven-artifact@3.6.3?type=jar", "externalReferences": [ { @@ -48431,7 +49505,7 @@ "content": "a5ddd69fb6deeac6ba03f30ef72655bebc5bd0bb636d3b61c03bbd2d0943937be523db7e3bd9d34bae54d1d1785be181695fe64de9ac69f98af21da1bce92931" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.maven/maven-builder-support@3.6.3?type=jar", "externalReferences": [ { @@ -48502,7 +49576,7 @@ "content": "94c2a7e75bd0c253ecaf8c205dea5c2c9d83f9496f49d6495fd94f599707fe662eb5b061da7ddbce6e4f7b88429c79bd7671561ebc3b734632251e053203f075" } ], - "licenses": [{"license": {"id": "EPL-1.0"}}], + "licenses": [{ "license": { "id": "EPL-1.0" } }], "purl": "pkg:maven/org.eclipse.sisu/org.eclipse.sisu.inject@0.3.4?type=jar", "externalReferences": [ { @@ -48573,7 +49647,7 @@ "content": "f3366430b6e7f864e47551d99ce5c2dcc8f830b3d2b01243d81cd50465d55c71cb80977aa2d7417f8fc95b37168c2c622993881b1b6c710359744c086f38c2c8" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.maven/maven-repository-metadata@3.6.3?type=jar", "externalReferences": [ { @@ -48644,7 +49718,7 @@ "content": "33715333b6957a22bac890951305b97b6572041a9c902b0d0a442112ddafc398b6d58b71eecd694212d1f5fe5a3ff7ce7fb56faf106812cfcc6ec6ecf4c7d9c9" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.maven/maven-settings@3.6.3?type=jar", "externalReferences": [ { @@ -48715,7 +49789,7 @@ "content": "0b194fd91864af46cd2ba71eb020401fe2b253ac74337e8a0211fa83b53317ba9ef565d4d04e4b5a09bc8983614a43c6f00aa92ec6e7d32a696fe524b3e87c02" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.maven/maven-settings-builder@3.6.3?type=jar", "externalReferences": [ { @@ -48786,7 +49860,7 @@ "content": "d96bbf5022851bd37c2e0bec4d65fd2354d3bcaefd0078e1bd35e044e62acc5e4b44fe05cfc7b7009694e5401f96bbe506224b4e66cbc76ba15ea808abcd3455" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-impl@1.4.1?type=jar", "externalReferences": [ { @@ -48857,7 +49931,7 @@ "content": "55b758feedfb29e9e78ce21c05a63ab1b33943c806b0bd4d257eca95ce2f76687eb84bdece4ef2f272cccbbbf62f688fb94bd8bd9f6a420ad8b3943820c3d213" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-spi@1.4.1?type=jar", "externalReferences": [ { @@ -48928,7 +50002,7 @@ "content": "29318d9c1c068d6b47f162a31303d8c1aaf156713c3af9492b888fa2d41b84f635711c6fea2bb1112b4e471fb31f2d433449bbd25a44a6c6537af050521409e9" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-util@1.4.1?type=jar", "externalReferences": [ { @@ -48999,7 +50073,7 @@ "content": "fe6418c290076fd614fb7f117196dc9f57c58c6d603e746a4034b7997d28dc5da42cab6383b0fa2ddb593772bec8b324cfbc39adc39d059993f2df12723d5511" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-connector-basic@1.4.1?type=jar", "externalReferences": [ { @@ -49070,7 +50144,7 @@ "content": "493bfdeb34da1cb9a2dc015be48eaa2f71e8a403fa7ba758693463a4a151f97882897348a8faae312f8122192e872031f94019fa72e5bb3af33cf6bc5075fbc9" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-transport-wagon@1.4.1?type=jar", "externalReferences": [ { @@ -49141,7 +50215,7 @@ "content": "e98ae04f2d4bf87eb5576af3582084e5cb4236ac91537c6ad22d174a9018dfc3e85f56c371352ded371201458f0a3cda26431b8aecae8b8bddcbcb26179c0d43" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.codehaus.plexus/plexus-interpolation@1.25?type=jar", "externalReferences": [ { @@ -49206,7 +50280,7 @@ "content": "194de7b0bdd4954ebae7982b8d91365864abfb86f16188880393089fa26122e9bc872c3181c4324b933b9faee90b7149140b97e72c552577e6c3447b06601f06" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.sonatype.plexus/plexus-sec-dispatcher@1.4?type=jar", "externalReferences": [ { @@ -49263,7 +50337,7 @@ "content": "b0d04db91d07b7b255044095a9c27cc008d17c35cec84c116958b3d014d2d8746eb29dc2cc35d9a389d29b36d06b6ddc43a42400b4efcf2373df717282284803" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.sonatype.plexus/plexus-cipher@1.7?type=jar", "externalReferences": [ { @@ -49322,7 +50396,7 @@ "content": "d4e57a8bf9c0d1bcb46138b8165417c51eb8c9faf05bb2d62474d80ac9fbfc81357a64bc13a5ac5c7c175bdeeb4c14b05c179e82da494ecafb4424c30a9c4b48" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.maven.wagon/wagon-provider-api@3.3.4?type=jar", "externalReferences": [ { @@ -49393,7 +50467,7 @@ "content": "0ac6322639c299507569101ae15c516d4775a8dc64d8587782b685696c67c4e8ed19798c448e6d0d0da81ebe18793cc88219314d9a97275b11910dab10e12485" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.maven.wagon/wagon-file@3.3.4?type=jar", "externalReferences": [ { @@ -49464,7 +50538,7 @@ "content": "12017cef39a496d6ba9962a454e31b6ccecf3e6a140f2ad3fec57d2031b39804b51a0f8374518aaf25b4364ce1274cc144139f4a402286ab8165356188e870c8" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.maven.wagon/wagon-http-lightweight@2.12?type=jar", "externalReferences": [ { @@ -49535,7 +50609,7 @@ "content": "bfc3cc76610e2f00867ff3495f552bd6a49b70903538952f5ee536e81c5a3e254f33ea3f942ba75edab171af4e49972d67fcb3529f78626485d7c3ed2e2e515c" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.maven.wagon/wagon-http-shared@2.12?type=jar", "externalReferences": [ { @@ -49606,7 +50680,7 @@ "content": "18e8838275211ccaaa7813afcec2be2da59cc3c34e4738169cd0b61e07d35f16851a42c42c8b5c791433dbff738055581c6af273fca6d8e1a2ad0a19b1cd98fe" } ], - "licenses": [{"license": {"id": "MIT"}}], + "licenses": [{ "license": { "id": "MIT" } }], "purl": "pkg:maven/org.jsoup/jsoup@1.12.1?type=jar", "externalReferences": [ { @@ -49669,7 +50743,7 @@ "content": "86e66e43df515f0a6a94a7c2802c297c4c981d8b75c27f6cd53f4d91aa56e766965fafea734cc5351bd9dbe73ca299c0979e32786cdce824d047c3149a57449f" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-impl-maven-archive@3.1.4?type=jar", "externalReferences": [ { @@ -49732,7 +50806,7 @@ "content": "091f1d90baea5ade33cc31cd19462ef78bb133449ec9aa5297a9d06eb2e4c99cc0fadbd5a8f80df650256425939d6f13b65b4414e1c0815f699bbdac400a42c1" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-impl-base@1.2.6?type=jar", "externalReferences": [ { @@ -49795,7 +50869,7 @@ "content": "1dd9385e4ae1f2e19ccbb0366111df98e5fd258f0ffe0c6f0ef0800d3c955adeeacd8207e448389050b4b4021cf3b3d64776bef4cd6b9ce69398f263a5fdc235" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-spi@1.2.6?type=jar", "externalReferences": [ { @@ -49858,7 +50932,7 @@ "content": "360fd8e8f8fc6f67765b6da827e58b54d96dcf24d132afa228911e7798acba5c68b56dda20e3798c2b5908d7b1ca9753cdf2951215c25b0e3ef8d19dc517937e" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-spi-maven-archive@3.1.4?type=jar", "externalReferences": [ { @@ -49921,7 +50995,7 @@ "content": "06547cb1ae277b36f64813842220d98e0ea5141f6e4360641142e5ff919d8f3ff2c9c24a913be194c75d2f43a7bdc48af9db313c1fd912d739b4002dc0be3186" } ], - "licenses": [{"license": {"id": "EPL-1.0"}}], + "licenses": [{ "license": { "id": "EPL-1.0" } }], "purl": "pkg:maven/org.eclipse.sisu/org.eclipse.sisu.plexus@0.3.4?type=jar", "externalReferences": [ { @@ -49992,7 +51066,7 @@ "content": "9079f25532ed85410c8761b1995da16a300cfa02c01cf951ea82c783e89d6dd3edef73427e158f953ad1f1554fce85582dfde812d84e5fb86017118db930d08e" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.codehaus.plexus/plexus-compiler-javac@2.7?type=jar", "externalReferences": [ { @@ -50059,7 +51133,7 @@ "content": "fbe9ce23c940303be9288930ac04675203f400e998b0f404251ddb2eae3bcda3b35237e7e66275fec8bbabb66772d3d12ca237c75a78bf67e7cf1448ca70645b" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.codehaus.plexus/plexus-compiler-api@2.7?type=jar", "externalReferences": [ { @@ -50126,7 +51200,7 @@ "content": "bb73ca03974a34d39cff9f0f8e610be93221e7c30ee896c8044aafa3f981dda6a513a319c0bacbfd231dc6454b7f7e25b31fe9b71d66432959017f08f12bff5b" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api-maven-embedded@3.1.4?type=jar", "externalReferences": [ { @@ -50189,7 +51263,7 @@ "content": "a5a46b40aa98014bbd3645968ced53adad38b937c55248b8707cc0031b2d46992dfcfcd84e787ee318edbd4cb5d7832bd3d3a84fce1b23ec55608a1a618ae9cf" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.maven.shared/maven-invoker@3.0.0?type=jar", "externalReferences": [ { @@ -50260,7 +51334,7 @@ "content": "5051e4210310ec60fae9f32284a93da3cff63bf43a7dda30eaf2715d24cfc7f2353a6c2731521f4d6ef32e7a3e2526b6a41c8a11b0889c8dbf7ffc7914812641" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.codehaus.plexus/plexus-component-annotations@2.1.0?type=jar", "externalReferences": [ { @@ -50327,7 +51401,7 @@ "content": "b4ce0e7d45daac33ec65a77aa46f8649a42c312b92130681ef22a327793ee18ca20e6af5becd3402cb48f38d485f4e89b3fdf2c65b7b55daba0c792438ec0591" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-impl-maven-embedded@3.1.4?type=jar", "externalReferences": [ { @@ -50390,10 +51464,14 @@ "content": "8f6a4cd4445cfd2bfa77656cc72e4ff4764651c75232a54b395152b17530bd8bc9471828cbdc41b3a86bb40d74813d23ff944f9aab511f3bf8265602c6e44406" } ], - "licenses": [{"license": { - "name": "Public Domain", - "url": "http://repository.jboss.org/licenses/cc0-1.0.txt" - }}], + "licenses": [ + { + "license": { + "name": "Public Domain", + "url": "http://repository.jboss.org/licenses/cc0-1.0.txt" + } + } + ], "purl": "pkg:maven/org.arquillian.spacelift/arquillian-spacelift@1.0.2?type=jar", "externalReferences": [ { @@ -50456,10 +51534,14 @@ "content": "762a982333fcfe9617420ec3467f5f36334f2887ee1a8ba4e613f0584e9421f8d2d0d2aacf7a266ace76c867cdc7752ced0cf50431b378605f5ed767e6ed9b01" } ], - "licenses": [{"license": { - "name": "Public Domain", - "url": "http://repository.jboss.org/licenses/cc0-1.0.txt" - }}], + "licenses": [ + { + "license": { + "name": "Public Domain", + "url": "http://repository.jboss.org/licenses/cc0-1.0.txt" + } + } + ], "purl": "pkg:maven/org.arquillian.spacelift/arquillian-spacelift-api@1.0.2?type=jar", "externalReferences": [ { @@ -50522,7 +51604,7 @@ "content": "039cdc92f9514466fb5cf50a925907a23504e820a37aad8c905a254b620ab03ee68b8167ab0422f02a693acdd4df56d4e7b63f544e260635b8922e3fbaffd5d5" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.commons/commons-compress@1.8.1?type=jar", "externalReferences": [ { @@ -50593,10 +51675,14 @@ "content": "6d6860177da16274a59595276a1277feeb98b8ce94d200e3756e02c4f131b153ffe1554e6aec5afe80f87d2649931f6ec616bb6612e0043ff86490c288ec580b" } ], - "licenses": [{"license": { - "name": "lgpl_v2_1", - "url": "http://repository.jboss.com/licenses/lgpl-2.1.txt" - }}], + "licenses": [ + { + "license": { + "name": "lgpl_v2_1", + "url": "http://repository.jboss.com/licenses/lgpl-2.1.txt" + } + } + ], "purl": "pkg:maven/org.jboss.osgi.metadata/jbosgi-metadata@4.0.0.CR1?type=jar", "externalReferences": [ { @@ -50651,10 +51737,14 @@ "content": "fa3862c478647b8e11387c05b3adeba76fc5f2dcce6958cf8eb8f333822f4bcbe2827f5691a5fb6f700482fecc0f858e46ae196469fec624154a1770db2c1716" } ], - "licenses": [{"license": { - "name": "Public Domain", - "url": "http://repository.jboss.org/licenses/cc0-1.0.txt" - }}], + "licenses": [ + { + "license": { + "name": "Public Domain", + "url": "http://repository.jboss.org/licenses/cc0-1.0.txt" + } + } + ], "purl": "pkg:maven/io.undertow.jastow/jastow@2.1.0.Final?type=jar", "externalReferences": [ { @@ -50779,12 +51869,14 @@ "content": "1ecdba85ff89adbadf5ca3e2d1120322d3cc39639f56634c7b17c19d5a4d6bda5df4ebbe954af347b5282f439f2aeddcf6966d5fa0fe8dd174309716ce7f9fca" } ], - "licenses": [{"license": {"id": "EPL-1.0"}}], + "licenses": [{ "license": { "id": "EPL-1.0" } }], "purl": "pkg:maven/org.eclipse.jdt.core.compiler/ecj@4.6.1?type=jar", - "externalReferences": [{ - "type": "vcs", - "url": "http://dev.eclipse.org/viewcvs/index.cgi/org.eclipse.jdt.core/" - }] + "externalReferences": [ + { + "type": "vcs", + "url": "http://dev.eclipse.org/viewcvs/index.cgi/org.eclipse.jdt.core/" + } + ] }, { "type": "library", @@ -50829,14 +51921,18 @@ } ], "licenses": [ - {"license": { - "name": "Common Development and Distribution License", - "url": "http://repository.jboss.org/licenses/cddl.txt" - }}, - {"license": { - "name": "GNU General Public License, Version 2 with the Classpath Exception", - "url": "http://repository.jboss.org/licenses/gpl-2.0-ce.txt" - }} + { + "license": { + "name": "Common Development and Distribution License", + "url": "http://repository.jboss.org/licenses/cddl.txt" + } + }, + { + "license": { + "name": "GNU General Public License, Version 2 with the Classpath Exception", + "url": "http://repository.jboss.org/licenses/gpl-2.0-ce.txt" + } + } ], "purl": "pkg:maven/org.jboss.spec.javax.ws.rs/jboss-jaxrs-api_2.1_spec@1.0.1.Final?type=jar", "externalReferences": [ @@ -50899,12 +51995,14 @@ "content": "b597cc1bb569a4da7c285be5ddfd18b5df3e4e3c8ad1a697ff57d1313ad5b9beeda472acd1942409795dadba6b13fefd527d2c5ce9746505a74281bb5112a00c" } ], - "licenses": [{"license": {"id": "BSD-3-Clause"}}], + "licenses": [{ "license": { "id": "BSD-3-Clause" } }], "purl": "pkg:maven/org.hamcrest/hamcrest-all@1.3?type=jar", - "externalReferences": [{ - "type": "vcs", - "url": "https://github.com/hamcrest/JavaHamcrest" - }] + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/hamcrest/JavaHamcrest" + } + ] }, { "type": "library", @@ -50948,7 +52046,7 @@ "content": "c3460504c17cd9eb1107431ab79651a999f154a1bb440ced69fb4f3e595c4b93871a174a31a09da1c27e9415d998a0b25b7a9ebae1474d04ac5b626e80ff24cd" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.sshd/sshd-core@2.2.0?type=jar", "externalReferences": [ { @@ -51015,7 +52113,7 @@ "content": "eabd3fb23a5bca00a35361f75bcd1d4f5006b604c814d496dc1269df02d7250d51ebab2dfe05586ed40f3ade8648a2408cd7065b8fced33af66873d2c44802c4" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.sshd/sshd-common@2.2.0?type=jar", "externalReferences": [ { @@ -51082,7 +52180,7 @@ "content": "bd7e2795ec38886915c212b11f03c7cc925b3005d52ee3aeea5f97bf82ab45deebd663e1576d246517b12afec11cc506342d826a37d2ffd527708220d8317623" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.keycloak/keycloak-testsuite-utils@10.0.2?type=jar", "externalReferences": [ { @@ -51149,7 +52247,7 @@ "content": "fa5c105133ae804e91b9acb1801f91a5d9ecdae80bbc5dc5e4b602dc34ded186f30244c53f1a492a957d88d3fe8b3cd7b4bef6bb23569c634aae6a5c9f9e4b72" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.fusesource.jansi/jansi@1.17.1?type=jar", "externalReferences": [ { @@ -51216,7 +52314,7 @@ "content": "90dc5bfdcf5f76ba08143b359a1f6f26e0ce7cee9f325c3c4c9e3f72efd54ee136f810a0a07bd90f4fd495625dd48411367c7c639b9f44d97a2e8d2e44e5a244" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.keycloak.testsuite/integration-arquillian-util@10.0.2?type=jar", "externalReferences": [ { @@ -51283,7 +52381,7 @@ "content": "b850e0869e9375499af3b1b2bb60b210c17602812a631d75cfe3a577ef66410d1ab958ec14a8edd8380be5534665510d5ab888d700fe6aad548ea708c1fe1fce" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.jboss.arquillian.junit/arquillian-junit-container@1.6.0.Final?type=jar", "externalReferences": [ { @@ -51346,7 +52444,7 @@ "content": "310a03ed4ae9e4391bfb6481f8c45745737e10ab1fa9971d969d46677ff6b21a3aebd822fa0774a3924b7fabb592ba53b59595263713c9a6514a2a2b7cd99a4a" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.jboss.arquillian.junit/arquillian-junit-core@1.6.0.Final?type=jar", "externalReferences": [ { @@ -51409,7 +52507,7 @@ "content": "e167902c100e08fbb785ea27f57d8d3d2fdfd88b22befe0bfb8ba8d97551a50bc85560740b2442084c387dd64a54c2566789dc219190905526d8bce26ace052d" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.jboss.arquillian.core/arquillian-core-impl-base@1.6.0.Final?type=jar", "externalReferences": [ { @@ -51472,7 +52570,7 @@ "content": "e75bbe98c72a23dff545af2a886f907ca0f489237bb27da75415c0d2bdc217cd1a91235899137a1c57bb74ebe0bfe74531c04be5182ee792726a0c649c661305" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.jboss.arquillian.test/arquillian-test-impl-base@1.6.0.Final?type=jar", "externalReferences": [ { @@ -51535,7 +52633,7 @@ "content": "45430ae4c91ba38df02d8581a8e050d903be49fc50a6188240556114a6d89779b15b1fc6301a17e54b52586249aa64a98bbcaf62ad9cb55047d238aac95c10cf" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.jboss.arquillian.container/arquillian-container-impl-base@1.6.0.Final?type=jar", "externalReferences": [ { @@ -51598,7 +52696,7 @@ "content": "3abc48d1f5f80ff376c54646eb5d1e788900d72b2fe322a02abfe795610a049ff5f1a849fee1f1079a790df187502f9fde0ba863eff47ae65a40a966ecfcb427" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.jboss.arquillian.protocol/arquillian-protocol-servlet@1.6.0.Final?type=jar", "externalReferences": [ { @@ -51661,7 +52759,7 @@ "content": "794913f1ec9286de646d51cdd3fe8b55cbdba060d3ce9fa538edd6d8e1439f5e380170ae3a8e027c6640151d8de4d398ffe352cf35fc185bcf3199b8a810ea6c" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.keycloak.testsuite/integration-arquillian-servers-app-server-spi@10.0.2?type=jar", "externalReferences": [ { @@ -51728,7 +52826,7 @@ "content": "d15349092cdc0ac565c2a7b84ab515a884ec2117a0a034e600baf6cba9876173eb8f80ee3c7cca07d0a8db0d094b3a3aef4a76bee8bcb8c8113ad5b445f2136d" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/commons-configuration/commons-configuration@1.10?type=jar", "externalReferences": [ { @@ -51799,7 +52897,7 @@ "content": "dbdcf933551c6abe834ac4fa5b4833e47895c2573530b74f51daff7291dab60db88946fc34a518f423a68e9c9ce36507345070e56a86fb5a567be685c1e3cded" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/commons-logging/commons-logging@1.1.1?type=jar", "externalReferences": [ { @@ -51866,7 +52964,7 @@ "content": "b6ff284308133b055c696bc75d4493cb30accab7a7d1df0db6ecd88e188a09d6ce39d66bcf15856cf6aa1245b78c64849a91cf599108d6e999e833fde540e459" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/commons-io/commons-io@2.5?type=jar", "externalReferences": [ { @@ -51936,7 +53034,7 @@ "content": "adf6ad2892ddb606e3bdb4f522e1b8c719a685006ebc9c2d2fb305b41bd4b38257ec272fc112d06fc4ecd7dcec26f6a173fdaa51df7deb87ef29efe5607c7c43" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.subethamail/subethasmtp@3.1.7?type=jar", "externalReferences": [ { @@ -52000,17 +53098,21 @@ } ], "licenses": [ - {"license": { - "name": "CDDL", - "url": "http://www.sun.com/cddl" - }}, - {"license": {"id": "GPL-2.0-with-classpath-exception"}} + { + "license": { + "name": "CDDL", + "url": "http://www.sun.com/cddl" + } + }, + { "license": { "id": "GPL-2.0-with-classpath-exception" } } ], "purl": "pkg:maven/javax.mail/mail@1.4.4?type=jar", - "externalReferences": [{ - "type": "website", - "url": "http://www.oracle.com" - }] + "externalReferences": [ + { + "type": "website", + "url": "http://www.oracle.com" + } + ] }, { "type": "library", @@ -52053,10 +53155,14 @@ "content": "7682c02949ff5057100882b2e802fc7afd5df14b77ddadd1dafe3f3bcd55f2e382df377bd3dfc3fa43816496fb441ec02570245e8d762bc975ccc53bc0ae0306" } ], - "licenses": [{"license": { - "name": "COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0", - "url": "https://glassfish.dev.java.net/public/CDDLv1.0.html" - }}], + "licenses": [ + { + "license": { + "name": "COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0", + "url": "https://glassfish.dev.java.net/public/CDDLv1.0.html" + } + } + ], "purl": "pkg:maven/javax.activation/activation@1.1.1?type=jar" }, { @@ -52101,7 +53207,7 @@ "content": "2cf64617fba60e7800d6c5cef76ac2eb7a42eaaba9202d15962404efee16f2e8fc858e0abc938c21fbab70829576780bd449b7b700574197367a5e57bd9a71e8" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.commons/commons-compress@1.12?type=jar", "externalReferences": [ { @@ -52172,7 +53278,7 @@ "content": "38835f5fdee04cba7b88eb682c34d04849c34dab8c2dd2e1a84d77dea8f69cc3c5f53c6b8b79c0b414711bb75d404f8468eeb1b56681c02238ef62b77e6f8b5a" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.keycloak.testsuite/integration-arquillian-servers-app-server-undertow@10.0.2?type=jar", "externalReferences": [ { @@ -52239,7 +53345,7 @@ "content": "b104a1142240864a432b0146ff3959b1c1928b46988c8211e11baf769b9f349187cf9353b8632d03483238f511d299ec0e04ec23c14c630bb9757b97d5f4f368" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.keycloak.testsuite/photoz-restful-api@10.0.2?classifier=classes&type=jar", "externalReferences": [ { @@ -52306,7 +53412,7 @@ "content": "d0987fb65f6a6b9cee5859998c705961099e3fccf05c67857e1c5097af3a8667cfde5d1f8e35fbfca0e69ce60776f9a565b3fd664d6baa0363b7720ec9d8ad8c" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.mvel/mvel2@2.4.0.Final?type=jar", "externalReferences": [ { @@ -52368,7 +53474,7 @@ "content": "f4972751ccd423a4f95d05c34e9e4f002bf5b5546048e3f454886561e026b4174bd010b1660dcf20ca2afc0e275c5c4b5714be003f012102584f216659807f65" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.wildfly.extras.creaper/creaper-commands@1.6.1?type=jar", "externalReferences": [ { @@ -52426,7 +53532,7 @@ "content": "a0074b04bd96917c5c0c79962707384e55b3d27bcd5ba8b7ab3a5a72c789dfef00f3619b94e1a97fe5d866760373342d45c6259329e6ef0cda6eee724b9f5de6" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.wildfly.extras.creaper/creaper-core@1.6.1?type=jar", "externalReferences": [ { @@ -52485,7 +53591,7 @@ "content": "266b20d9a7af2eead0ca886d525aeb086ccc64977f2960178b671348b9e307fa1629433c0741a360c1616601b95d0ac0e86b7c6e01009158bd2eb07fb534abeb" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.codehaus.groovy/groovy@2.4.10?type=jar", "externalReferences": [ { @@ -52548,7 +53654,7 @@ "content": "4ee37c4f7e628a6670efe008cba5107788bc5e12e8c47b0f2bb99b1ce6966a1cc83b04e9e300f94c99d140f6eb9546ef0c93912098c204351f2a569d9c1634f4" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.codehaus.groovy/groovy-xml@2.4.10?type=jar", "externalReferences": [ { @@ -52653,10 +53759,14 @@ "content": "dd0838baef000ac50eac9b78e14ca4cd0ef331a4344984f12f70c93458ce1513a86b0b54a83c588684ccfba49b5afe8f5eeb31075f86e22cd98110bd6fa31574" } ], - "licenses": [{"license": { - "name": "GNU Lesser General Public License, Version 2.1", - "url": "http://www.gnu.org/licenses/lgpl-2.1.txt" - }}], + "licenses": [ + { + "license": { + "name": "GNU Lesser General Public License, Version 2.1", + "url": "http://www.gnu.org/licenses/lgpl-2.1.txt" + } + } + ], "purl": "pkg:maven/org.jboss.arquillian.graphene/graphene-webdriver-api@2.3.2?type=jar", "externalReferences": [ { @@ -52719,10 +53829,14 @@ "content": "a5a969d8b79de0866f612ac679d234af62cef71d0d47fb9047084a8b0af04e379a1014dda7f431a4f9719ec9f73bcfcb571f3dc24a79857cd9ae9119f39acc28" } ], - "licenses": [{"license": { - "name": "GNU Lesser General Public License, Version 2.1", - "url": "http://www.gnu.org/licenses/lgpl-2.1.txt" - }}], + "licenses": [ + { + "license": { + "name": "GNU Lesser General Public License, Version 2.1", + "url": "http://www.gnu.org/licenses/lgpl-2.1.txt" + } + } + ], "purl": "pkg:maven/org.jboss.arquillian.graphene/graphene-webdriver-spi@2.3.2?type=jar", "externalReferences": [ { @@ -52785,10 +53899,14 @@ "content": "488e0cd8caa8e3838b1b928248479a84a40bf3e30494774a7929d636e05eb4d4f1cd7502fa77166e1bd46770560c16d2fae38995e5ba0b3ce21f27a4f8063a34" } ], - "licenses": [{"license": { - "name": "GNU Lesser General Public License, Version 2.1", - "url": "http://www.gnu.org/licenses/lgpl-2.1.txt" - }}], + "licenses": [ + { + "license": { + "name": "GNU Lesser General Public License, Version 2.1", + "url": "http://www.gnu.org/licenses/lgpl-2.1.txt" + } + } + ], "purl": "pkg:maven/org.jboss.arquillian.graphene/graphene-webdriver-impl@2.3.2?type=jar", "externalReferences": [ { @@ -52851,10 +53969,14 @@ "content": "e00a557b0e9e09ef65d2d3bcc299bd7abe7bf928bfca34bbaab85ea40d1e8891ceb8f08417be6bf0b2b9d2037d1ff0e22a4c141c4d7f3804ddcb5a99a6158ab4" } ], - "licenses": [{"license": { - "name": "Public Domain", - "url": "http://repository.jboss.org/licenses/cc0-1.0.txt" - }}], + "licenses": [ + { + "license": { + "name": "Public Domain", + "url": "http://repository.jboss.org/licenses/cc0-1.0.txt" + } + } + ], "purl": "pkg:maven/org.jboss.arquillian.extension/arquillian-drone-impl@2.5.1?type=jar", "externalReferences": [ { @@ -52917,10 +54039,14 @@ "content": "868d8283d8a4f1049fca4e28ade4ff1678300b94cb296ebae4c003b9cca6aa6e1e3d4867bb801daab2ff05e986388159643d6c4996aa244519feda674307d2c3" } ], - "licenses": [{"license": { - "name": "Public Domain", - "url": "http://repository.jboss.org/licenses/cc0-1.0.txt" - }}], + "licenses": [ + { + "license": { + "name": "Public Domain", + "url": "http://repository.jboss.org/licenses/cc0-1.0.txt" + } + } + ], "purl": "pkg:maven/org.jboss.arquillian.extension/arquillian-drone-configuration@2.5.1?type=jar", "externalReferences": [ { @@ -52982,10 +54108,14 @@ "content": "6609a92a2ff8cf090ef6be206f4cfe0bfaeba77c7aea1964c5a428884e079195ba0b0491b0a0cd142b1da3cf9da96dd200a251611a63750abaa6815284145fa7" } ], - "licenses": [{"license": { - "name": "ASF 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" - }}], + "licenses": [ + { + "license": { + "name": "ASF 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + } + ], "purl": "pkg:maven/cglib/cglib-nodep@3.2.5?type=jar", "externalReferences": [ { @@ -53048,12 +54178,14 @@ "content": "2e2f3895a2e2df9139c707acc0e5236fda5d5dfe5e526bbfb6b07d0a2e316474684c3baf82916aa08aec50eac876c767b7e987bcf4178cf7d41f90ddbf49549b" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.objenesis/objenesis@1.2?type=jar", - "externalReferences": [{ - "type": "vcs", - "url": "http://objenesis.googlecode.com/svn/trunk" - }] + "externalReferences": [ + { + "type": "vcs", + "url": "http://objenesis.googlecode.com/svn/trunk" + } + ] }, { "type": "library", @@ -53139,10 +54271,14 @@ "content": "e3b1d11acf4c6739b33bc7a47c6b200da532b708474c101ca5e70871d918da84e75078487706a3b1676117fbb0a36ceb97da816aca76eed8190d19104bf1def6" } ], - "licenses": [{"license": { - "name": "Public Domain", - "url": "http://repository.jboss.org/licenses/cc0-1.0.txt" - }}], + "licenses": [ + { + "license": { + "name": "Public Domain", + "url": "http://repository.jboss.org/licenses/cc0-1.0.txt" + } + } + ], "purl": "pkg:maven/org.jboss.arquillian.extension/arquillian-drone-api@2.5.1?type=jar", "externalReferences": [ { @@ -53205,10 +54341,14 @@ "content": "ff04a7340b58b431f2c61bd93bba3e2404b1944c314f83ef41020e442dbcf69bd0eae3868d45c4fe33602470890ecc57ca195cfe6d26d07bf7baa08315e80c1f" } ], - "licenses": [{"license": { - "name": "Public Domain", - "url": "http://repository.jboss.org/licenses/cc0-1.0.txt" - }}], + "licenses": [ + { + "license": { + "name": "Public Domain", + "url": "http://repository.jboss.org/licenses/cc0-1.0.txt" + } + } + ], "purl": "pkg:maven/org.jboss.arquillian.extension/arquillian-drone-spi@2.5.1?type=jar", "externalReferences": [ { @@ -53270,12 +54410,14 @@ "content": "d7407ae2b776758ded862c67d206453d4a09d643f11724dd580887150dd1097bc0501b0f86c546e0aa54625e77537e799399c3bee176450756682bc43cc66eb4" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.seleniumhq.selenium/selenium-chrome-driver@3.14.0?type=jar", - "externalReferences": [{ - "type": "vcs", - "url": "https://github.com/SeleniumHQ/selenium/" - }] + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/SeleniumHQ/selenium/" + } + ] }, { "type": "library", @@ -53318,12 +54460,14 @@ "content": "daca27d7ffd73284c83ecba82a95e731eccae754a615e378cc7cc707220427a2152d40429e98c8b335728faeefd4a0aa63e777ec88f27faa1afb9691ef144dbb" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.seleniumhq.selenium/selenium-firefox-driver@3.14.0?type=jar", - "externalReferences": [{ - "type": "vcs", - "url": "https://github.com/SeleniumHQ/selenium/" - }] + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/SeleniumHQ/selenium/" + } + ] }, { "type": "library", @@ -53366,12 +54510,14 @@ "content": "c6a7885ed743972a2c9458cdf150282577022a18aa552963f8fbeb1f1c4085318f266068324cb402cab566fa09b043ab4a6eb3d5ffe2c5a9d075a1f09858f926" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.seleniumhq.selenium/selenium-ie-driver@3.14.0?type=jar", - "externalReferences": [{ - "type": "vcs", - "url": "https://github.com/SeleniumHQ/selenium/" - }] + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/SeleniumHQ/selenium/" + } + ] }, { "type": "library", @@ -53414,12 +54560,14 @@ "content": "ddded54fab402916da8dc2488cd6b7af70c2d66988003375b94117b83ec7b77198e9a9c95b882945436c3f6d63717b1cdd08d3e876f93cd4d5479ca7dd74fbcb" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.seleniumhq.selenium/selenium-remote-driver@3.14.0?type=jar", - "externalReferences": [{ - "type": "vcs", - "url": "https://github.com/SeleniumHQ/selenium/" - }] + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/SeleniumHQ/selenium/" + } + ] }, { "type": "library", @@ -53462,7 +54610,7 @@ "content": "9626bfbc46d1c02fd1c2ef723875ffeea15b49d394d666078dc24f1378ba6e1ad4a2e52f9fa66ac43a347c54c0d8c9309bf3a7d692039bd00b8eb776bca3c86f" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.seleniumhq.selenium/htmlunit-driver@2.27?type=jar", "externalReferences": [ { @@ -53517,7 +54665,7 @@ "content": "b2f9c1ed814cd6b0ff38955577ca73c7e1623e86431f73b142df7ea2ab46796608654956a10ffcc99bfe0562839e037a39dcd99ed9f49b86e5892b709a258c4c" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/net.sourceforge.htmlunit/htmlunit@2.27?type=jar", "externalReferences": [ { @@ -53588,7 +54736,7 @@ "content": "ba5477ac480a197a9bfd1e3a5f9ac619e0604fee2643c80a82e34120ea8234d634af57bdfc2782973a8fb43bb941737855731717488d202fbc3e74021e48dad3" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/xalan/xalan@2.7.2?type=jar", "externalReferences": [ { @@ -53647,7 +54795,7 @@ "content": "0b1efb82b2bab01389465d0d58b7119a15c328c74516fed469b44841ccd2e14d08bc370d4a4b2292c290867495b7f4f3bf392039fd1ad2f58875dc6882bd7f13" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/xalan/serializer@2.7.2?type=jar", "externalReferences": [ { @@ -53705,15 +54853,21 @@ "content": "1a3a45451f82fddcdd7c46ff1c6736e508b73f1d973d8e8e6aa5c498b1b4ee15b4b492e30e5999b2473d8e5d367b91bf55e297e0b570674f6c87aab1ac049cd2" } ], - "licenses": [{"license": { - "id": "MPL-2.0", - "url": "http://www.mozilla.org/MPL/2.0/" - }}], + "licenses": [ + { + "license": { + "id": "MPL-2.0", + "url": "http://www.mozilla.org/MPL/2.0/" + } + } + ], "purl": "pkg:maven/net.sourceforge.htmlunit/htmlunit-core-js@2.27?type=jar", - "externalReferences": [{ - "type": "vcs", - "url": "https://github.com/htmlunit" - }] + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/htmlunit" + } + ] }, { "type": "library", @@ -53756,7 +54910,7 @@ "content": "a8b4e8212b2014ae69975697c232023c84f1c761aeff79de956809bdefb56d10a83725e11f339ca785abde9b2e4b4b86443369673aeb54042ccf4efc2e8ae923" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/net.sourceforge.htmlunit/neko-htmlunit@2.27?type=jar", "externalReferences": [ { @@ -53810,12 +54964,14 @@ "content": "efb3c3153145f3d61b98c2104b1054d5b66d2a0098b604365a6fe754c55d345b300e413ead303160488fb3c1afd64c542fe9cf226fe33aac61130f07d394e9fd" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/xerces/xercesImpl@2.11.0?type=jar", - "externalReferences": [{ - "type": "vcs", - "url": "https://svn.apache.org/repos/asf/xerces/java/" - }] + "externalReferences": [ + { + "type": "vcs", + "url": "https://svn.apache.org/repos/asf/xerces/java/" + } + ] }, { "type": "library", @@ -53858,7 +55014,7 @@ "content": "2ea997e0f463b351f0385efc4b220bffd5f3a4af7772d9d625f8df9521748d1a7d6a2fa7f3d00c359e2b8ffcb9a15d87cc8bd843126b65364d9d3e0f9c7f2e93" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/net.sourceforge.cssparser/cssparser@0.9.23?type=jar", "externalReferences": [ { @@ -53926,8 +55082,8 @@ } ], "licenses": [ - {"license": {"id": "Apache-2.0"}}, - {"license": {"id": "EPL-1.0"}} + { "license": { "id": "Apache-2.0" } }, + { "license": { "id": "EPL-1.0" } } ], "purl": "pkg:maven/org.eclipse.jetty.websocket/websocket-client@9.4.5.v20170502?type=jar", "externalReferences": [ @@ -53996,8 +55152,8 @@ } ], "licenses": [ - {"license": {"id": "Apache-2.0"}}, - {"license": {"id": "EPL-1.0"}} + { "license": { "id": "Apache-2.0" } }, + { "license": { "id": "EPL-1.0" } } ], "purl": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.5.v20170502?type=jar", "externalReferences": [ @@ -54066,8 +55222,8 @@ } ], "licenses": [ - {"license": {"id": "Apache-2.0"}}, - {"license": {"id": "EPL-1.0"}} + { "license": { "id": "Apache-2.0" } }, + { "license": { "id": "EPL-1.0" } } ], "purl": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.5.v20170502?type=jar", "externalReferences": [ @@ -54136,8 +55292,8 @@ } ], "licenses": [ - {"license": {"id": "Apache-2.0"}}, - {"license": {"id": "EPL-1.0"}} + { "license": { "id": "Apache-2.0" } }, + { "license": { "id": "EPL-1.0" } } ], "purl": "pkg:maven/org.eclipse.jetty/jetty-client@9.4.5.v20170502?type=jar", "externalReferences": [ @@ -54206,8 +55362,8 @@ } ], "licenses": [ - {"license": {"id": "Apache-2.0"}}, - {"license": {"id": "EPL-1.0"}} + { "license": { "id": "Apache-2.0" } }, + { "license": { "id": "EPL-1.0" } } ], "purl": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.5.v20170502?type=jar", "externalReferences": [ @@ -54276,8 +55432,8 @@ } ], "licenses": [ - {"license": {"id": "Apache-2.0"}}, - {"license": {"id": "EPL-1.0"}} + { "license": { "id": "Apache-2.0" } }, + { "license": { "id": "EPL-1.0" } } ], "purl": "pkg:maven/org.eclipse.jetty.websocket/websocket-common@9.4.5.v20170502?type=jar", "externalReferences": [ @@ -54346,8 +55502,8 @@ } ], "licenses": [ - {"license": {"id": "Apache-2.0"}}, - {"license": {"id": "EPL-1.0"}} + { "license": { "id": "Apache-2.0" } }, + { "license": { "id": "EPL-1.0" } } ], "purl": "pkg:maven/org.eclipse.jetty.websocket/websocket-api@9.4.5.v20170502?type=jar", "externalReferences": [ @@ -54414,12 +55570,14 @@ "content": "01d263bdb9989dc4af68c1bbaedf42ceb1fb097a1508de582d28d162241759bfc2601fa64778de638c931cc27f5dd096ad476b3f2d2054e3fef0100e8fbdd537" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.seleniumhq.selenium/selenium-opera-driver@3.14.0?type=jar", - "externalReferences": [{ - "type": "vcs", - "url": "https://github.com/SeleniumHQ/selenium/" - }] + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/SeleniumHQ/selenium/" + } + ] }, { "type": "library", @@ -54462,12 +55620,14 @@ "content": "b27ea55de6652fbb7ca4fe3da226bcf6519b079893a7061acd94622999d03bb6ad9928e59768d85b93d57fb9407138e21ded67aef16435795fb19edd4273f350" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.seleniumhq.selenium/selenium-safari-driver@3.14.0?type=jar", - "externalReferences": [{ - "type": "vcs", - "url": "https://github.com/SeleniumHQ/selenium/" - }] + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/SeleniumHQ/selenium/" + } + ] }, { "type": "library", @@ -54510,12 +55670,14 @@ "content": "2293c667398ee2a54cb76304257f329fdb499621079e82e9f7e3574b039d51c42894751d2111a2f6c03a188d504108ea9ae0395fadb4874e5e6c9d6cf18d8a13" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.seleniumhq.selenium/selenium-edge-driver@3.14.0?type=jar", - "externalReferences": [{ - "type": "vcs", - "url": "https://github.com/SeleniumHQ/selenium/" - }] + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/SeleniumHQ/selenium/" + } + ] }, { "type": "library", @@ -54558,12 +55720,14 @@ "content": "b168e08c4027e9527ff9ec3ae877bafb50d933baefc030f2dd2426e9c396d0b2c74e211535a799740867e42396615d6a22441d385a287ac86d0776f11506dde5" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.seleniumhq.selenium/selenium-java@3.14.0?type=jar", - "externalReferences": [{ - "type": "vcs", - "url": "https://github.com/SeleniumHQ/selenium/" - }] + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/SeleniumHQ/selenium/" + } + ] }, { "type": "library", @@ -54606,7 +55770,7 @@ "content": "efd02a7381f82eb7ec84cd0e6825ca493bea0e2025fa9666d3d79faad62ce514b8f0c36003422cc315dd9d8c169d0945a45b4332bd394be2e219bd44f268865a" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/net.bytebuddy/byte-buddy@1.8.15?type=jar", "externalReferences": [ { @@ -54661,7 +55825,7 @@ "content": "ecccf73cf760ccaf95d679e0e1e6bae56f4e8a6ecd6e9420ad7d302d050aa70a00a510ec11dd7bdb6bb17c87220012ddf6a421903d97a9caf9e37cf143298530" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.commons/commons-exec@1.3?type=jar", "externalReferences": [ { @@ -54731,7 +55895,7 @@ "content": "66de308ca4de1d6f74e52d9ef8d2936733d5fad07472bfc1f2bae9b19cfacf2ce685cd63e8ffcce6fcda8485f3d58a86ca109b22ab167f7ef6428bf08e566173" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/com.squareup.okhttp3/okhttp@3.10.0?type=jar", "externalReferences": [ { @@ -54789,7 +55953,7 @@ "content": "83985080ab439a36de69b665b37e586563b60063fc96d18dfbb12b85a94e560ac41aba78b7f39069f515776f417f1a1fc323a0480ee04d315e46e8221b176985" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/com.squareup.okio/okio@1.14.1?type=jar", "externalReferences": [ { @@ -54848,7 +56012,7 @@ "content": "701aef06b8da9fef9731bb86da396447b56c867ca8804003ef8cad94d6d6885f57651a33405c4cacfad883d6b9d4114852de66865902dd1e4e9087b45010ddb9" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.jboss.arquillian.extension/arquillian-phantom-driver@1.2.1.Final?type=jar", "externalReferences": [ { @@ -54910,12 +56074,14 @@ "content": "7c8983bd55eb4c1cfd4cd2423e9b073d2e9f59e5e81926cd315cfc3282be89b6df259d88d82c3fe0b311d69fa7368f659a6ffe936c42b6ae45f9f1df9fff74ab" } ], - "licenses": [{"license": {"id": "BSD-2-Clause"}}], + "licenses": [{ "license": { "id": "BSD-2-Clause" } }], "purl": "pkg:maven/com.codeborne/phantomjsdriver@1.4.1?type=jar", - "externalReferences": [{ - "type": "vcs", - "url": "https://github.com/codeborne/ghostdriver" - }] + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/codeborne/ghostdriver" + } + ] }, { "type": "library", @@ -54959,10 +56125,14 @@ "content": "3e622123ffdc715bd718eec669353c075457e0fa5f326b912c13c359dabde2aba40a5755f11c83df8ba89a0bdf376919a66731b824da8ef96b8afdc6e76ef3c9" } ], - "licenses": [{"license": { - "name": "GNU Lesser General Public License, Version 2.1", - "url": "http://www.gnu.org/licenses/lgpl-2.1.txt" - }}], + "licenses": [ + { + "license": { + "name": "GNU Lesser General Public License, Version 2.1", + "url": "http://www.gnu.org/licenses/lgpl-2.1.txt" + } + } + ], "purl": "pkg:maven/org.jboss.arquillian.graphene/arquillian-browser-screenshooter@2.3.2?type=jar", "externalReferences": [ { @@ -55025,10 +56195,14 @@ "content": "2a4684ae6d343f8b0a3655f298ac1bd33fff8bcb95db3cc7437b3d3aee1897f9f1a148880be583a314b4f6d4df3746937062e37752004d50ee9f1fdb0037db60" } ], - "licenses": [{"license": { - "name": "Public Domain", - "url": "http://repository.jboss.org/licenses/cc0-1.0.txt" - }}], + "licenses": [ + { + "license": { + "name": "Public Domain", + "url": "http://repository.jboss.org/licenses/cc0-1.0.txt" + } + } + ], "purl": "pkg:maven/org.arquillian.extension/arquillian-recorder-screenshooter-impl-base@1.1.0.Final?type=jar", "externalReferences": [ { @@ -55095,10 +56269,14 @@ "content": "387a79f4a0adb655aa6461121c41fbcb1638c04cac2f0d6e65b3eb9055f16a818394cc514969b89a7445029bca7ab689856dd1ac06eba5c0071a771c095332cd" } ], - "licenses": [{"license": { - "name": "Public Domain", - "url": "http://repository.jboss.org/licenses/cc0-1.0.txt" - }}], + "licenses": [ + { + "license": { + "name": "Public Domain", + "url": "http://repository.jboss.org/licenses/cc0-1.0.txt" + } + } + ], "purl": "pkg:maven/org.arquillian.extension/arquillian-recorder-screenshooter-api@1.1.0.Final?type=jar", "externalReferences": [ { @@ -55165,10 +56343,14 @@ "content": "c20151bf8b1ff0ced4be3d62c2f2c676ca534fd7249b942be1f951fce1c7475707a481772b70994944121fd5e8d58e47c44cc7ea62470959a998abc5e722856d" } ], - "licenses": [{"license": { - "name": "Public Domain", - "url": "http://repository.jboss.org/licenses/cc0-1.0.txt" - }}], + "licenses": [ + { + "license": { + "name": "Public Domain", + "url": "http://repository.jboss.org/licenses/cc0-1.0.txt" + } + } + ], "purl": "pkg:maven/org.arquillian.extension/arquillian-recorder-api@1.1.0.Final?type=jar", "externalReferences": [ { @@ -55235,10 +56417,14 @@ "content": "69d073d5c4bab17287580ba6cd5b9d3efab3f283cfa051194eee72b996ceb743fe71ac271dc22b261d3936145302d71a5a3e7bb2a6b922544873777c9eac35a8" } ], - "licenses": [{"license": { - "name": "Public Domain", - "url": "http://repository.jboss.org/licenses/cc0-1.0.txt" - }}], + "licenses": [ + { + "license": { + "name": "Public Domain", + "url": "http://repository.jboss.org/licenses/cc0-1.0.txt" + } + } + ], "purl": "pkg:maven/org.arquillian.extension/arquillian-recorder-reporter-api@1.1.0.Final?type=jar", "externalReferences": [ { @@ -55306,11 +56492,13 @@ } ], "licenses": [ - {"license": {"id": "EPL-1.0"}}, - {"license": { - "name": "Eclipse Distribution License v. 1.0", - "url": "http://www.eclipse.org/org/documents/edl-v10.php" - }} + { "license": { "id": "EPL-1.0" } }, + { + "license": { + "name": "Eclipse Distribution License v. 1.0", + "url": "http://www.eclipse.org/org/documents/edl-v10.php" + } + } ], "purl": "pkg:maven/org.eclipse.persistence/org.eclipse.persistence.moxy@2.5.1?type=jar", "externalReferences": [ @@ -55375,11 +56563,13 @@ } ], "licenses": [ - {"license": {"id": "EPL-1.0"}}, - {"license": { - "name": "Eclipse Distribution License v. 1.0", - "url": "http://www.eclipse.org/org/documents/edl-v10.php" - }} + { "license": { "id": "EPL-1.0" } }, + { + "license": { + "name": "Eclipse Distribution License v. 1.0", + "url": "http://www.eclipse.org/org/documents/edl-v10.php" + } + } ], "purl": "pkg:maven/org.eclipse.persistence/org.eclipse.persistence.core@2.5.1?type=jar", "externalReferences": [ @@ -55444,11 +56634,13 @@ } ], "licenses": [ - {"license": {"id": "EPL-1.0"}}, - {"license": { - "name": "Eclipse Distribution License v. 1.0", - "url": "http://www.eclipse.org/org/documents/edl-v10.php" - }} + { "license": { "id": "EPL-1.0" } }, + { + "license": { + "name": "Eclipse Distribution License v. 1.0", + "url": "http://www.eclipse.org/org/documents/edl-v10.php" + } + } ], "purl": "pkg:maven/org.eclipse.persistence/org.eclipse.persistence.asm@2.5.1?type=jar", "externalReferences": [ @@ -55513,11 +56705,13 @@ } ], "licenses": [ - {"license": {"id": "EPL-1.0"}}, - {"license": { - "name": "Eclipse Distribution License v. 1.0", - "url": "http://www.eclipse.org/org/documents/edl-v10.php" - }} + { "license": { "id": "EPL-1.0" } }, + { + "license": { + "name": "Eclipse Distribution License v. 1.0", + "url": "http://www.eclipse.org/org/documents/edl-v10.php" + } + } ], "purl": "pkg:maven/org.eclipse.persistence/org.eclipse.persistence.antlr@2.5.1?type=jar", "externalReferences": [ @@ -55580,7 +56774,7 @@ "content": "d93346e6f001404030a414d0c01c768fb8f0c9ef47c3fd47341a15edffba8823601c24a6ce4cefb6b669d32647fb966b733d20bdc272f1df581d4a14c75a2e54" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/com.jhlabs/filters@2.0.235?type=jar" }, { @@ -55625,10 +56819,14 @@ "content": "30d1c624f6eb40b930447bcf6732bf4cff9568b19667f36bf146f63b21f1844114cc6bd25ff0c957d785cd0b9def06f49e4e94f2294cbaea8346a4e6159ffe8c" } ], - "licenses": [{"license": { - "name": "Public Domain", - "url": "http://repository.jboss.org/licenses/cc0-1.0.txt" - }}], + "licenses": [ + { + "license": { + "name": "Public Domain", + "url": "http://repository.jboss.org/licenses/cc0-1.0.txt" + } + } + ], "purl": "pkg:maven/org.arquillian.extension/arquillian-recorder-reporter-impl@1.1.0.Final?type=jar", "externalReferences": [ { @@ -55695,10 +56893,14 @@ "content": "09e453702778f289acf5b01be17d0a51847ae002b192df0784411a0c826ca3181071cf7467e7e23f49f617a8a73fcc4dd4753522c7cda8d320145d9d765891c2" } ], - "licenses": [{"license": { - "name": "Public Domain", - "url": "http://repository.jboss.org/licenses/cc0-1.0.txt" - }}], + "licenses": [ + { + "license": { + "name": "Public Domain", + "url": "http://repository.jboss.org/licenses/cc0-1.0.txt" + } + } + ], "purl": "pkg:maven/org.arquillian.extension/arquillian-recorder-reporter-spi@1.1.0.Final?type=jar", "externalReferences": [ { @@ -55765,10 +56967,14 @@ "content": "3ab14afd6c6777eb5c4ab6d4c7cd5724294139f652c5fed1d64fa3cb7c6e5e55de59b0186bfc9b9b576876896c88e433e79aeafb88ced3714e33806268f1d18b" } ], - "licenses": [{"license": { - "name": "Public Domain", - "url": "http://repository.jboss.org/licenses/cc0-1.0.txt" - }}], + "licenses": [ + { + "license": { + "name": "Public Domain", + "url": "http://repository.jboss.org/licenses/cc0-1.0.txt" + } + } + ], "purl": "pkg:maven/org.arquillian.extension/arquillian-recorder-video-api@1.1.0.Final?type=jar", "externalReferences": [ { @@ -55835,10 +57041,14 @@ "content": "5e6c6f6503de4b4aaacf8650233bbaf2ce46e82633162fc5993983f2a71047879982b1acb6adc883fe21d0cbd6eff9b8e2ec3be3860f7906590e64ded11512f1" } ], - "licenses": [{"license": { - "name": "Public Domain", - "url": "http://repository.jboss.org/licenses/cc0-1.0.txt" - }}], + "licenses": [ + { + "license": { + "name": "Public Domain", + "url": "http://repository.jboss.org/licenses/cc0-1.0.txt" + } + } + ], "purl": "pkg:maven/org.arquillian.extension/arquillian-recorder-screenshooter-spi@1.1.0.Final?type=jar", "externalReferences": [ { @@ -55905,10 +57115,14 @@ "content": "89e889a159053728e1a99fae8fecc087369ee983759a32e14d7190515f0004c92ac7d098abffdce192f1d0e559547ba1bf02151e13a2aa95b717c28a19194e4f" } ], - "licenses": [{"license": { - "name": "Public Domain", - "url": "http://repository.jboss.org/licenses/cc0-1.0.txt" - }}], + "licenses": [ + { + "license": { + "name": "Public Domain", + "url": "http://repository.jboss.org/licenses/cc0-1.0.txt" + } + } + ], "purl": "pkg:maven/org.arquillian.extension/arquillian-recorder-spi@1.1.0.Final?type=jar", "externalReferences": [ { @@ -55975,10 +57189,14 @@ "content": "b250ddc22bdb54931ce79bf7eb8fd6b69af4d2416d20a11aafc7d59805515852a635fc8dedba6212fd5f5a20313d5eced32e790766ded054ea0e3e5311eb5012" } ], - "licenses": [{"license": { - "name": "Public Domain", - "url": "http://repository.jboss.org/licenses/cc0-1.0.txt" - }}], + "licenses": [ + { + "license": { + "name": "Public Domain", + "url": "http://repository.jboss.org/licenses/cc0-1.0.txt" + } + } + ], "purl": "pkg:maven/org.jboss.arquillian.extension/arquillian-drone-webdriver@2.5.1?type=jar", "externalReferences": [ { @@ -56040,7 +57258,7 @@ "content": "ac3b61016bf196af2c9331c0ea2a9838932b4d9dd0c583af558e1ba71dcd87338a05c39d93c5f6a65fa2a7d5e277cb7da00089de1f36c3ee3ee3b753bbc37bb6" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.awaitility/awaitility@3.0.0?type=jar", "externalReferences": [ { @@ -56098,12 +57316,14 @@ "content": "eaff23264da39a82cafc86c750afeb9b6719f0013817265e1958d8692c095864cf38258b68ebb522ad89763091074f12dbf4aaf66322ca3cb2546b149f47a32a" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/io.appium/java-client@6.1.0?type=jar", - "externalReferences": [{ - "type": "vcs", - "url": "https://github.com/appium/java-client" - }] + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/appium/java-client" + } + ] }, { "type": "library", @@ -56146,12 +57366,14 @@ "content": "bb0d1e89d42f2d3eb1a6c484ebdd6dce0e4df3252d50fbdb06b7f30dd5129613072a42237328f44540a1fcd3ebd7c177e9286f8a8204912ccc22dca3f14b292f" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.seleniumhq.selenium/selenium-support@3.14.0?type=jar", - "externalReferences": [{ - "type": "vcs", - "url": "https://github.com/SeleniumHQ/selenium/" - }] + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/SeleniumHQ/selenium/" + } + ] }, { "type": "library", @@ -56194,12 +57416,14 @@ "content": "e05e164bbf8d8dbe56de72ef34a577d0ed813494c9fdfac983b3645e333e017679afe5e17bc8c560971978973037c16eef04522fe9034858c02d119ed27ff60d" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.seleniumhq.selenium/selenium-api@3.14.0?type=jar", - "externalReferences": [{ - "type": "vcs", - "url": "https://github.com/SeleniumHQ/selenium/" - }] + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/SeleniumHQ/selenium/" + } + ] }, { "type": "library", @@ -56242,7 +57466,7 @@ "content": "53a5c9263a1d534ebefe9c3bff1e2bf1a293a6171a06f94b298fd9f99df1a20c419faeb64443b3195983c4c6ea4182feba852d4ed9ca4ebda9fcabd9c9c9643d" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/com.google.code.gson/gson@2.8.4?type=jar", "externalReferences": [ { @@ -56300,10 +57524,14 @@ "content": "a8852227e2638dc6a584a120bbb9c7f08553cd705b411aa06c013efc6fc29055e29655178627fe1ac9d2199ca809261f9e9b369beb724f9db14f88c02a7cd179" } ], - "licenses": [{"license": { - "name": "ASF 2.0", - "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" - }}], + "licenses": [ + { + "license": { + "name": "ASF 2.0", + "url": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + } + ], "purl": "pkg:maven/cglib/cglib@3.2.6?type=jar", "externalReferences": [ { @@ -56366,10 +57594,14 @@ "content": "2fcaabbed380e09c40b948d19e40ce53a2d761f5f02e3cc32706fd2bab06b34c1159bf049b39890a7f5dafbef39218c971fe594bbac36415054c6386b8e350c1" } ], - "licenses": [{"license": { - "name": "BSD", - "url": "http://asm.objectweb.org/license.html" - }}], + "licenses": [ + { + "license": { + "name": "BSD", + "url": "http://asm.objectweb.org/license.html" + } + } + ], "purl": "pkg:maven/org.ow2.asm/asm@6.0?type=jar", "externalReferences": [ { @@ -56436,7 +57668,7 @@ "content": "35d964656a0834df34ba84910a5b146341ef78bcfb880546bd7c7ecfc756d0835bfb186f4c0efdec0d57c230a997142dd4b1f756d517c6a92eb33242aafd1a33" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/commons-validator/commons-validator@1.6?type=jar", "externalReferences": [ { @@ -56507,7 +57739,7 @@ "content": "d8207e85c1a11d07fc2a0b25b57a4e1e302069b8c64c40a9da556f4d02032190828b52143063595c76efc0191ccf892e7135b271aa09a02ea46fefda513f22e6" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/commons-beanutils/commons-beanutils@1.9.2?type=jar", "externalReferences": [ { @@ -56578,7 +57810,7 @@ "content": "b41c77af4cc8082e23d6a63895f512b533005c4cd4ec7cde7b5b6fed8cf949d5028b9552f02f14104f00e5f1d89b374633f78c8f02233ade910347bec174b802" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/commons-digester/commons-digester@1.8.1?type=jar", "externalReferences": [ { @@ -56645,7 +57877,7 @@ "content": "9757c982a6e0266117207100633585d7f7bfb3ff0dfbbbb2d30ae070e3afb791ca86888322eda3289153c3dd11174663dae314eb1d9998f6ff720fcc4e4450f6" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework/spring-context@5.0.5.RELEASE?type=jar", "externalReferences": [ { @@ -56704,7 +57936,7 @@ "content": "4b8ccd33ef2427bd2ddb44a201a41ec69b5be79d339ce267dc25c36182d691696643433b1e5e444f114ea4069a466f66dd3e74f67ca8bf286e67198215c7a865" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework/spring-aop@5.0.5.RELEASE?type=jar", "externalReferences": [ { @@ -56763,7 +57995,7 @@ "content": "3a5560a6b6a24c49a93269982f165292de46de5e19b9ce0dfe5b47b5e523802e3f7b634be8e9e27c1579ca483dd4ea9ff8e1af8e02be93373eb19709beda55be" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework/spring-beans@5.0.5.RELEASE?type=jar", "externalReferences": [ { @@ -56822,7 +58054,7 @@ "content": "7df3102e7ad8a2bc7ba76a640ebbd6f847a18467a485657729069483178fdf91163542765bc8d79bc409978998076ecc251ffe922e92ffa6853e7e4dc8aeb6eb" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework/spring-core@5.0.5.RELEASE?type=jar", "externalReferences": [ { @@ -56881,7 +58113,7 @@ "content": "f2797182be24d699ef54da801eda776e37d50746469e7e642bab022535aa353e346286ab31f8c0b6c57a2b3a0d363577785b0ddd3431970ba61bfd58683a766b" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework/spring-jcl@5.0.5.RELEASE?type=jar", "externalReferences": [ { @@ -56940,7 +58172,7 @@ "content": "42aedbbfafc343e9c618a97f4e2bc9d58c99ce92315dc6cdd9d38438fa543e9abb42ddab45dcf405a7b1d4f390fc9c69ea604dc13ecec1b170a148cb9d30ed5c" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.springframework/spring-expression@5.0.5.RELEASE?type=jar", "externalReferences": [ { @@ -56998,12 +58230,14 @@ "content": "7784123083f77826fe81159f1f4063f12ad868c8d63b185c16038a1d8e08e16cbc1d9d3eec42dfb9dbd4c7d586c7a1ed62b6f8da87fd7758af579978f434d8a6" } ], - "licenses": [{"license": {"id": "EPL-1.0"}}], + "licenses": [{ "license": { "id": "EPL-1.0" } }], "purl": "pkg:maven/org.aspectj/aspectjweaver@1.9.1?type=jar", - "externalReferences": [{ - "type": "vcs", - "url": "http://dev.eclipse.org/viewcvs/index.cgi/org.aspectj/?root=Tools_Project" - }] + "externalReferences": [ + { + "type": "vcs", + "url": "http://dev.eclipse.org/viewcvs/index.cgi/org.aspectj/?root=Tools_Project" + } + ] }, { "type": "library", @@ -57046,10 +58280,14 @@ "content": "bb149eab70da5e3bd3c69201721ce5a248c0a31db70bfa7d6ed0b9263e7e37ec968febdc28be2a7a4e5eff14b757380b1f5a62198b4297898c3d44cb4f3bf708" } ], - "licenses": [{"license": { - "name": "BSD License", - "url": "http://github.com/Itseez/opencv/raw/master/LICENSE" - }}], + "licenses": [ + { + "license": { + "name": "BSD License", + "url": "http://github.com/Itseez/opencv/raw/master/LICENSE" + } + } + ], "purl": "pkg:maven/org.openpnp/opencv@3.2.0-1?type=jar", "externalReferences": [ { @@ -57104,10 +58342,14 @@ "content": "06b164164a4daf7c609e27e268bd0777d153f945b1a1d7db4648fe821722c82284d5090cea655b290cfcbbd523d182665add347c9fe582e93f9cee6f27187969" } ], - "licenses": [{"license": { - "name": "GNU Lesser General Public Licence", - "url": "http://www.gnu.org/licenses/lgpl.txt" - }}], + "licenses": [ + { + "license": { + "name": "GNU Lesser General Public Licence", + "url": "http://www.gnu.org/licenses/lgpl.txt" + } + } + ], "purl": "pkg:maven/jfree/jfreechart@1.0.13?type=jar", "externalReferences": [ { @@ -57162,10 +58404,14 @@ "content": "0a2f5f08608118de95b381df825d02cb898b44f074dd02c735f88273cf03e63d4a93d54c0625a134983aca9777b74af49713796670c866335f1d3672bdd115fc" } ], - "licenses": [{"license": { - "name": "GNU Lesser General Public Licence", - "url": "http://www.gnu.org/licenses/lgpl.txt" - }}], + "licenses": [ + { + "license": { + "name": "GNU Lesser General Public Licence", + "url": "http://www.gnu.org/licenses/lgpl.txt" + } + } + ], "purl": "pkg:maven/jfree/jcommon@1.0.16?type=jar", "externalReferences": [ { @@ -57220,7 +58466,7 @@ "content": "5317937b3b3bea0550e111d2fb32b32e15b4ddc998b74270e10a5843e3a20ca5077d950e451df9f9edf73c3cadc449729ab297f42687cce42359b0922138f0b1" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.keycloak.testsuite/integration-arquillian-test-apps-servlets@10.0.2?type=jar", "externalReferences": [ { @@ -57287,7 +58533,7 @@ "content": "ee644b58fff71f2237b81519f98f37a7b061d65b64c8cf4cf3384672c8893746c9292f2d97c7609a342fc2050863c54f27a0c15b78636380696bace627d0cf75" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.ant/ant@1.8.4?type=jar", "externalReferences": [ { @@ -57354,7 +58600,7 @@ "content": "9862c4cffa6c6a2ce49264af0f7a8d11882ee322b24605e6be0735c785423363093d215c4720e1f48e5df0f737397f4c93e2537f06ce7c38a8d6fc21d5a5576f" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.apache.ant/ant-launcher@1.8.4?type=jar", "externalReferences": [ { @@ -57421,7 +58667,7 @@ "content": "7988089954004feff4ac29b53778c41908a2238386b77a8813ca9363b8d12b9ecc1673a3941deffea90f052d38583efb892167252ce4667a56a53bb5268fa162" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.keycloak.testsuite/integration-arquillian-servers-auth-server-undertow@10.0.2?type=jar", "externalReferences": [ { @@ -57530,7 +58776,7 @@ "content": "7d0dea682b5fbee6b3f1fd0a57a065bcf57e6f905e7cbb03c57f87599de32bc0adbdb79b8849328a3aec5eb9f19bd8f4536be9085f836b5b28e75d51d80f8d50" } ], - "licenses": [{"license": {"id": "Apache-2.0"}}], + "licenses": [{ "license": { "id": "Apache-2.0" } }], "purl": "pkg:maven/org.keycloak.testsuite/integration-arquillian-tests-base@10.0.2?type=jar", "externalReferences": [ { @@ -57683,21 +58929,31 @@ } ], "dependencies": [ - {"ref": "pkg:maven/org.bouncycastle/bcprov-jdk15on@1.62?type=jar"}, - {"ref": "pkg:maven/org.bouncycastle/bcpkix-jdk15on@1.62?type=jar"}, - {"ref": "pkg:maven/org.jboss.logging/jboss-logging@3.4.1.Final?type=jar"}, - {"ref": "pkg:maven/com.sun.activation/jakarta.activation@1.2.1?type=jar"}, + { "ref": "pkg:maven/org.bouncycastle/bcprov-jdk15on@1.62?type=jar" }, + { "ref": "pkg:maven/org.bouncycastle/bcpkix-jdk15on@1.62?type=jar" }, + { "ref": "pkg:maven/org.jboss.logging/jboss-logging@3.4.1.Final?type=jar" }, + { "ref": "pkg:maven/com.sun.activation/jakarta.activation@1.2.1?type=jar" }, { "ref": "pkg:maven/org.keycloak/keycloak-common@10.0.2?type=jar", - "dependsOn": ["pkg:maven/com.sun.activation/jakarta.activation@1.2.1?type=jar"] + "dependsOn": [ + "pkg:maven/com.sun.activation/jakarta.activation@1.2.1?type=jar" + ] + }, + { + "ref": "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.10.1?type=jar" }, - {"ref": "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.10.1?type=jar"}, { "ref": "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.10.1?type=jar", - "dependsOn": ["pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.10.1?type=jar"] + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.10.1?type=jar" + ] + }, + { + "ref": "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.10.1?type=jar" + }, + { + "ref": "pkg:maven/org.jboss.spec.javax.transaction/jboss-transaction-api_1.3_spec@2.0.0.Final?type=jar" }, - {"ref": "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.10.1?type=jar"}, - {"ref": "pkg:maven/org.jboss.spec.javax.transaction/jboss-transaction-api_1.3_spec@2.0.0.Final?type=jar"}, { "ref": "pkg:maven/org.jboss.resteasy/resteasy-jaxrs@3.11.2.Final?type=jar", "dependsOn": [ @@ -57711,13 +58967,23 @@ "pkg:maven/com.github.stephenc.jcip/jcip-annotations@1.0-1?type=jar" ] }, - {"ref": "pkg:maven/org.jboss.spec.javax.ws.rs/jboss-jaxrs-api_2.1_spec@2.0.1.Final?type=jar"}, - {"ref": "pkg:maven/org.jboss.spec.javax.xml.bind/jboss-jaxb-api_2.3_spec@2.0.0.Final?type=jar"}, - {"ref": "pkg:maven/org.reactivestreams/reactive-streams@1.0.3?type=jar"}, - {"ref": "pkg:maven/jakarta.validation/jakarta.validation-api@2.0.2?type=jar"}, - {"ref": "pkg:maven/org.jboss.spec.javax.annotation/jboss-annotations-api_1.3_spec@2.0.1.Final?type=jar"}, - {"ref": "pkg:maven/commons-io/commons-io@2.6?type=jar"}, - {"ref": "pkg:maven/com.github.stephenc.jcip/jcip-annotations@1.0-1?type=jar"}, + { + "ref": "pkg:maven/org.jboss.spec.javax.ws.rs/jboss-jaxrs-api_2.1_spec@2.0.1.Final?type=jar" + }, + { + "ref": "pkg:maven/org.jboss.spec.javax.xml.bind/jboss-jaxb-api_2.3_spec@2.0.0.Final?type=jar" + }, + { "ref": "pkg:maven/org.reactivestreams/reactive-streams@1.0.3?type=jar" }, + { + "ref": "pkg:maven/jakarta.validation/jakarta.validation-api@2.0.2?type=jar" + }, + { + "ref": "pkg:maven/org.jboss.spec.javax.annotation/jboss-annotations-api_1.3_spec@2.0.1.Final?type=jar" + }, + { "ref": "pkg:maven/commons-io/commons-io@2.6?type=jar" }, + { + "ref": "pkg:maven/com.github.stephenc.jcip/jcip-annotations@1.0-1?type=jar" + }, { "ref": "pkg:maven/org.keycloak/keycloak-core@10.0.2?type=jar", "dependsOn": [ @@ -57734,10 +59000,10 @@ "pkg:maven/commons-codec/commons-codec@1.11?type=jar" ] }, - {"ref": "pkg:maven/org.apache.httpcomponents/httpcore@4.4.13?type=jar"}, - {"ref": "pkg:maven/commons-logging/commons-logging@1.2?type=jar"}, - {"ref": "pkg:maven/commons-codec/commons-codec@1.11?type=jar"}, - {"ref": "pkg:maven/org.keycloak/keycloak-server-spi@10.0.2?type=jar"}, + { "ref": "pkg:maven/org.apache.httpcomponents/httpcore@4.4.13?type=jar" }, + { "ref": "pkg:maven/commons-logging/commons-logging@1.2?type=jar" }, + { "ref": "pkg:maven/commons-codec/commons-codec@1.11?type=jar" }, + { "ref": "pkg:maven/org.keycloak/keycloak-server-spi@10.0.2?type=jar" }, { "ref": "pkg:maven/com.google.guava/guava@25.0-jre?type=jar", "dependsOn": [ @@ -57748,11 +59014,17 @@ "pkg:maven/org.codehaus.mojo/animal-sniffer-annotations@1.14?type=jar" ] }, - {"ref": "pkg:maven/com.google.code.findbugs/jsr305@1.3.9?type=jar"}, - {"ref": "pkg:maven/org.checkerframework/checker-compat-qual@2.0.0?type=jar"}, - {"ref": "pkg:maven/com.google.errorprone/error_prone_annotations@2.1.3?type=jar"}, - {"ref": "pkg:maven/com.google.j2objc/j2objc-annotations@1.1?type=jar"}, - {"ref": "pkg:maven/org.codehaus.mojo/animal-sniffer-annotations@1.14?type=jar"}, + { "ref": "pkg:maven/com.google.code.findbugs/jsr305@1.3.9?type=jar" }, + { + "ref": "pkg:maven/org.checkerframework/checker-compat-qual@2.0.0?type=jar" + }, + { + "ref": "pkg:maven/com.google.errorprone/error_prone_annotations@2.1.3?type=jar" + }, + { "ref": "pkg:maven/com.google.j2objc/j2objc-annotations@1.1?type=jar" }, + { + "ref": "pkg:maven/org.codehaus.mojo/animal-sniffer-annotations@1.14?type=jar" + }, { "ref": "pkg:maven/com.github.ua-parser/uap-java@1.4.3?type=jar", "dependsOn": [ @@ -57760,13 +59032,15 @@ "pkg:maven/org.apache.commons/commons-collections4@4.1?type=jar" ] }, - {"ref": "pkg:maven/org.yaml/snakeyaml@1.20?type=jar"}, - {"ref": "pkg:maven/org.apache.commons/commons-collections4@4.1?type=jar"}, + { "ref": "pkg:maven/org.yaml/snakeyaml@1.20?type=jar" }, + { "ref": "pkg:maven/org.apache.commons/commons-collections4@4.1?type=jar" }, { "ref": "pkg:maven/org.keycloak/keycloak-server-spi-private@10.0.2?type=jar", "dependsOn": ["pkg:maven/com.github.ua-parser/uap-java@1.4.3?type=jar"] }, - {"ref": "pkg:maven/org.keycloak/keycloak-kerberos-federation@10.0.2?type=jar"}, + { + "ref": "pkg:maven/org.keycloak/keycloak-kerberos-federation@10.0.2?type=jar" + }, { "ref": "pkg:maven/org.apache.santuario/xmlsec@2.1.4?type=jar", "dependsOn": [ @@ -57776,13 +59050,17 @@ "pkg:maven/org.glassfish.jaxb/jaxb-runtime@2.3.2?type=jar" ] }, - {"ref": "pkg:maven/org.slf4j/slf4j-api@1.7.22?type=jar"}, - {"ref": "pkg:maven/commons-codec/commons-codec@1.12?type=jar"}, + { "ref": "pkg:maven/org.slf4j/slf4j-api@1.7.22?type=jar" }, + { "ref": "pkg:maven/commons-codec/commons-codec@1.12?type=jar" }, { "ref": "pkg:maven/jakarta.xml.bind/jakarta.xml.bind-api@2.3.2?type=jar", - "dependsOn": ["pkg:maven/jakarta.activation/jakarta.activation-api@1.2.1?type=jar"] + "dependsOn": [ + "pkg:maven/jakarta.activation/jakarta.activation-api@1.2.1?type=jar" + ] + }, + { + "ref": "pkg:maven/jakarta.activation/jakarta.activation-api@1.2.1?type=jar" }, - {"ref": "pkg:maven/jakarta.activation/jakarta.activation-api@1.2.1?type=jar"}, { "ref": "pkg:maven/org.glassfish.jaxb/jaxb-runtime@2.3.2?type=jar", "dependsOn": [ @@ -57791,14 +59069,18 @@ "pkg:maven/com.sun.xml.fastinfoset/FastInfoset@1.2.16?type=jar" ] }, - {"ref": "pkg:maven/org.glassfish.jaxb/txw2@2.3.2?type=jar"}, - {"ref": "pkg:maven/com.sun.istack/istack-commons-runtime@3.0.10?type=jar"}, - {"ref": "pkg:maven/com.sun.xml.fastinfoset/FastInfoset@1.2.16?type=jar"}, + { "ref": "pkg:maven/org.glassfish.jaxb/txw2@2.3.2?type=jar" }, + { + "ref": "pkg:maven/com.sun.istack/istack-commons-runtime@3.0.10?type=jar" + }, + { "ref": "pkg:maven/com.sun.xml.fastinfoset/FastInfoset@1.2.16?type=jar" }, { "ref": "pkg:maven/javax.xml.bind/jaxb-api@2.4.0-b180830.0359?type=jar", - "dependsOn": ["pkg:maven/javax.activation/javax.activation-api@1.2.0?type=jar"] + "dependsOn": [ + "pkg:maven/javax.activation/javax.activation-api@1.2.0?type=jar" + ] }, - {"ref": "pkg:maven/javax.activation/javax.activation-api@1.2.0?type=jar"}, + { "ref": "pkg:maven/javax.activation/javax.activation-api@1.2.0?type=jar" }, { "ref": "pkg:maven/com.sun.xml.ws/rt@2.3.1?type=jar", "dependsOn": [ @@ -57816,42 +59098,62 @@ "pkg:maven/javax.jws/javax.jws-api@1.1?type=jar" ] }, - {"ref": "pkg:maven/javax.annotation/javax.annotation-api@1.3.2?type=jar"}, + { "ref": "pkg:maven/javax.annotation/javax.annotation-api@1.3.2?type=jar" }, { "ref": "pkg:maven/com.sun.xml.ws/policy@2.7.5?type=jar", - "dependsOn": ["pkg:maven/com.sun.activation/javax.activation@1.2.0?type=jar"] + "dependsOn": [ + "pkg:maven/com.sun.activation/javax.activation@1.2.0?type=jar" + ] }, - {"ref": "pkg:maven/com.sun.activation/javax.activation@1.2.0?type=jar"}, + { "ref": "pkg:maven/com.sun.activation/javax.activation@1.2.0?type=jar" }, { "ref": "pkg:maven/org.glassfish.gmbal/gmbal-api-only@3.1.0-b001?type=jar", - "dependsOn": ["pkg:maven/org.glassfish.external/management-api@3.0.0-b012?type=jar"] - }, - {"ref": "pkg:maven/org.glassfish.external/management-api@3.0.0-b012?type=jar"}, - {"ref": "pkg:maven/org.jvnet.staxex/stax-ex@1.8?type=jar"}, - {"ref": "pkg:maven/com.sun.xml.stream.buffer/streambuffer@1.5.6?type=jar"}, - {"ref": "pkg:maven/org.jvnet.mimepull/mimepull@1.9.10?type=jar"}, - {"ref": "pkg:maven/org.codehaus.woodstox/stax2-api@4.1?type=jar"}, - {"ref": "pkg:maven/org.glassfish.ha/ha-api@3.1.9?type=jar"}, - {"ref": "pkg:maven/com.sun.xml.messaging.saaj/saaj-impl@1.5.0?type=jar"}, - {"ref": "pkg:maven/javax.xml.ws/jaxws-api@2.3.1?type=jar"}, - {"ref": "pkg:maven/javax.xml.soap/javax.xml.soap-api@1.4.0?type=jar"}, - {"ref": "pkg:maven/javax.jws/javax.jws-api@1.1?type=jar"}, - {"ref": "pkg:maven/org.keycloak/keycloak-saml-core-public@10.0.2?type=jar"}, - {"ref": "pkg:maven/org.freemarker/freemarker@2.3.29?type=jar"}, + "dependsOn": [ + "pkg:maven/org.glassfish.external/management-api@3.0.0-b012?type=jar" + ] + }, + { + "ref": "pkg:maven/org.glassfish.external/management-api@3.0.0-b012?type=jar" + }, + { "ref": "pkg:maven/org.jvnet.staxex/stax-ex@1.8?type=jar" }, + { + "ref": "pkg:maven/com.sun.xml.stream.buffer/streambuffer@1.5.6?type=jar" + }, + { "ref": "pkg:maven/org.jvnet.mimepull/mimepull@1.9.10?type=jar" }, + { "ref": "pkg:maven/org.codehaus.woodstox/stax2-api@4.1?type=jar" }, + { "ref": "pkg:maven/org.glassfish.ha/ha-api@3.1.9?type=jar" }, + { "ref": "pkg:maven/com.sun.xml.messaging.saaj/saaj-impl@1.5.0?type=jar" }, + { "ref": "pkg:maven/javax.xml.ws/jaxws-api@2.3.1?type=jar" }, + { "ref": "pkg:maven/javax.xml.soap/javax.xml.soap-api@1.4.0?type=jar" }, + { "ref": "pkg:maven/javax.jws/javax.jws-api@1.1?type=jar" }, + { + "ref": "pkg:maven/org.keycloak/keycloak-saml-core-public@10.0.2?type=jar" + }, + { "ref": "pkg:maven/org.freemarker/freemarker@2.3.29?type=jar" }, { "ref": "pkg:maven/com.sun.mail/jakarta.mail@1.6.4?type=jar", - "dependsOn": ["pkg:maven/com.sun.activation/jakarta.activation@1.2.1?type=jar"] + "dependsOn": [ + "pkg:maven/com.sun.activation/jakarta.activation@1.2.1?type=jar" + ] + }, + { "ref": "pkg:maven/org.glassfish/jakarta.json@1.1.6?type=jar" }, + { + "ref": "pkg:maven/org.keycloak/keycloak-ldap-federation@10.0.2?type=jar" + }, + { + "ref": "pkg:maven/org.jboss.spec.javax.servlet/jboss-servlet-api_4.0_spec@2.0.0.Final?type=jar" + }, + { "ref": "pkg:maven/org.twitter4j/twitter4j-core@4.0.7?type=jar" }, + { + "ref": "pkg:maven/org.jboss.logging/jboss-logging-annotations@2.2.1.Final?type=jar" }, - {"ref": "pkg:maven/org.glassfish/jakarta.json@1.1.6?type=jar"}, - {"ref": "pkg:maven/org.keycloak/keycloak-ldap-federation@10.0.2?type=jar"}, - {"ref": "pkg:maven/org.jboss.spec.javax.servlet/jboss-servlet-api_4.0_spec@2.0.0.Final?type=jar"}, - {"ref": "pkg:maven/org.twitter4j/twitter4j-core@4.0.7?type=jar"}, - {"ref": "pkg:maven/org.jboss.logging/jboss-logging-annotations@2.2.1.Final?type=jar"}, { "ref": "pkg:maven/org.jboss.logging/jboss-logging-processor@2.2.1.Final?type=jar", - "dependsOn": ["pkg:maven/org.jboss.jdeparser/jdeparser@2.0.3.Final?type=jar"] + "dependsOn": [ + "pkg:maven/org.jboss.jdeparser/jdeparser@2.0.3.Final?type=jar" + ] }, - {"ref": "pkg:maven/org.jboss.jdeparser/jdeparser@2.0.3.Final?type=jar"}, + { "ref": "pkg:maven/org.jboss.jdeparser/jdeparser@2.0.3.Final?type=jar" }, { "ref": "pkg:maven/org.jboss.resteasy/resteasy-multipart-provider@3.11.2.Final?type=jar", "dependsOn": [ @@ -57860,10 +59162,14 @@ "pkg:maven/org.apache.james/apache-mime4j@0.6?type=jar" ] }, - {"ref": "pkg:maven/org.jboss.resteasy/resteasy-client@3.11.2.Final?type=jar"}, + { + "ref": "pkg:maven/org.jboss.resteasy/resteasy-client@3.11.2.Final?type=jar" + }, { "ref": "pkg:maven/org.jboss.resteasy/resteasy-jaxb-provider@3.11.2.Final?type=jar", - "dependsOn": ["pkg:maven/org.glassfish.jaxb/jaxb-runtime@2.3.3-b02?type=jar"] + "dependsOn": [ + "pkg:maven/org.glassfish.jaxb/jaxb-runtime@2.3.3-b02?type=jar" + ] }, { "ref": "pkg:maven/org.glassfish.jaxb/jaxb-runtime@2.3.3-b02?type=jar", @@ -57872,8 +59178,8 @@ "pkg:maven/com.sun.istack/istack-commons-runtime@3.0.10?type=jar" ] }, - {"ref": "pkg:maven/org.glassfish.jaxb/txw2@2.3.3-b02?type=jar"}, - {"ref": "pkg:maven/org.apache.james/apache-mime4j@0.6?type=jar"}, + { "ref": "pkg:maven/org.glassfish.jaxb/txw2@2.3.3-b02?type=jar" }, + { "ref": "pkg:maven/org.apache.james/apache-mime4j@0.6?type=jar" }, { "ref": "pkg:maven/com.googlecode.owasp-java-html-sanitizer/owasp-java-html-sanitizer@20191001.1?type=jar", "dependsOn": ["pkg:maven/com.google.guava/guava@25.0-jre?type=jar"] @@ -57885,9 +59191,11 @@ "pkg:maven/com.github.jai-imageio/jai-imageio-core@1.4.0?type=jar" ] }, - {"ref": "pkg:maven/com.google.zxing/core@3.4.0?type=jar"}, - {"ref": "pkg:maven/com.github.jai-imageio/jai-imageio-core@1.4.0?type=jar"}, - {"ref": "pkg:maven/org.keycloak/keycloak-saml-core@10.0.2?type=jar"}, + { "ref": "pkg:maven/com.google.zxing/core@3.4.0?type=jar" }, + { + "ref": "pkg:maven/com.github.jai-imageio/jai-imageio-core@1.4.0?type=jar" + }, + { "ref": "pkg:maven/org.keycloak/keycloak-saml-core@10.0.2?type=jar" }, { "ref": "pkg:maven/com.openshift/openshift-restclient-java@8.0.0.Final?type=jar", "dependsOn": [ @@ -57904,12 +59212,12 @@ "ref": "pkg:maven/com.squareup.okhttp3/okhttp@3.14.2?type=jar", "dependsOn": ["pkg:maven/com.squareup.okio/okio@1.17.2?type=jar"] }, - {"ref": "pkg:maven/com.squareup.okio/okio@1.17.2?type=jar"}, - {"ref": "pkg:maven/org.yaml/snakeyaml@1.14?type=jar"}, - {"ref": "pkg:maven/org.jboss/jboss-dmr@1.5.0.Final?type=jar"}, - {"ref": "pkg:maven/org.apache.commons/commons-compress@1.18?type=jar"}, - {"ref": "pkg:maven/commons-codec/commons-codec@1.6?type=jar"}, - {"ref": "pkg:maven/commons-lang/commons-lang@2.6?type=jar"}, + { "ref": "pkg:maven/com.squareup.okio/okio@1.17.2?type=jar" }, + { "ref": "pkg:maven/org.yaml/snakeyaml@1.14?type=jar" }, + { "ref": "pkg:maven/org.jboss/jboss-dmr@1.5.0.Final?type=jar" }, + { "ref": "pkg:maven/org.apache.commons/commons-compress@1.18?type=jar" }, + { "ref": "pkg:maven/commons-codec/commons-codec@1.6?type=jar" }, + { "ref": "pkg:maven/commons-lang/commons-lang@2.6?type=jar" }, { "ref": "pkg:maven/com.webauthn4j/webauthn4j-core@0.10.2.RELEASE?type=jar", "dependsOn": [ @@ -57919,10 +59227,14 @@ }, { "ref": "pkg:maven/com.webauthn4j/webauthn4j-util@0.10.2.RELEASE?type=jar", - "dependsOn": ["pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-cbor@2.10.1?type=jar"] + "dependsOn": [ + "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-cbor@2.10.1?type=jar" + ] }, - {"ref": "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-cbor@2.10.1?type=jar"}, - {"ref": "pkg:maven/org.apache.kerby/kerby-asn1@2.0.0?type=jar"}, + { + "ref": "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-cbor@2.10.1?type=jar" + }, + { "ref": "pkg:maven/org.apache.kerby/kerby-asn1@2.0.0?type=jar" }, { "ref": "pkg:maven/org.keycloak/keycloak-services@10.0.2?type=jar", "dependsOn": [ @@ -57940,10 +59252,12 @@ "pkg:maven/com.webauthn4j/webauthn4j-core@0.10.2.RELEASE?type=jar" ] }, - {"ref": "pkg:maven/org.keycloak/keycloak-js-adapter@10.0.2?type=jar"}, - {"ref": "pkg:maven/org.keycloak/keycloak-themes@10.0.2?type=jar"}, - {"ref": "pkg:maven/org.liquibase/liquibase-core@3.5.5?type=jar"}, - {"ref": "pkg:maven/jakarta.persistence/jakarta.persistence-api@2.2.3?type=jar"}, + { "ref": "pkg:maven/org.keycloak/keycloak-js-adapter@10.0.2?type=jar" }, + { "ref": "pkg:maven/org.keycloak/keycloak-themes@10.0.2?type=jar" }, + { "ref": "pkg:maven/org.liquibase/liquibase-core@3.5.5?type=jar" }, + { + "ref": "pkg:maven/jakarta.persistence/jakarta.persistence-api@2.2.3?type=jar" + }, { "ref": "pkg:maven/org.hibernate/hibernate-core@5.3.15.Final?type=jar", "dependsOn": [ @@ -57960,14 +59274,18 @@ "pkg:maven/org.glassfish.jaxb/jaxb-runtime@2.3.1?type=jar" ] }, - {"ref": "pkg:maven/javax.persistence/javax.persistence-api@2.2?type=jar"}, - {"ref": "pkg:maven/org.javassist/javassist@3.23.2-GA?type=jar"}, - {"ref": "pkg:maven/net.bytebuddy/byte-buddy@1.9.11?type=jar"}, - {"ref": "pkg:maven/antlr/antlr@2.7.7?type=jar"}, - {"ref": "pkg:maven/org.jboss.spec.javax.transaction/jboss-transaction-api_1.2_spec@1.1.1.Final?type=jar"}, - {"ref": "pkg:maven/org.jboss/jandex@2.0.5.Final?type=jar"}, - {"ref": "pkg:maven/com.fasterxml/classmate@1.3.4?type=jar"}, - {"ref": "pkg:maven/org.hibernate.common/hibernate-commons-annotations@5.0.4.Final?type=jar"}, + { "ref": "pkg:maven/javax.persistence/javax.persistence-api@2.2?type=jar" }, + { "ref": "pkg:maven/org.javassist/javassist@3.23.2-GA?type=jar" }, + { "ref": "pkg:maven/net.bytebuddy/byte-buddy@1.9.11?type=jar" }, + { "ref": "pkg:maven/antlr/antlr@2.7.7?type=jar" }, + { + "ref": "pkg:maven/org.jboss.spec.javax.transaction/jboss-transaction-api_1.2_spec@1.1.1.Final?type=jar" + }, + { "ref": "pkg:maven/org.jboss/jandex@2.0.5.Final?type=jar" }, + { "ref": "pkg:maven/com.fasterxml/classmate@1.3.4?type=jar" }, + { + "ref": "pkg:maven/org.hibernate.common/hibernate-commons-annotations@5.0.4.Final?type=jar" + }, { "ref": "pkg:maven/org.glassfish.jaxb/jaxb-runtime@2.3.1?type=jar", "dependsOn": [ @@ -57977,8 +59295,8 @@ "pkg:maven/com.sun.xml.fastinfoset/FastInfoset@1.2.15?type=jar" ] }, - {"ref": "pkg:maven/org.glassfish.jaxb/txw2@2.3.1?type=jar"}, - {"ref": "pkg:maven/com.sun.xml.fastinfoset/FastInfoset@1.2.15?type=jar"}, + { "ref": "pkg:maven/org.glassfish.jaxb/txw2@2.3.1?type=jar" }, + { "ref": "pkg:maven/com.sun.xml.fastinfoset/FastInfoset@1.2.15?type=jar" }, { "ref": "pkg:maven/org.infinispan/infinispan-core@9.4.18.Final?type=jar", "dependsOn": [ @@ -57991,15 +59309,23 @@ "pkg:maven/io.reactivex.rxjava2/rxjava@2.2.4?type=jar" ] }, - {"ref": "pkg:maven/org.infinispan/infinispan-commons@9.4.18.Final?type=jar"}, - {"ref": "pkg:maven/org.jgroups/jgroups@4.0.21.Final?type=jar"}, - {"ref": "pkg:maven/com.github.ben-manes.caffeine/caffeine@2.6.2?type=jar"}, - {"ref": "pkg:maven/org.jboss.marshalling/jboss-marshalling-osgi@2.0.6.Final?type=jar"}, + { + "ref": "pkg:maven/org.infinispan/infinispan-commons@9.4.18.Final?type=jar" + }, + { "ref": "pkg:maven/org.jgroups/jgroups@4.0.21.Final?type=jar" }, + { + "ref": "pkg:maven/com.github.ben-manes.caffeine/caffeine@2.6.2?type=jar" + }, + { + "ref": "pkg:maven/org.jboss.marshalling/jboss-marshalling-osgi@2.0.6.Final?type=jar" + }, { "ref": "pkg:maven/io.reactivex.rxjava2/rxjava@2.2.4?type=jar", - "dependsOn": ["pkg:maven/org.reactivestreams/reactive-streams@1.0.2?type=jar"] + "dependsOn": [ + "pkg:maven/org.reactivestreams/reactive-streams@1.0.2?type=jar" + ] }, - {"ref": "pkg:maven/org.reactivestreams/reactive-streams@1.0.2?type=jar"}, + { "ref": "pkg:maven/org.reactivestreams/reactive-streams@1.0.2?type=jar" }, { "ref": "pkg:maven/org.infinispan/infinispan-cachestore-remote@9.4.18.Final?type=jar", "dependsOn": [ @@ -58024,22 +59350,28 @@ "pkg:maven/io.netty/netty-codec@4.1.45.Final?type=jar" ] }, - {"ref": "pkg:maven/io.netty/netty-common@4.1.45.Final?type=jar"}, - {"ref": "pkg:maven/io.netty/netty-buffer@4.1.45.Final?type=jar"}, + { "ref": "pkg:maven/io.netty/netty-common@4.1.45.Final?type=jar" }, + { "ref": "pkg:maven/io.netty/netty-buffer@4.1.45.Final?type=jar" }, { "ref": "pkg:maven/io.netty/netty-transport@4.1.45.Final?type=jar", "dependsOn": ["pkg:maven/io.netty/netty-resolver@4.1.45.Final?type=jar"] }, - {"ref": "pkg:maven/io.netty/netty-resolver@4.1.45.Final?type=jar"}, - {"ref": "pkg:maven/io.netty/netty-codec@4.1.45.Final?type=jar"}, + { "ref": "pkg:maven/io.netty/netty-resolver@4.1.45.Final?type=jar" }, + { "ref": "pkg:maven/io.netty/netty-codec@4.1.45.Final?type=jar" }, { "ref": "pkg:maven/io.netty/netty-transport-native-epoll@4.1.45.Final?classifier=linux-x86_64&type=jar", - "dependsOn": ["pkg:maven/io.netty/netty-transport-native-unix-common@4.1.45.Final?type=jar"] + "dependsOn": [ + "pkg:maven/io.netty/netty-transport-native-unix-common@4.1.45.Final?type=jar" + ] + }, + { + "ref": "pkg:maven/io.netty/netty-transport-native-unix-common@4.1.45.Final?type=jar" + }, + { "ref": "pkg:maven/com.google.code.gson/gson@2.8.2?type=jar" }, + { + "ref": "pkg:maven/org.infinispan/infinispan-multimap@9.4.18.Final?type=jar" }, - {"ref": "pkg:maven/io.netty/netty-transport-native-unix-common@4.1.45.Final?type=jar"}, - {"ref": "pkg:maven/com.google.code.gson/gson@2.8.2?type=jar"}, - {"ref": "pkg:maven/org.infinispan/infinispan-multimap@9.4.18.Final?type=jar"}, - {"ref": "pkg:maven/net.java.dev.jna/jna@4.1.0?type=jar"}, + { "ref": "pkg:maven/net.java.dev.jna/jna@4.1.0?type=jar" }, { "ref": "pkg:maven/org.keycloak/keycloak-dependencies-server-min@10.0.2?type=pom", "dependsOn": [ @@ -58070,10 +59402,14 @@ "pkg:maven/org.infinispan/infinispan-cachestore-remote@9.4.18.Final?type=jar" ] }, - {"ref": "pkg:maven/org.keycloak/keycloak-sssd-federation@10.0.2?type=jar"}, - {"ref": "pkg:maven/org.keycloak/keycloak-authz-policy-common@10.0.2?type=jar"}, - {"ref": "pkg:maven/log4j/log4j@1.2.17?type=jar"}, - {"ref": "pkg:maven/org.slf4j/slf4j-log4j12@1.7.22?type=jar"}, + { + "ref": "pkg:maven/org.keycloak/keycloak-sssd-federation@10.0.2?type=jar" + }, + { + "ref": "pkg:maven/org.keycloak/keycloak-authz-policy-common@10.0.2?type=jar" + }, + { "ref": "pkg:maven/log4j/log4j@1.2.17?type=jar" }, + { "ref": "pkg:maven/org.slf4j/slf4j-log4j12@1.7.22?type=jar" }, { "ref": "pkg:maven/org.apache.directory.server/apacheds-core-annotations@2.0.0-M24?type=jar", "dependsOn": [ @@ -58113,26 +59449,60 @@ "pkg:maven/org.apache.directory.api/api-ldap-extras-util@1.0.0?type=jar" ] }, - {"ref": "pkg:maven/org.apache.directory.server/apacheds-interceptors-admin@2.0.0-M24?type=jar"}, - {"ref": "pkg:maven/org.apache.directory.server/apacheds-interceptors-authn@2.0.0-M24?type=jar"}, - {"ref": "pkg:maven/org.apache.directory.server/apacheds-interceptors-number@2.0.0-M24?type=jar"}, - {"ref": "pkg:maven/org.apache.directory.server/apacheds-interceptors-authz@2.0.0-M24?type=jar"}, - {"ref": "pkg:maven/org.apache.directory.server/apacheds-interceptors-changelog@2.0.0-M24?type=jar"}, - {"ref": "pkg:maven/org.apache.directory.server/apacheds-interceptors-collective@2.0.0-M24?type=jar"}, - {"ref": "pkg:maven/org.apache.directory.server/apacheds-interceptors-event@2.0.0-M24?type=jar"}, - {"ref": "pkg:maven/org.apache.directory.server/apacheds-interceptors-exception@2.0.0-M24?type=jar"}, - {"ref": "pkg:maven/org.apache.directory.server/apacheds-interceptors-journal@2.0.0-M24?type=jar"}, - {"ref": "pkg:maven/org.apache.directory.server/apacheds-interceptors-normalization@2.0.0-M24?type=jar"}, - {"ref": "pkg:maven/org.apache.directory.server/apacheds-interceptors-operational@2.0.0-M24?type=jar"}, - {"ref": "pkg:maven/org.apache.directory.server/apacheds-interceptors-referral@2.0.0-M24?type=jar"}, - {"ref": "pkg:maven/org.apache.directory.server/apacheds-interceptors-schema@2.0.0-M24?type=jar"}, - {"ref": "pkg:maven/org.apache.directory.server/apacheds-interceptors-subtree@2.0.0-M24?type=jar"}, + { + "ref": "pkg:maven/org.apache.directory.server/apacheds-interceptors-admin@2.0.0-M24?type=jar" + }, + { + "ref": "pkg:maven/org.apache.directory.server/apacheds-interceptors-authn@2.0.0-M24?type=jar" + }, + { + "ref": "pkg:maven/org.apache.directory.server/apacheds-interceptors-number@2.0.0-M24?type=jar" + }, + { + "ref": "pkg:maven/org.apache.directory.server/apacheds-interceptors-authz@2.0.0-M24?type=jar" + }, + { + "ref": "pkg:maven/org.apache.directory.server/apacheds-interceptors-changelog@2.0.0-M24?type=jar" + }, + { + "ref": "pkg:maven/org.apache.directory.server/apacheds-interceptors-collective@2.0.0-M24?type=jar" + }, + { + "ref": "pkg:maven/org.apache.directory.server/apacheds-interceptors-event@2.0.0-M24?type=jar" + }, + { + "ref": "pkg:maven/org.apache.directory.server/apacheds-interceptors-exception@2.0.0-M24?type=jar" + }, + { + "ref": "pkg:maven/org.apache.directory.server/apacheds-interceptors-journal@2.0.0-M24?type=jar" + }, + { + "ref": "pkg:maven/org.apache.directory.server/apacheds-interceptors-normalization@2.0.0-M24?type=jar" + }, + { + "ref": "pkg:maven/org.apache.directory.server/apacheds-interceptors-operational@2.0.0-M24?type=jar" + }, + { + "ref": "pkg:maven/org.apache.directory.server/apacheds-interceptors-referral@2.0.0-M24?type=jar" + }, + { + "ref": "pkg:maven/org.apache.directory.server/apacheds-interceptors-schema@2.0.0-M24?type=jar" + }, + { + "ref": "pkg:maven/org.apache.directory.server/apacheds-interceptors-subtree@2.0.0-M24?type=jar" + }, { "ref": "pkg:maven/org.apache.directory.server/apacheds-interceptors-trigger@2.0.0-M24?type=jar", - "dependsOn": ["pkg:maven/org.apache.directory.api/api-ldap-extras-trigger@1.0.0?type=jar"] + "dependsOn": [ + "pkg:maven/org.apache.directory.api/api-ldap-extras-trigger@1.0.0?type=jar" + ] + }, + { + "ref": "pkg:maven/org.apache.directory.api/api-ldap-extras-trigger@1.0.0?type=jar" + }, + { + "ref": "pkg:maven/org.apache.directory.api/api-ldap-extras-util@1.0.0?type=jar" }, - {"ref": "pkg:maven/org.apache.directory.api/api-ldap-extras-trigger@1.0.0?type=jar"}, - {"ref": "pkg:maven/org.apache.directory.api/api-ldap-extras-util@1.0.0?type=jar"}, { "ref": "pkg:maven/org.apache.directory.server/apacheds-core-api@2.0.0-M24?type=jar", "dependsOn": [ @@ -58143,15 +59513,19 @@ "pkg:maven/net.sf.ehcache/ehcache@2.10.4?type=jar" ] }, - {"ref": "pkg:maven/org.apache.directory.server/apacheds-core-constants@2.0.0-M24?type=jar"}, - {"ref": "pkg:maven/org.apache.directory.api/api-i18n@1.0.0?type=jar"}, + { + "ref": "pkg:maven/org.apache.directory.server/apacheds-core-constants@2.0.0-M24?type=jar" + }, + { "ref": "pkg:maven/org.apache.directory.api/api-i18n@1.0.0?type=jar" }, { "ref": "pkg:maven/org.apache.directory.api/api-ldap-client-api@1.0.0?type=jar", "dependsOn": ["pkg:maven/commons-pool/commons-pool@1.6?type=jar"] }, - {"ref": "pkg:maven/commons-pool/commons-pool@1.6?type=jar"}, - {"ref": "pkg:maven/org.apache.directory.api/api-ldap-extras-aci@1.0.0?type=jar"}, - {"ref": "pkg:maven/net.sf.ehcache/ehcache@2.10.4?type=jar"}, + { "ref": "pkg:maven/commons-pool/commons-pool@1.6?type=jar" }, + { + "ref": "pkg:maven/org.apache.directory.api/api-ldap-extras-aci@1.0.0?type=jar" + }, + { "ref": "pkg:maven/net.sf.ehcache/ehcache@2.10.4?type=jar" }, { "ref": "pkg:maven/org.apache.directory.server/apacheds-core-shared@2.0.0-M24?type=jar", "dependsOn": [ @@ -58159,22 +59533,42 @@ "pkg:maven/org.apache.directory.jdbm/apacheds-jdbm1@2.0.0-M3?type=jar" ] }, - {"ref": "pkg:maven/org.apache.directory.api/api-ldap-extras-codec-api@1.0.0?type=jar"}, - {"ref": "pkg:maven/org.apache.directory.jdbm/apacheds-jdbm1@2.0.0-M3?type=jar"}, - {"ref": "pkg:maven/org.apache.directory.server/apacheds-ldif-partition@2.0.0-M24?type=jar"}, - {"ref": "pkg:maven/org.apache.directory.server/apacheds-i18n@2.0.0-M24?type=jar"}, + { + "ref": "pkg:maven/org.apache.directory.api/api-ldap-extras-codec-api@1.0.0?type=jar" + }, + { + "ref": "pkg:maven/org.apache.directory.jdbm/apacheds-jdbm1@2.0.0-M3?type=jar" + }, + { + "ref": "pkg:maven/org.apache.directory.server/apacheds-ldif-partition@2.0.0-M24?type=jar" + }, + { + "ref": "pkg:maven/org.apache.directory.server/apacheds-i18n@2.0.0-M24?type=jar" + }, { "ref": "pkg:maven/org.apache.directory.server/apacheds-jdbm-partition@2.0.0-M24?type=jar", - "dependsOn": ["pkg:maven/org.apache.directory.server/apacheds-core-avl@2.0.0-M24?type=jar"] + "dependsOn": [ + "pkg:maven/org.apache.directory.server/apacheds-core-avl@2.0.0-M24?type=jar" + ] + }, + { + "ref": "pkg:maven/org.apache.directory.server/apacheds-core-avl@2.0.0-M24?type=jar" }, - {"ref": "pkg:maven/org.apache.directory.server/apacheds-core-avl@2.0.0-M24?type=jar"}, { "ref": "pkg:maven/org.apache.directory.server/apacheds-xdbm-partition@2.0.0-M24?type=jar", - "dependsOn": ["pkg:maven/commons-collections/commons-collections@3.2.2?type=jar"] + "dependsOn": [ + "pkg:maven/commons-collections/commons-collections@3.2.2?type=jar" + ] + }, + { + "ref": "pkg:maven/commons-collections/commons-collections@3.2.2?type=jar" + }, + { + "ref": "pkg:maven/org.apache.directory.mavibot/mavibot@1.0.0-M8?type=jar" + }, + { + "ref": "pkg:maven/org.apache.directory.server/apacheds-mavibot-partition@2.0.0-M24?type=jar" }, - {"ref": "pkg:maven/commons-collections/commons-collections@3.2.2?type=jar"}, - {"ref": "pkg:maven/org.apache.directory.mavibot/mavibot@1.0.0-M8?type=jar"}, - {"ref": "pkg:maven/org.apache.directory.server/apacheds-mavibot-partition@2.0.0-M24?type=jar"}, { "ref": "pkg:maven/org.apache.directory.api/api-ldap-model@1.0.0?type=jar", "dependsOn": [ @@ -58183,11 +59577,15 @@ "pkg:maven/commons-codec/commons-codec@1.10?type=jar" ] }, - {"ref": "pkg:maven/org.apache.directory.api/api-asn1-ber@1.0.0?type=jar"}, - {"ref": "pkg:maven/org.apache.servicemix.bundles/org.apache.servicemix.bundles.antlr@2.7.7_5?type=jar"}, - {"ref": "pkg:maven/commons-codec/commons-codec@1.10?type=jar"}, - {"ref": "pkg:maven/org.apache.directory.api/api-ldap-schema-data@1.0.0?type=jar"}, - {"ref": "pkg:maven/org.apache.directory.api/api-util@1.0.0?type=jar"}, + { "ref": "pkg:maven/org.apache.directory.api/api-asn1-ber@1.0.0?type=jar" }, + { + "ref": "pkg:maven/org.apache.servicemix.bundles/org.apache.servicemix.bundles.antlr@2.7.7_5?type=jar" + }, + { "ref": "pkg:maven/commons-codec/commons-codec@1.10?type=jar" }, + { + "ref": "pkg:maven/org.apache.directory.api/api-ldap-schema-data@1.0.0?type=jar" + }, + { "ref": "pkg:maven/org.apache.directory.api/api-util@1.0.0?type=jar" }, { "ref": "pkg:maven/org.apache.directory.server/apacheds-interceptor-kerberos@2.0.0-M24?type=jar", "dependsOn": [ @@ -58195,8 +59593,10 @@ "pkg:maven/org.apache.directory.api/api-asn1-api@1.0.0?type=jar" ] }, - {"ref": "pkg:maven/org.apache.directory.server/apacheds-kerberos-codec@2.0.0-M24?type=jar"}, - {"ref": "pkg:maven/org.apache.directory.api/api-asn1-api@1.0.0?type=jar"}, + { + "ref": "pkg:maven/org.apache.directory.server/apacheds-kerberos-codec@2.0.0-M24?type=jar" + }, + { "ref": "pkg:maven/org.apache.directory.api/api-asn1-api@1.0.0?type=jar" }, { "ref": "pkg:maven/org.apache.directory.server/apacheds-server-annotations@2.0.0-M24?type=jar", "dependsOn": [ @@ -58207,15 +59607,25 @@ "pkg:maven/org.apache.mina/mina-core@2.0.16?type=jar" ] }, - {"ref": "pkg:maven/org.apache.directory.server/apacheds-protocol-kerberos@2.0.0-M24?type=jar"}, + { + "ref": "pkg:maven/org.apache.directory.server/apacheds-protocol-kerberos@2.0.0-M24?type=jar" + }, { "ref": "pkg:maven/org.apache.directory.server/apacheds-protocol-ldap@2.0.0-M24?type=jar", - "dependsOn": ["pkg:maven/org.apache.directory.api/api-ldap-extras-sp@1.0.0?type=jar"] + "dependsOn": [ + "pkg:maven/org.apache.directory.api/api-ldap-extras-sp@1.0.0?type=jar" + ] }, - {"ref": "pkg:maven/org.apache.directory.api/api-ldap-extras-sp@1.0.0?type=jar"}, - {"ref": "pkg:maven/org.apache.directory.server/apacheds-protocol-shared@2.0.0-M24?type=jar"}, - {"ref": "pkg:maven/org.apache.directory.api/api-ldap-codec-core@1.0.0?type=jar"}, - {"ref": "pkg:maven/org.apache.mina/mina-core@2.0.16?type=jar"}, + { + "ref": "pkg:maven/org.apache.directory.api/api-ldap-extras-sp@1.0.0?type=jar" + }, + { + "ref": "pkg:maven/org.apache.directory.server/apacheds-protocol-shared@2.0.0-M24?type=jar" + }, + { + "ref": "pkg:maven/org.apache.directory.api/api-ldap-codec-core@1.0.0?type=jar" + }, + { "ref": "pkg:maven/org.apache.mina/mina-core@2.0.16?type=jar" }, { "ref": "pkg:maven/org.apache.directory.api/api-ldap-codec-standalone@1.0.0?type=jar", "dependsOn": [ @@ -58223,8 +59633,12 @@ "pkg:maven/org.apache.directory.api/api-ldap-extras-codec@1.0.0?type=jar" ] }, - {"ref": "pkg:maven/org.apache.directory.api/api-ldap-net-mina@1.0.0?type=jar"}, - {"ref": "pkg:maven/org.apache.directory.api/api-ldap-extras-codec@1.0.0?type=jar"}, + { + "ref": "pkg:maven/org.apache.directory.api/api-ldap-net-mina@1.0.0?type=jar" + }, + { + "ref": "pkg:maven/org.apache.directory.api/api-ldap-extras-codec@1.0.0?type=jar" + }, { "ref": "pkg:maven/org.wildfly.core/wildfly-domain-management@11.1.1.Final?type=jar", "dependsOn": [ @@ -58238,10 +59652,12 @@ }, { "ref": "pkg:maven/org.jboss.msc/jboss-msc@1.4.11.Final?type=jar", - "dependsOn": ["pkg:maven/org.jboss.threads/jboss-threads@2.3.2.Final?type=jar"] + "dependsOn": [ + "pkg:maven/org.jboss.threads/jboss-threads@2.3.2.Final?type=jar" + ] }, - {"ref": "pkg:maven/org.jboss.threads/jboss-threads@2.3.2.Final?type=jar"}, - {"ref": "pkg:maven/org.picketbox/picketbox@5.0.3.Final?type=jar"}, + { "ref": "pkg:maven/org.jboss.threads/jboss-threads@2.3.2.Final?type=jar" }, + { "ref": "pkg:maven/org.picketbox/picketbox@5.0.3.Final?type=jar" }, { "ref": "pkg:maven/org.wildfly.core/wildfly-controller@11.1.1.Final?type=jar", "dependsOn": [ @@ -58258,7 +59674,9 @@ }, { "ref": "pkg:maven/org.wildfly.core/wildfly-controller-client@11.1.1.Final?type=jar", - "dependsOn": ["pkg:maven/org.wildfly.core/wildfly-protocol@11.1.1.Final?type=jar"] + "dependsOn": [ + "pkg:maven/org.wildfly.core/wildfly-protocol@11.1.1.Final?type=jar" + ] }, { "ref": "pkg:maven/org.wildfly.core/wildfly-protocol@11.1.1.Final?type=jar", @@ -58270,22 +59688,36 @@ }, { "ref": "pkg:maven/org.jboss.remoting/jboss-remoting@5.0.17.Final?type=jar", - "dependsOn": ["pkg:maven/org.wildfly.client/wildfly-client-config@1.0.0.CR2?type=jar"] - }, - {"ref": "pkg:maven/org.wildfly.client/wildfly-client-config@1.0.0.CR2?type=jar"}, - {"ref": "pkg:maven/org.jboss.xnio/xnio-api@3.7.7.Final?type=jar"}, - {"ref": "pkg:maven/org.jboss.xnio/xnio-nio@3.7.7.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.security/wildfly-elytron@1.11.4.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.core/wildfly-version@11.1.1.Final?type=jar"}, - {"ref": "pkg:maven/org.jboss.modules/jboss-modules@1.10.0.Final?type=jar"}, - {"ref": "pkg:maven/org.jboss.logmanager/jboss-logmanager@2.1.14.Final?type=jar"}, - {"ref": "pkg:maven/org.jboss/staxmapper@1.3.0.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.common/wildfly-common@1.5.2.Final?type=jar"}, + "dependsOn": [ + "pkg:maven/org.wildfly.client/wildfly-client-config@1.0.0.CR2?type=jar" + ] + }, + { + "ref": "pkg:maven/org.wildfly.client/wildfly-client-config@1.0.0.CR2?type=jar" + }, + { "ref": "pkg:maven/org.jboss.xnio/xnio-api@3.7.7.Final?type=jar" }, + { "ref": "pkg:maven/org.jboss.xnio/xnio-nio@3.7.7.Final?type=jar" }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron@1.11.4.Final?type=jar" + }, + { + "ref": "pkg:maven/org.wildfly.core/wildfly-version@11.1.1.Final?type=jar" + }, + { + "ref": "pkg:maven/org.jboss.modules/jboss-modules@1.10.0.Final?type=jar" + }, + { + "ref": "pkg:maven/org.jboss.logmanager/jboss-logmanager@2.1.14.Final?type=jar" + }, + { "ref": "pkg:maven/org.jboss/staxmapper@1.3.0.Final?type=jar" }, + { + "ref": "pkg:maven/org.wildfly.common/wildfly-common@1.5.2.Final?type=jar" + }, { "ref": "pkg:maven/org.projectodd.vdx/vdx-wildfly@1.1.6?type=jar", "dependsOn": ["pkg:maven/org.projectodd.vdx/vdx-core@1.1.6?type=jar"] }, - {"ref": "pkg:maven/org.projectodd.vdx/vdx-core@1.1.6?type=jar"}, + { "ref": "pkg:maven/org.projectodd.vdx/vdx-core@1.1.6?type=jar" }, { "ref": "pkg:maven/org.eclipse.jgit/org.eclipse.jgit@5.0.2.201807311906-r?type=jar", "dependsOn": [ @@ -58294,14 +59726,18 @@ "pkg:maven/com.googlecode.javaewah/JavaEWAH@1.1.6?type=jar" ] }, - {"ref": "pkg:maven/com.jcraft/jsch@0.1.54?type=jar"}, - {"ref": "pkg:maven/com.jcraft/jzlib@1.1.1?type=jar"}, - {"ref": "pkg:maven/com.googlecode.javaewah/JavaEWAH@1.1.6?type=jar"}, + { "ref": "pkg:maven/com.jcraft/jsch@0.1.54?type=jar" }, + { "ref": "pkg:maven/com.jcraft/jzlib@1.1.1?type=jar" }, + { "ref": "pkg:maven/com.googlecode.javaewah/JavaEWAH@1.1.6?type=jar" }, { "ref": "pkg:maven/org.wildfly.core/wildfly-core-security@11.1.1.Final?type=jar", - "dependsOn": ["pkg:maven/org.wildfly.core/wildfly-core-security-api@11.1.1.Final?type=jar"] + "dependsOn": [ + "pkg:maven/org.wildfly.core/wildfly-core-security-api@11.1.1.Final?type=jar" + ] + }, + { + "ref": "pkg:maven/org.wildfly.core/wildfly-core-security-api@11.1.1.Final?type=jar" }, - {"ref": "pkg:maven/org.wildfly.core/wildfly-core-security-api@11.1.1.Final?type=jar"}, { "ref": "pkg:maven/org.aesh/aesh@2.4?type=jar", "dependsOn": ["pkg:maven/org.aesh/readline@2.0?type=jar"] @@ -58310,8 +59746,8 @@ "ref": "pkg:maven/org.aesh/readline@2.0?type=jar", "dependsOn": ["pkg:maven/org.fusesource.jansi/jansi@1.18?type=jar"] }, - {"ref": "pkg:maven/org.fusesource.jansi/jansi@1.18?type=jar"}, - {"ref": "pkg:maven/org.jboss.threads/jboss-threads@2.3.3.Final?type=jar"}, + { "ref": "pkg:maven/org.fusesource.jansi/jansi@1.18?type=jar" }, + { "ref": "pkg:maven/org.jboss.threads/jboss-threads@2.3.3.Final?type=jar" }, { "ref": "pkg:maven/org.wildfly.core/wildfly-server@11.1.1.Final?type=jar", "dependsOn": [ @@ -58335,7 +59771,9 @@ "pkg:maven/com.jcraft/jsch@0.1.54?type=jar" ] }, - {"ref": "pkg:maven/org.wildfly.core/wildfly-core-management-client@11.1.1.Final?type=jar"}, + { + "ref": "pkg:maven/org.wildfly.core/wildfly-core-management-client@11.1.1.Final?type=jar" + }, { "ref": "pkg:maven/org.wildfly.core/wildfly-domain-http-interface@11.1.1.Final?type=jar", "dependsOn": [ @@ -58343,10 +59781,18 @@ "pkg:maven/org.wildfly.security.elytron-web/undertow-server@1.7.1.Final?type=jar" ] }, - {"ref": "pkg:maven/org.wildfly.security.elytron-web/undertow-server@1.7.1.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.core/wildfly-deployment-repository@11.1.1.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.core/wildfly-platform-mbean@11.1.1.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.core/wildfly-process-controller@11.1.1.Final?type=jar"}, + { + "ref": "pkg:maven/org.wildfly.security.elytron-web/undertow-server@1.7.1.Final?type=jar" + }, + { + "ref": "pkg:maven/org.wildfly.core/wildfly-deployment-repository@11.1.1.Final?type=jar" + }, + { + "ref": "pkg:maven/org.wildfly.core/wildfly-platform-mbean@11.1.1.Final?type=jar" + }, + { + "ref": "pkg:maven/org.wildfly.core/wildfly-process-controller@11.1.1.Final?type=jar" + }, { "ref": "pkg:maven/org.wildfly.core/wildfly-remoting@11.1.1.Final?type=jar", "dependsOn": [ @@ -58354,19 +59800,27 @@ "pkg:maven/org.jboss.xnio/xnio-api@3.7.7.Final?type=jar" ] }, - {"ref": "pkg:maven/org.wildfly.core/wildfly-io@11.1.1.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.core/wildfly-network@11.1.1.Final?type=jar"}, - {"ref": "pkg:maven/org.jboss/jandex@2.1.2.Final?type=jar"}, - {"ref": "pkg:maven/org.jboss.classfilewriter/jboss-classfilewriter@1.2.4.Final?type=jar"}, - {"ref": "pkg:maven/org.jboss.invocation/jboss-invocation@1.5.2.Final?type=jar"}, - {"ref": "pkg:maven/org.jboss.marshalling/jboss-marshalling@2.0.9.Final?type=jar"}, - {"ref": "pkg:maven/org.jboss.stdio/jboss-stdio@1.1.0.Final?type=jar"}, - {"ref": "pkg:maven/org.jboss/jboss-vfs@3.2.15.Final?type=jar"}, + { "ref": "pkg:maven/org.wildfly.core/wildfly-io@11.1.1.Final?type=jar" }, + { + "ref": "pkg:maven/org.wildfly.core/wildfly-network@11.1.1.Final?type=jar" + }, + { "ref": "pkg:maven/org.jboss/jandex@2.1.2.Final?type=jar" }, + { + "ref": "pkg:maven/org.jboss.classfilewriter/jboss-classfilewriter@1.2.4.Final?type=jar" + }, + { + "ref": "pkg:maven/org.jboss.invocation/jboss-invocation@1.5.2.Final?type=jar" + }, + { + "ref": "pkg:maven/org.jboss.marshalling/jboss-marshalling@2.0.9.Final?type=jar" + }, + { "ref": "pkg:maven/org.jboss.stdio/jboss-stdio@1.1.0.Final?type=jar" }, + { "ref": "pkg:maven/org.jboss/jboss-vfs@3.2.15.Final?type=jar" }, { "ref": "pkg:maven/io.undertow/undertow-core@2.1.0.Final?type=jar", "dependsOn": ["pkg:maven/org.jboss.xnio/xnio-nio@3.8.0.Final?type=jar"] }, - {"ref": "pkg:maven/org.jboss.xnio/xnio-nio@3.8.0.Final?type=jar"}, + { "ref": "pkg:maven/org.jboss.xnio/xnio-nio@3.8.0.Final?type=jar" }, { "ref": "pkg:maven/org.wildfly/wildfly-web-common@19.1.0.Final?type=jar", "dependsOn": [ @@ -58391,10 +59845,18 @@ "pkg:maven/org.jboss.spec.javax.el/jboss-el-api_3.0_spec@2.0.0.Final?type=jar" ] }, - {"ref": "pkg:maven/org.glassfish/jakarta.enterprise.concurrent@1.1.1?type=jar"}, - {"ref": "pkg:maven/org.jboss.metadata/jboss-metadata-ear@13.0.0.Final?type=jar"}, - {"ref": "pkg:maven/org.jboss.spec.javax.enterprise.concurrent/jboss-concurrency-api_1.0_spec@2.0.0.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.core/wildfly-request-controller@11.1.1.Final?type=jar"}, + { + "ref": "pkg:maven/org.glassfish/jakarta.enterprise.concurrent@1.1.1?type=jar" + }, + { + "ref": "pkg:maven/org.jboss.metadata/jboss-metadata-ear@13.0.0.Final?type=jar" + }, + { + "ref": "pkg:maven/org.jboss.spec.javax.enterprise.concurrent/jboss-concurrency-api_1.0_spec@2.0.0.Final?type=jar" + }, + { + "ref": "pkg:maven/org.wildfly.core/wildfly-request-controller@11.1.1.Final?type=jar" + }, { "ref": "pkg:maven/org.wildfly/wildfly-naming@19.1.0.Final?type=jar", "dependsOn": [ @@ -58404,9 +59866,13 @@ }, { "ref": "pkg:maven/org.wildfly/wildfly-naming-client@1.0.12.Final?type=jar", - "dependsOn": ["pkg:maven/org.jboss.marshalling/jboss-marshalling-river@2.0.0.Final?type=jar"] + "dependsOn": [ + "pkg:maven/org.jboss.marshalling/jboss-marshalling-river@2.0.0.Final?type=jar" + ] + }, + { + "ref": "pkg:maven/org.jboss.marshalling/jboss-marshalling-river@2.0.0.Final?type=jar" }, - {"ref": "pkg:maven/org.jboss.marshalling/jboss-marshalling-river@2.0.0.Final?type=jar"}, { "ref": "pkg:maven/org.wildfly.wildfly-http-client/wildfly-http-naming-client@1.0.20.Final?type=jar", "dependsOn": [ @@ -58414,14 +59880,30 @@ "pkg:maven/org.jboss.spec.javax.ejb/jboss-ejb-api_3.2_spec@1.0.0.Final?type=jar" ] }, - {"ref": "pkg:maven/org.wildfly.wildfly-http-client/wildfly-http-client-common@1.0.20.Final?type=jar"}, - {"ref": "pkg:maven/org.jboss.spec.javax.ejb/jboss-ejb-api_3.2_spec@1.0.0.Final?type=jar"}, - {"ref": "pkg:maven/org.jboss.spec.javax.interceptor/jboss-interceptors-api_1.2_spec@2.0.0.Final?type=jar"}, - {"ref": "pkg:maven/org.jboss.spec.javax.el/jboss-el-api_3.0_spec@2.0.0.Final?type=jar"}, - {"ref": "pkg:maven/org.jboss.metadata/jboss-metadata-common@13.0.0.Final?type=jar"}, - {"ref": "pkg:maven/org.jboss.metadata/jboss-metadata-web@13.0.0.Final?type=jar"}, - {"ref": "pkg:maven/org.jboss.spec.javax.security.auth.message/jboss-jaspi-api_1.1_spec@2.0.1.Final?type=jar"}, - {"ref": "pkg:maven/org.jboss.spec.javax.servlet.jsp/jboss-jsp-api_2.3_spec@2.0.0.Final?type=jar"}, + { + "ref": "pkg:maven/org.wildfly.wildfly-http-client/wildfly-http-client-common@1.0.20.Final?type=jar" + }, + { + "ref": "pkg:maven/org.jboss.spec.javax.ejb/jboss-ejb-api_3.2_spec@1.0.0.Final?type=jar" + }, + { + "ref": "pkg:maven/org.jboss.spec.javax.interceptor/jboss-interceptors-api_1.2_spec@2.0.0.Final?type=jar" + }, + { + "ref": "pkg:maven/org.jboss.spec.javax.el/jboss-el-api_3.0_spec@2.0.0.Final?type=jar" + }, + { + "ref": "pkg:maven/org.jboss.metadata/jboss-metadata-common@13.0.0.Final?type=jar" + }, + { + "ref": "pkg:maven/org.jboss.metadata/jboss-metadata-web@13.0.0.Final?type=jar" + }, + { + "ref": "pkg:maven/org.jboss.spec.javax.security.auth.message/jboss-jaspi-api_1.1_spec@2.0.1.Final?type=jar" + }, + { + "ref": "pkg:maven/org.jboss.spec.javax.servlet.jsp/jboss-jsp-api_2.3_spec@2.0.0.Final?type=jar" + }, { "ref": "pkg:maven/org.jboss.resteasy/resteasy-client@3.9.1.Final?type=jar", "dependsOn": [ @@ -58442,7 +59924,7 @@ "ref": "pkg:maven/com.sun.mail/javax.mail@1.6.2?type=jar", "dependsOn": ["pkg:maven/javax.activation/activation@1.1?type=jar"] }, - {"ref": "pkg:maven/javax.activation/activation@1.1?type=jar"}, + { "ref": "pkg:maven/javax.activation/activation@1.1?type=jar" }, { "ref": "pkg:maven/org.jboss.resteasy/resteasy-jackson2-provider@3.9.1.Final?type=jar", "dependsOn": [ @@ -58461,7 +59943,9 @@ "pkg:maven/com.fasterxml.jackson.module/jackson-module-jaxb-annotations@2.10.1?type=jar" ] }, - {"ref": "pkg:maven/com.fasterxml.jackson.jaxrs/jackson-jaxrs-base@2.10.1?type=jar"}, + { + "ref": "pkg:maven/com.fasterxml.jackson.jaxrs/jackson-jaxrs-base@2.10.1?type=jar" + }, { "ref": "pkg:maven/com.fasterxml.jackson.module/jackson-module-jaxb-annotations@2.10.1?type=jar", "dependsOn": [ @@ -58481,7 +59965,7 @@ "ref": "pkg:maven/com.github.fge/msg-simple@1.1?type=jar", "dependsOn": ["pkg:maven/com.github.fge/btf@1.2?type=jar"] }, - {"ref": "pkg:maven/com.github.fge/btf@1.2?type=jar"}, + { "ref": "pkg:maven/com.github.fge/btf@1.2?type=jar" }, { "ref": "pkg:maven/org.jboss.resteasy/resteasy-jaxb-provider@3.9.1.Final?type=jar", "dependsOn": [ @@ -58493,7 +59977,7 @@ "ref": "pkg:maven/org.jboss.aesh/aesh@0.66.19?type=jar", "dependsOn": ["pkg:maven/org.fusesource.jansi/jansi@1.16?type=jar"] }, - {"ref": "pkg:maven/org.fusesource.jansi/jansi@1.16?type=jar"}, + { "ref": "pkg:maven/org.fusesource.jansi/jansi@1.16?type=jar" }, { "ref": "pkg:maven/org.keycloak/keycloak-client-registration-cli@10.0.2?type=jar", "dependsOn": [ @@ -58502,8 +59986,8 @@ "pkg:maven/org.apache.httpcomponents/httpclient@4.5.11?type=jar" ] }, - {"ref": "pkg:maven/org.keycloak/keycloak-admin-cli@10.0.2?type=jar"}, - {"ref": "pkg:maven/org.keycloak/keycloak-adapter-spi@10.0.2?type=jar"}, + { "ref": "pkg:maven/org.keycloak/keycloak-admin-cli@10.0.2?type=jar" }, + { "ref": "pkg:maven/org.keycloak/keycloak-adapter-spi@10.0.2?type=jar" }, { "ref": "pkg:maven/org.apache.tomcat/tomcat-catalina@7.0.92?type=jar", "dependsOn": [ @@ -58514,12 +59998,16 @@ "pkg:maven/org.apache.tomcat/tomcat-util@7.0.92?type=jar" ] }, - {"ref": "pkg:maven/org.apache.tomcat/tomcat-servlet-api@7.0.92?type=jar"}, - {"ref": "pkg:maven/org.apache.tomcat/tomcat-juli@7.0.92?type=jar"}, - {"ref": "pkg:maven/org.apache.tomcat/tomcat-annotations-api@7.0.92?type=jar"}, - {"ref": "pkg:maven/org.apache.tomcat/tomcat-api@7.0.92?type=jar"}, - {"ref": "pkg:maven/org.apache.tomcat/tomcat-util@7.0.92?type=jar"}, - {"ref": "pkg:maven/org.jboss.spec.javax.servlet/jboss-servlet-api_3.0_spec@1.0.2.Final?type=jar"}, + { "ref": "pkg:maven/org.apache.tomcat/tomcat-servlet-api@7.0.92?type=jar" }, + { "ref": "pkg:maven/org.apache.tomcat/tomcat-juli@7.0.92?type=jar" }, + { + "ref": "pkg:maven/org.apache.tomcat/tomcat-annotations-api@7.0.92?type=jar" + }, + { "ref": "pkg:maven/org.apache.tomcat/tomcat-api@7.0.92?type=jar" }, + { "ref": "pkg:maven/org.apache.tomcat/tomcat-util@7.0.92?type=jar" }, + { + "ref": "pkg:maven/org.jboss.spec.javax.servlet/jboss-servlet-api_3.0_spec@1.0.2.Final?type=jar" + }, { "ref": "pkg:maven/io.undertow/undertow-servlet@2.1.0.Final?type=jar", "dependsOn": [ @@ -58534,8 +60022,10 @@ "pkg:maven/org.wildfly.client/wildfly-client-config@1.0.1.Final?type=jar" ] }, - {"ref": "pkg:maven/org.wildfly.client/wildfly-client-config@1.0.1.Final?type=jar"}, - {"ref": "pkg:maven/org.jboss.threads/jboss-threads@3.1.0.Final?type=jar"}, + { + "ref": "pkg:maven/org.wildfly.client/wildfly-client-config@1.0.1.Final?type=jar" + }, + { "ref": "pkg:maven/org.jboss.threads/jboss-threads@3.1.0.Final?type=jar" }, { "ref": "pkg:maven/org.eclipse.jetty/jetty-server@8.1.17.v20150415?type=jar", "dependsOn": [ @@ -58544,20 +60034,38 @@ "pkg:maven/org.eclipse.jetty/jetty-http@8.1.17.v20150415?type=jar" ] }, - {"ref": "pkg:maven/org.eclipse.jetty.orbit/javax.servlet@3.0.0.v201112011016?type=jar"}, - {"ref": "pkg:maven/org.eclipse.jetty/jetty-continuation@8.1.17.v20150415?type=jar"}, + { + "ref": "pkg:maven/org.eclipse.jetty.orbit/javax.servlet@3.0.0.v201112011016?type=jar" + }, + { + "ref": "pkg:maven/org.eclipse.jetty/jetty-continuation@8.1.17.v20150415?type=jar" + }, { "ref": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.17.v20150415?type=jar", - "dependsOn": ["pkg:maven/org.eclipse.jetty/jetty-io@8.1.17.v20150415?type=jar"] + "dependsOn": [ + "pkg:maven/org.eclipse.jetty/jetty-io@8.1.17.v20150415?type=jar" + ] }, - {"ref": "pkg:maven/org.eclipse.jetty/jetty-io@8.1.17.v20150415?type=jar"}, - {"ref": "pkg:maven/org.eclipse.jetty/jetty-util@8.1.17.v20150415?type=jar"}, - {"ref": "pkg:maven/org.eclipse.jetty/jetty-security@8.1.17.v20150415?type=jar"}, - {"ref": "pkg:maven/org.keycloak/keycloak-saml-adapter-api-public@10.0.2?type=jar"}, - {"ref": "pkg:maven/org.keycloak/keycloak-saml-adapter-core@10.0.2?type=jar"}, - {"ref": "pkg:maven/org.keycloak/keycloak-undertow-adapter-spi@10.0.2?type=jar"}, - {"ref": "pkg:maven/org.keycloak/keycloak-tomcat-adapter-spi@10.0.2?type=jar"}, - {"ref": "pkg:maven/org.apache.tomcat/tomcat-servlet-api@8.5.38?type=jar"}, + { "ref": "pkg:maven/org.eclipse.jetty/jetty-io@8.1.17.v20150415?type=jar" }, + { + "ref": "pkg:maven/org.eclipse.jetty/jetty-util@8.1.17.v20150415?type=jar" + }, + { + "ref": "pkg:maven/org.eclipse.jetty/jetty-security@8.1.17.v20150415?type=jar" + }, + { + "ref": "pkg:maven/org.keycloak/keycloak-saml-adapter-api-public@10.0.2?type=jar" + }, + { + "ref": "pkg:maven/org.keycloak/keycloak-saml-adapter-core@10.0.2?type=jar" + }, + { + "ref": "pkg:maven/org.keycloak/keycloak-undertow-adapter-spi@10.0.2?type=jar" + }, + { + "ref": "pkg:maven/org.keycloak/keycloak-tomcat-adapter-spi@10.0.2?type=jar" + }, + { "ref": "pkg:maven/org.apache.tomcat/tomcat-servlet-api@8.5.38?type=jar" }, { "ref": "pkg:maven/org.apache.tomcat/tomcat-catalina@8.5.38?type=jar", "dependsOn": [ @@ -58576,15 +60084,17 @@ "ref": "pkg:maven/org.apache.tomcat/tomcat-jsp-api@8.5.38?type=jar", "dependsOn": ["pkg:maven/org.apache.tomcat/tomcat-el-api@8.5.38?type=jar"] }, - {"ref": "pkg:maven/org.apache.tomcat/tomcat-el-api@8.5.38?type=jar"}, - {"ref": "pkg:maven/org.apache.tomcat/tomcat-juli@8.5.38?type=jar"}, - {"ref": "pkg:maven/org.apache.tomcat/tomcat-annotations-api@8.5.38?type=jar"}, - {"ref": "pkg:maven/org.apache.tomcat/tomcat-api@8.5.38?type=jar"}, - {"ref": "pkg:maven/org.apache.tomcat/tomcat-jni@8.5.38?type=jar"}, - {"ref": "pkg:maven/org.apache.tomcat/tomcat-coyote@8.5.38?type=jar"}, - {"ref": "pkg:maven/org.apache.tomcat/tomcat-util@8.5.38?type=jar"}, - {"ref": "pkg:maven/org.apache.tomcat/tomcat-util-scan@8.5.38?type=jar"}, - {"ref": "pkg:maven/org.apache.tomcat/tomcat-jaspic-api@8.5.38?type=jar"}, + { "ref": "pkg:maven/org.apache.tomcat/tomcat-el-api@8.5.38?type=jar" }, + { "ref": "pkg:maven/org.apache.tomcat/tomcat-juli@8.5.38?type=jar" }, + { + "ref": "pkg:maven/org.apache.tomcat/tomcat-annotations-api@8.5.38?type=jar" + }, + { "ref": "pkg:maven/org.apache.tomcat/tomcat-api@8.5.38?type=jar" }, + { "ref": "pkg:maven/org.apache.tomcat/tomcat-jni@8.5.38?type=jar" }, + { "ref": "pkg:maven/org.apache.tomcat/tomcat-coyote@8.5.38?type=jar" }, + { "ref": "pkg:maven/org.apache.tomcat/tomcat-util@8.5.38?type=jar" }, + { "ref": "pkg:maven/org.apache.tomcat/tomcat-util-scan@8.5.38?type=jar" }, + { "ref": "pkg:maven/org.apache.tomcat/tomcat-jaspic-api@8.5.38?type=jar" }, { "ref": "pkg:maven/org.keycloak/keycloak-saml-tomcat-adapter-core@10.0.2?type=jar", "dependsOn": [ @@ -58596,7 +60106,9 @@ "pkg:maven/org.keycloak/keycloak-saml-adapter-core@10.0.2?type=jar" ] }, - {"ref": "pkg:maven/org.keycloak/keycloak-saml-undertow-adapter@10.0.2?type=jar"}, + { + "ref": "pkg:maven/org.keycloak/keycloak-saml-undertow-adapter@10.0.2?type=jar" + }, { "ref": "pkg:maven/org.keycloak/keycloak-jboss-adapter-core@10.0.2?type=jar", "dependsOn": [ @@ -58606,17 +60118,35 @@ "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.10.1?type=jar" ] }, - {"ref": "pkg:maven/org.keycloak/keycloak-authz-client@10.0.2?type=jar"}, - {"ref": "pkg:maven/org.keycloak/keycloak-adapter-core@10.0.2?type=jar"}, - {"ref": "pkg:maven/org.wildfly.security/wildfly-elytron-asn1@1.11.4.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.security/wildfly-elytron-audit@1.11.4.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.security/wildfly-elytron-auth@1.11.4.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server@1.11.4.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server-deprecated@1.11.4.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server-http@1.11.4.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server-sasl@1.11.4.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.security/wildfly-elytron-auth-util@1.11.4.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.security/wildfly-elytron-base@1.11.4.Final?type=jar"}, + { "ref": "pkg:maven/org.keycloak/keycloak-authz-client@10.0.2?type=jar" }, + { "ref": "pkg:maven/org.keycloak/keycloak-adapter-core@10.0.2?type=jar" }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-asn1@1.11.4.Final?type=jar" + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-audit@1.11.4.Final?type=jar" + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-auth@1.11.4.Final?type=jar" + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server@1.11.4.Final?type=jar" + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server-deprecated@1.11.4.Final?type=jar" + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server-http@1.11.4.Final?type=jar" + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server-sasl@1.11.4.Final?type=jar" + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-auth-util@1.11.4.Final?type=jar" + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-base@1.11.4.Final?type=jar" + }, { "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-client@1.11.4.Final?type=jar", "dependsOn": [ @@ -58624,62 +60154,174 @@ "pkg:maven/org.wildfly.security/wildfly-elytron-provider-util@1.11.4.Final?type=jar" ] }, - {"ref": "pkg:maven/org.wildfly.security/wildfly-elytron-credential-source-impl@1.11.4.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.security/wildfly-elytron-provider-util@1.11.4.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.security/wildfly-elytron-credential@1.11.4.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.security/wildfly-elytron-credential-source-deprecated@1.11.4.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.security/wildfly-elytron-credential-store@1.11.4.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.security/wildfly-elytron-digest@1.11.4.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.security/wildfly-elytron-http@1.11.4.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.security/wildfly-elytron-http-basic@1.11.4.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.security/wildfly-elytron-http-bearer@1.11.4.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.security/wildfly-elytron-http-cert@1.11.4.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.security/wildfly-elytron-http-deprecated@1.11.4.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.security/wildfly-elytron-http-digest@1.11.4.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.security/wildfly-elytron-http-form@1.11.4.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.security/wildfly-elytron-http-spnego@1.11.4.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.security/wildfly-elytron-http-sso@1.11.4.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.security/wildfly-elytron-http-util@1.11.4.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.security/wildfly-elytron-jacc@1.11.4.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.security/wildfly-elytron-jaspi@1.11.4.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.security/wildfly-elytron-json-util@1.11.4.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.security/wildfly-elytron-keystore@1.11.4.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism@1.11.4.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-digest@1.11.4.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-gssapi@1.11.4.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-http@1.11.4.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-oauth2@1.11.4.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-scram@1.11.4.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.security/wildfly-elytron-password-impl@1.11.4.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.security/wildfly-elytron-permission@1.11.4.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.security/wildfly-elytron-realm@1.11.4.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.security/wildfly-elytron-realm-jdbc@1.11.4.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.security/wildfly-elytron-realm-ldap@1.11.4.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.security/wildfly-elytron-realm-token@1.11.4.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl@1.11.4.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-anonymous@1.11.4.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-auth-util@1.11.4.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-deprecated@1.11.4.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-digest@1.11.4.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-entity@1.11.4.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-external@1.11.4.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-gs2@1.11.4.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-gssapi@1.11.4.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-localuser@1.11.4.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-oauth2@1.11.4.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-otp@1.11.4.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-plain@1.11.4.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-scram@1.11.4.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.security/wildfly-elytron-security-manager@1.11.4.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.security/wildfly-elytron-security-manager-action@1.11.4.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.security/wildfly-elytron-ssl@1.11.4.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.security/wildfly-elytron-util@1.11.4.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.security/wildfly-elytron-x500@1.11.4.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.security/wildfly-elytron-x500-cert@1.11.4.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.security/wildfly-elytron-x500-cert-acme@1.11.4.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.security/wildfly-elytron-x500-cert-util@1.11.4.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.security/wildfly-elytron-x500-deprecated@1.11.4.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.security/wildfly-elytron-x500-principal@1.11.4.Final?type=jar"}, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-credential-source-impl@1.11.4.Final?type=jar" + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-provider-util@1.11.4.Final?type=jar" + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-credential@1.11.4.Final?type=jar" + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-credential-source-deprecated@1.11.4.Final?type=jar" + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-credential-store@1.11.4.Final?type=jar" + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-digest@1.11.4.Final?type=jar" + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-http@1.11.4.Final?type=jar" + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-http-basic@1.11.4.Final?type=jar" + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-http-bearer@1.11.4.Final?type=jar" + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-http-cert@1.11.4.Final?type=jar" + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-http-deprecated@1.11.4.Final?type=jar" + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-http-digest@1.11.4.Final?type=jar" + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-http-form@1.11.4.Final?type=jar" + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-http-spnego@1.11.4.Final?type=jar" + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-http-sso@1.11.4.Final?type=jar" + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-http-util@1.11.4.Final?type=jar" + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-jacc@1.11.4.Final?type=jar" + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-jaspi@1.11.4.Final?type=jar" + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-json-util@1.11.4.Final?type=jar" + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-keystore@1.11.4.Final?type=jar" + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism@1.11.4.Final?type=jar" + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-digest@1.11.4.Final?type=jar" + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-gssapi@1.11.4.Final?type=jar" + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-http@1.11.4.Final?type=jar" + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-oauth2@1.11.4.Final?type=jar" + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-scram@1.11.4.Final?type=jar" + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-password-impl@1.11.4.Final?type=jar" + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-permission@1.11.4.Final?type=jar" + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-realm@1.11.4.Final?type=jar" + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-realm-jdbc@1.11.4.Final?type=jar" + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-realm-ldap@1.11.4.Final?type=jar" + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-realm-token@1.11.4.Final?type=jar" + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl@1.11.4.Final?type=jar" + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-anonymous@1.11.4.Final?type=jar" + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-auth-util@1.11.4.Final?type=jar" + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-deprecated@1.11.4.Final?type=jar" + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-digest@1.11.4.Final?type=jar" + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-entity@1.11.4.Final?type=jar" + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-external@1.11.4.Final?type=jar" + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-gs2@1.11.4.Final?type=jar" + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-gssapi@1.11.4.Final?type=jar" + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-localuser@1.11.4.Final?type=jar" + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-oauth2@1.11.4.Final?type=jar" + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-otp@1.11.4.Final?type=jar" + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-plain@1.11.4.Final?type=jar" + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-scram@1.11.4.Final?type=jar" + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-security-manager@1.11.4.Final?type=jar" + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-security-manager-action@1.11.4.Final?type=jar" + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-ssl@1.11.4.Final?type=jar" + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-util@1.11.4.Final?type=jar" + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-x500@1.11.4.Final?type=jar" + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-x500-cert@1.11.4.Final?type=jar" + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-x500-cert-acme@1.11.4.Final?type=jar" + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-x500-cert-util@1.11.4.Final?type=jar" + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-x500-deprecated@1.11.4.Final?type=jar" + }, + { + "ref": "pkg:maven/org.wildfly.security/wildfly-elytron-x500-principal@1.11.4.Final?type=jar" + }, { "ref": "pkg:maven/org.keycloak/keycloak-saml-wildfly-adapter@10.0.2?type=jar", "dependsOn": [ @@ -58693,8 +60335,12 @@ "pkg:maven/org.infinispan/infinispan-cachestore-remote@9.4.18.Final?type=jar" ] }, - {"ref": "pkg:maven/org.keycloak/keycloak-saml-wildfly-elytron-adapter@10.0.2?type=jar"}, - {"ref": "pkg:maven/org.keycloak/keycloak-servlet-adapter-spi@10.0.2?type=jar"}, + { + "ref": "pkg:maven/org.keycloak/keycloak-saml-wildfly-elytron-adapter@10.0.2?type=jar" + }, + { + "ref": "pkg:maven/org.keycloak/keycloak-servlet-adapter-spi@10.0.2?type=jar" + }, { "ref": "pkg:maven/org.keycloak/keycloak-jetty-adapter-spi@10.0.2?type=jar", "dependsOn": ["pkg:maven/org.keycloak/keycloak-common@10.0.2?type=jar"] @@ -58715,11 +60361,17 @@ "pkg:maven/org.eclipse.jetty/jetty-io@9.2.4.v20141103?type=jar" ] }, - {"ref": "pkg:maven/javax.servlet/javax.servlet-api@3.1.0?type=jar"}, - {"ref": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.4.v20141103?type=jar"}, - {"ref": "pkg:maven/org.eclipse.jetty/jetty-io@9.2.4.v20141103?type=jar"}, - {"ref": "pkg:maven/org.eclipse.jetty/jetty-util@9.2.4.v20141103?type=jar"}, - {"ref": "pkg:maven/org.eclipse.jetty/jetty-security@9.2.4.v20141103?type=jar"}, + { "ref": "pkg:maven/javax.servlet/javax.servlet-api@3.1.0?type=jar" }, + { + "ref": "pkg:maven/org.eclipse.jetty/jetty-http@9.2.4.v20141103?type=jar" + }, + { "ref": "pkg:maven/org.eclipse.jetty/jetty-io@9.2.4.v20141103?type=jar" }, + { + "ref": "pkg:maven/org.eclipse.jetty/jetty-util@9.2.4.v20141103?type=jar" + }, + { + "ref": "pkg:maven/org.eclipse.jetty/jetty-security@9.2.4.v20141103?type=jar" + }, { "ref": "pkg:maven/org.eclipse.jetty/jetty-server@9.3.9.v20160517?type=jar", "dependsOn": [ @@ -58728,10 +60380,16 @@ "pkg:maven/org.eclipse.jetty/jetty-io@9.3.9.v20160517?type=jar" ] }, - {"ref": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.9.v20160517?type=jar"}, - {"ref": "pkg:maven/org.eclipse.jetty/jetty-io@9.3.9.v20160517?type=jar"}, - {"ref": "pkg:maven/org.eclipse.jetty/jetty-util@9.3.9.v20160517?type=jar"}, - {"ref": "pkg:maven/org.eclipse.jetty/jetty-security@9.3.9.v20160517?type=jar"}, + { + "ref": "pkg:maven/org.eclipse.jetty/jetty-http@9.3.9.v20160517?type=jar" + }, + { "ref": "pkg:maven/org.eclipse.jetty/jetty-io@9.3.9.v20160517?type=jar" }, + { + "ref": "pkg:maven/org.eclipse.jetty/jetty-util@9.3.9.v20160517?type=jar" + }, + { + "ref": "pkg:maven/org.eclipse.jetty/jetty-security@9.3.9.v20160517?type=jar" + }, { "ref": "pkg:maven/org.eclipse.jetty/jetty-server@9.4.2.v20170220?type=jar", "dependsOn": [ @@ -58740,19 +60398,25 @@ "pkg:maven/org.eclipse.jetty/jetty-io@9.4.2.v20170220?type=jar" ] }, - {"ref": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.2.v20170220?type=jar"}, - {"ref": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.2.v20170220?type=jar"}, - {"ref": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.2.v20170220?type=jar"}, - {"ref": "pkg:maven/org.eclipse.jetty/jetty-security@9.4.2.v20170220?type=jar"}, - {"ref": "pkg:maven/org.osgi/org.osgi.core@4.2.0?type=jar"}, - {"ref": "pkg:maven/org.osgi/org.osgi.enterprise@4.2.0?type=jar"}, + { + "ref": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.2.v20170220?type=jar" + }, + { "ref": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.2.v20170220?type=jar" }, + { + "ref": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.2.v20170220?type=jar" + }, + { + "ref": "pkg:maven/org.eclipse.jetty/jetty-security@9.4.2.v20170220?type=jar" + }, + { "ref": "pkg:maven/org.osgi/org.osgi.core@4.2.0?type=jar" }, + { "ref": "pkg:maven/org.osgi/org.osgi.enterprise@4.2.0?type=jar" }, { "ref": "pkg:maven/org.ops4j.pax.web/pax-web-runtime@7.1.0?type=jar", "dependsOn": ["pkg:maven/org.jasypt/jasypt@1.9.2?type=jar"] }, - {"ref": "pkg:maven/org.jasypt/jasypt@1.9.2?type=jar"}, - {"ref": "pkg:maven/org.ops4j.pax.web/pax-web-spi@7.1.0?type=jar"}, - {"ref": "pkg:maven/org.ops4j.pax.web/pax-web-api@7.1.0?type=jar"}, + { "ref": "pkg:maven/org.jasypt/jasypt@1.9.2?type=jar" }, + { "ref": "pkg:maven/org.ops4j.pax.web/pax-web-spi@7.1.0?type=jar" }, + { "ref": "pkg:maven/org.ops4j.pax.web/pax-web-api@7.1.0?type=jar" }, { "ref": "pkg:maven/org.keycloak/keycloak-undertow-adapter@10.0.2?type=jar", "dependsOn": [ @@ -58774,7 +60438,7 @@ "pkg:maven/javax.servlet/javax.servlet-api@3.1.0?type=jar" ] }, - {"ref": "pkg:maven/org.apache.camel/camel-http-common@2.21.2?type=jar"}, + { "ref": "pkg:maven/org.apache.camel/camel-http-common@2.21.2?type=jar" }, { "ref": "pkg:maven/org.apache.camel/camel-core@2.21.2?type=jar", "dependsOn": [ @@ -58783,8 +60447,8 @@ "pkg:maven/com.sun.xml.bind/jaxb-impl@2.3.0?type=jar" ] }, - {"ref": "pkg:maven/com.sun.xml.bind/jaxb-core@2.3.0?type=jar"}, - {"ref": "pkg:maven/com.sun.xml.bind/jaxb-impl@2.3.0?type=jar"}, + { "ref": "pkg:maven/com.sun.xml.bind/jaxb-core@2.3.0?type=jar" }, + { "ref": "pkg:maven/com.sun.xml.bind/jaxb-impl@2.3.0?type=jar" }, { "ref": "pkg:maven/org.apache.cxf/cxf-rt-transports-http@3.3.6?type=jar", "dependsOn": [ @@ -58812,9 +60476,13 @@ "ref": "pkg:maven/com.fasterxml.woodstox/woodstox-core@5.0.3?type=jar", "dependsOn": ["pkg:maven/org.codehaus.woodstox/stax2-api@3.1.4?type=jar"] }, - {"ref": "pkg:maven/org.codehaus.woodstox/stax2-api@3.1.4?type=jar"}, - {"ref": "pkg:maven/org.apache.ws.xmlschema/xmlschema-core@2.2.5?type=jar"}, - {"ref": "pkg:maven/org.apache.geronimo.specs/geronimo-ws-metadata_2.0_spec@1.1.3?type=jar"}, + { "ref": "pkg:maven/org.codehaus.woodstox/stax2-api@3.1.4?type=jar" }, + { + "ref": "pkg:maven/org.apache.ws.xmlschema/xmlschema-core@2.2.5?type=jar" + }, + { + "ref": "pkg:maven/org.apache.geronimo.specs/geronimo-ws-metadata_2.0_spec@1.1.3?type=jar" + }, { "ref": "pkg:maven/com.sun.xml.messaging.saaj/saaj-impl@1.4.0-b03?type=jar", "dependsOn": [ @@ -58822,14 +60490,18 @@ "pkg:maven/org.jvnet.staxex/stax-ex@1.7.8?type=jar" ] }, - {"ref": "pkg:maven/org.jvnet.mimepull/mimepull@1.9.7?type=jar"}, + { "ref": "pkg:maven/org.jvnet.mimepull/mimepull@1.9.7?type=jar" }, { "ref": "pkg:maven/org.jvnet.staxex/stax-ex@1.7.8?type=jar", "dependsOn": ["pkg:maven/javax.activation/activation@1.1?type=jar"] }, - {"ref": "pkg:maven/org.jacorb/jacorb-omgapi@3.9?type=jar"}, - {"ref": "pkg:maven/org.apache.geronimo.specs/geronimo-jta_1.1_spec@1.1.1?type=jar"}, - {"ref": "pkg:maven/org.jboss.spec.javax.rmi/jboss-rmi-api_1.0_spec@1.0.6.Final?type=jar"}, + { "ref": "pkg:maven/org.jacorb/jacorb-omgapi@3.9?type=jar" }, + { + "ref": "pkg:maven/org.apache.geronimo.specs/geronimo-jta_1.1_spec@1.1.1?type=jar" + }, + { + "ref": "pkg:maven/org.jboss.spec.javax.rmi/jboss-rmi-api_1.0_spec@1.0.6.Final?type=jar" + }, { "ref": "pkg:maven/org.apache.cxf/cxf-rt-transports-http-undertow@3.3.6?type=jar", "dependsOn": [ @@ -58838,7 +60510,7 @@ "pkg:maven/org.slf4j/slf4j-api@1.7.22?type=jar" ] }, - {"ref": "pkg:maven/org.keycloak/keycloak-osgi-adapter@10.0.2?type=jar"}, + { "ref": "pkg:maven/org.keycloak/keycloak-osgi-adapter@10.0.2?type=jar" }, { "ref": "pkg:maven/org.keycloak/keycloak-jetty-core@10.0.2?type=jar", "dependsOn": [ @@ -58896,7 +60568,7 @@ "pkg:maven/io.undertow/undertow-core@2.1.0.Final?type=jar" ] }, - {"ref": "pkg:maven/commons-codec/commons-codec@1.13?type=jar"}, + { "ref": "pkg:maven/commons-codec/commons-codec@1.13?type=jar" }, { "ref": "pkg:maven/org.jboss.resteasy/resteasy-jackson2-provider@3.11.2.Final?type=jar", "dependsOn": [ @@ -58907,7 +60579,9 @@ }, { "ref": "pkg:maven/org.keycloak/keycloak-jetty93-adapter@10.0.2?type=jar", - "dependsOn": ["pkg:maven/org.keycloak/keycloak-jetty-core@10.0.2?type=jar"] + "dependsOn": [ + "pkg:maven/org.keycloak/keycloak-jetty-core@10.0.2?type=jar" + ] }, { "ref": "pkg:maven/org.springframework.security/spring-security-config@3.2.7.RELEASE?type=jar", @@ -58920,12 +60594,22 @@ "pkg:maven/org.springframework/spring-core@3.2.13.RELEASE?type=jar" ] }, - {"ref": "pkg:maven/aopalliance/aopalliance@1.0?type=jar"}, - {"ref": "pkg:maven/org.springframework.security/spring-security-core@3.2.7.RELEASE?type=jar"}, - {"ref": "pkg:maven/org.springframework/spring-aop@3.2.13.RELEASE?type=jar"}, - {"ref": "pkg:maven/org.springframework/spring-beans@3.2.13.RELEASE?type=jar"}, - {"ref": "pkg:maven/org.springframework/spring-context@3.2.13.RELEASE?type=jar"}, - {"ref": "pkg:maven/org.springframework/spring-core@3.2.13.RELEASE?type=jar"}, + { "ref": "pkg:maven/aopalliance/aopalliance@1.0?type=jar" }, + { + "ref": "pkg:maven/org.springframework.security/spring-security-core@3.2.7.RELEASE?type=jar" + }, + { + "ref": "pkg:maven/org.springframework/spring-aop@3.2.13.RELEASE?type=jar" + }, + { + "ref": "pkg:maven/org.springframework/spring-beans@3.2.13.RELEASE?type=jar" + }, + { + "ref": "pkg:maven/org.springframework/spring-context@3.2.13.RELEASE?type=jar" + }, + { + "ref": "pkg:maven/org.springframework/spring-core@3.2.13.RELEASE?type=jar" + }, { "ref": "pkg:maven/org.springframework.security/spring-security-web@3.2.7.RELEASE?type=jar", "dependsOn": [ @@ -58933,8 +60617,12 @@ "pkg:maven/org.springframework/spring-web@3.2.13.RELEASE?type=jar" ] }, - {"ref": "pkg:maven/org.springframework/spring-expression@3.2.13.RELEASE?type=jar"}, - {"ref": "pkg:maven/org.springframework/spring-web@3.2.13.RELEASE?type=jar"}, + { + "ref": "pkg:maven/org.springframework/spring-expression@3.2.13.RELEASE?type=jar" + }, + { + "ref": "pkg:maven/org.springframework/spring-web@3.2.13.RELEASE?type=jar" + }, { "ref": "pkg:maven/org.keycloak/spring-boot-container-bundle@10.0.2?type=jar", "dependsOn": [ @@ -58945,7 +60633,9 @@ }, { "ref": "pkg:maven/org.keycloak/spring-boot-legacy-container-bundle@10.0.2?type=jar", - "dependsOn": ["pkg:maven/org.keycloak/keycloak-jetty93-adapter@10.0.2?type=jar"] + "dependsOn": [ + "pkg:maven/org.keycloak/keycloak-jetty93-adapter@10.0.2?type=jar" + ] }, { "ref": "pkg:maven/org.keycloak/keycloak-spring-security-adapter@10.0.2?type=jar", @@ -58977,8 +60667,12 @@ "pkg:maven/org.yaml/snakeyaml@1.17?type=jar" ] }, - {"ref": "pkg:maven/org.springframework.boot/spring-boot@1.5.16.RELEASE?type=jar"}, - {"ref": "pkg:maven/org.springframework.boot/spring-boot-autoconfigure@1.5.16.RELEASE?type=jar"}, + { + "ref": "pkg:maven/org.springframework.boot/spring-boot@1.5.16.RELEASE?type=jar" + }, + { + "ref": "pkg:maven/org.springframework.boot/spring-boot-autoconfigure@1.5.16.RELEASE?type=jar" + }, { "ref": "pkg:maven/org.springframework.boot/spring-boot-starter-logging@1.5.16.RELEASE?type=jar", "dependsOn": [ @@ -58992,12 +60686,14 @@ "ref": "pkg:maven/ch.qos.logback/logback-classic@1.1.11?type=jar", "dependsOn": ["pkg:maven/ch.qos.logback/logback-core@1.1.11?type=jar"] }, - {"ref": "pkg:maven/ch.qos.logback/logback-core@1.1.11?type=jar"}, - {"ref": "pkg:maven/org.slf4j/jcl-over-slf4j@1.7.25?type=jar"}, - {"ref": "pkg:maven/org.slf4j/jul-to-slf4j@1.7.25?type=jar"}, - {"ref": "pkg:maven/org.slf4j/log4j-over-slf4j@1.7.25?type=jar"}, - {"ref": "pkg:maven/org.springframework/spring-core@4.3.19.RELEASE?type=jar"}, - {"ref": "pkg:maven/org.yaml/snakeyaml@1.17?type=jar"}, + { "ref": "pkg:maven/ch.qos.logback/logback-core@1.1.11?type=jar" }, + { "ref": "pkg:maven/org.slf4j/jcl-over-slf4j@1.7.25?type=jar" }, + { "ref": "pkg:maven/org.slf4j/jul-to-slf4j@1.7.25?type=jar" }, + { "ref": "pkg:maven/org.slf4j/log4j-over-slf4j@1.7.25?type=jar" }, + { + "ref": "pkg:maven/org.springframework/spring-core@4.3.19.RELEASE?type=jar" + }, + { "ref": "pkg:maven/org.yaml/snakeyaml@1.17?type=jar" }, { "ref": "pkg:maven/org.springframework.boot/spring-boot-starter-tomcat@1.5.16.RELEASE?type=jar", "dependsOn": [ @@ -59008,11 +60704,19 @@ }, { "ref": "pkg:maven/org.apache.tomcat.embed/tomcat-embed-core@8.5.34?type=jar", - "dependsOn": ["pkg:maven/org.apache.tomcat/tomcat-annotations-api@8.5.34?type=jar"] + "dependsOn": [ + "pkg:maven/org.apache.tomcat/tomcat-annotations-api@8.5.34?type=jar" + ] + }, + { + "ref": "pkg:maven/org.apache.tomcat/tomcat-annotations-api@8.5.34?type=jar" + }, + { + "ref": "pkg:maven/org.apache.tomcat.embed/tomcat-embed-el@8.5.34?type=jar" + }, + { + "ref": "pkg:maven/org.apache.tomcat.embed/tomcat-embed-websocket@8.5.34?type=jar" }, - {"ref": "pkg:maven/org.apache.tomcat/tomcat-annotations-api@8.5.34?type=jar"}, - {"ref": "pkg:maven/org.apache.tomcat.embed/tomcat-embed-el@8.5.34?type=jar"}, - {"ref": "pkg:maven/org.apache.tomcat.embed/tomcat-embed-websocket@8.5.34?type=jar"}, { "ref": "pkg:maven/org.hibernate/hibernate-validator@5.3.6.Final?type=jar", "dependsOn": [ @@ -59020,8 +60724,8 @@ "pkg:maven/com.fasterxml/classmate@1.3.1?type=jar" ] }, - {"ref": "pkg:maven/javax.validation/validation-api@1.1.0.Final?type=jar"}, - {"ref": "pkg:maven/com.fasterxml/classmate@1.3.1?type=jar"}, + { "ref": "pkg:maven/javax.validation/validation-api@1.1.0.Final?type=jar" }, + { "ref": "pkg:maven/com.fasterxml/classmate@1.3.1?type=jar" }, { "ref": "pkg:maven/org.springframework/spring-web@4.3.19.RELEASE?type=jar", "dependsOn": [ @@ -59030,14 +60734,24 @@ "pkg:maven/org.springframework/spring-context@4.3.19.RELEASE?type=jar" ] }, - {"ref": "pkg:maven/org.springframework/spring-aop@4.3.19.RELEASE?type=jar"}, - {"ref": "pkg:maven/org.springframework/spring-beans@4.3.19.RELEASE?type=jar"}, - {"ref": "pkg:maven/org.springframework/spring-context@4.3.19.RELEASE?type=jar"}, + { + "ref": "pkg:maven/org.springframework/spring-aop@4.3.19.RELEASE?type=jar" + }, + { + "ref": "pkg:maven/org.springframework/spring-beans@4.3.19.RELEASE?type=jar" + }, + { + "ref": "pkg:maven/org.springframework/spring-context@4.3.19.RELEASE?type=jar" + }, { "ref": "pkg:maven/org.springframework/spring-webmvc@4.3.19.RELEASE?type=jar", - "dependsOn": ["pkg:maven/org.springframework/spring-expression@4.3.19.RELEASE?type=jar"] + "dependsOn": [ + "pkg:maven/org.springframework/spring-expression@4.3.19.RELEASE?type=jar" + ] + }, + { + "ref": "pkg:maven/org.springframework/spring-expression@4.3.19.RELEASE?type=jar" }, - {"ref": "pkg:maven/org.springframework/spring-expression@4.3.19.RELEASE?type=jar"}, { "ref": "pkg:maven/org.eclipse.jetty/jetty-webapp@9.2.4.v20141103?type=jar", "dependsOn": [ @@ -59045,15 +60759,25 @@ "pkg:maven/org.eclipse.jetty/jetty-servlet@9.2.4.v20141103?type=jar" ] }, - {"ref": "pkg:maven/org.eclipse.jetty/jetty-xml@9.2.4.v20141103?type=jar"}, - {"ref": "pkg:maven/org.eclipse.jetty/jetty-servlet@9.2.4.v20141103?type=jar"}, - {"ref": "pkg:maven/org.springframework.boot/spring-boot-configuration-processor@1.5.16.RELEASE?type=jar"}, - {"ref": "pkg:maven/org.keycloak/keycloak-spring-boot-adapter-core@10.0.2?type=jar"}, + { "ref": "pkg:maven/org.eclipse.jetty/jetty-xml@9.2.4.v20141103?type=jar" }, + { + "ref": "pkg:maven/org.eclipse.jetty/jetty-servlet@9.2.4.v20141103?type=jar" + }, + { + "ref": "pkg:maven/org.springframework.boot/spring-boot-configuration-processor@1.5.16.RELEASE?type=jar" + }, + { + "ref": "pkg:maven/org.keycloak/keycloak-spring-boot-adapter-core@10.0.2?type=jar" + }, { "ref": "pkg:maven/org.springframework/spring-core@5.0.2.RELEASE?type=jar", - "dependsOn": ["pkg:maven/org.springframework/spring-jcl@5.0.2.RELEASE?type=jar"] + "dependsOn": [ + "pkg:maven/org.springframework/spring-jcl@5.0.2.RELEASE?type=jar" + ] + }, + { + "ref": "pkg:maven/org.springframework/spring-jcl@5.0.2.RELEASE?type=jar" }, - {"ref": "pkg:maven/org.springframework/spring-jcl@5.0.2.RELEASE?type=jar"}, { "ref": "pkg:maven/org.springframework.boot/spring-boot-starter-web@2.0.5.RELEASE?type=jar", "dependsOn": [ @@ -59075,8 +60799,12 @@ "pkg:maven/org.yaml/snakeyaml@1.19?type=jar" ] }, - {"ref": "pkg:maven/org.springframework.boot/spring-boot@2.0.5.RELEASE?type=jar"}, - {"ref": "pkg:maven/org.springframework.boot/spring-boot-autoconfigure@2.0.5.RELEASE?type=jar"}, + { + "ref": "pkg:maven/org.springframework.boot/spring-boot@2.0.5.RELEASE?type=jar" + }, + { + "ref": "pkg:maven/org.springframework.boot/spring-boot-autoconfigure@2.0.5.RELEASE?type=jar" + }, { "ref": "pkg:maven/org.springframework.boot/spring-boot-starter-logging@2.0.5.RELEASE?type=jar", "dependsOn": [ @@ -59089,13 +60817,15 @@ "ref": "pkg:maven/ch.qos.logback/logback-classic@1.2.3?type=jar", "dependsOn": ["pkg:maven/ch.qos.logback/logback-core@1.2.3?type=jar"] }, - {"ref": "pkg:maven/ch.qos.logback/logback-core@1.2.3?type=jar"}, + { "ref": "pkg:maven/ch.qos.logback/logback-core@1.2.3?type=jar" }, { "ref": "pkg:maven/org.apache.logging.log4j/log4j-to-slf4j@2.10.0?type=jar", - "dependsOn": ["pkg:maven/org.apache.logging.log4j/log4j-api@2.10.0?type=jar"] + "dependsOn": [ + "pkg:maven/org.apache.logging.log4j/log4j-api@2.10.0?type=jar" + ] }, - {"ref": "pkg:maven/org.apache.logging.log4j/log4j-api@2.10.0?type=jar"}, - {"ref": "pkg:maven/org.yaml/snakeyaml@1.19?type=jar"}, + { "ref": "pkg:maven/org.apache.logging.log4j/log4j-api@2.10.0?type=jar" }, + { "ref": "pkg:maven/org.yaml/snakeyaml@1.19?type=jar" }, { "ref": "pkg:maven/org.springframework.boot/spring-boot-starter-json@2.0.5.RELEASE?type=jar", "dependsOn": [ @@ -59104,9 +60834,15 @@ "pkg:maven/com.fasterxml.jackson.module/jackson-module-parameter-names@2.9.6?type=jar" ] }, - {"ref": "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jdk8@2.9.6?type=jar"}, - {"ref": "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jsr310@2.9.6?type=jar"}, - {"ref": "pkg:maven/com.fasterxml.jackson.module/jackson-module-parameter-names@2.9.6?type=jar"}, + { + "ref": "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jdk8@2.9.6?type=jar" + }, + { + "ref": "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jsr310@2.9.6?type=jar" + }, + { + "ref": "pkg:maven/com.fasterxml.jackson.module/jackson-module-parameter-names@2.9.6?type=jar" + }, { "ref": "pkg:maven/org.springframework.boot/spring-boot-starter-tomcat@2.0.5.RELEASE?type=jar", "dependsOn": [ @@ -59122,12 +60858,16 @@ "pkg:maven/com.fasterxml/classmate@1.3.4?type=jar" ] }, - {"ref": "pkg:maven/javax.validation/validation-api@2.0.1.Final?type=jar"}, + { "ref": "pkg:maven/javax.validation/validation-api@2.0.1.Final?type=jar" }, { "ref": "pkg:maven/org.springframework/spring-web@5.0.9.RELEASE?type=jar", - "dependsOn": ["pkg:maven/org.springframework/spring-beans@5.0.9.RELEASE?type=jar"] + "dependsOn": [ + "pkg:maven/org.springframework/spring-beans@5.0.9.RELEASE?type=jar" + ] + }, + { + "ref": "pkg:maven/org.springframework/spring-beans@5.0.9.RELEASE?type=jar" }, - {"ref": "pkg:maven/org.springframework/spring-beans@5.0.9.RELEASE?type=jar"}, { "ref": "pkg:maven/org.springframework/spring-webmvc@5.0.9.RELEASE?type=jar", "dependsOn": [ @@ -59136,12 +60876,24 @@ "pkg:maven/org.springframework/spring-expression@5.0.9.RELEASE?type=jar" ] }, - {"ref": "pkg:maven/org.springframework/spring-aop@5.0.9.RELEASE?type=jar"}, - {"ref": "pkg:maven/org.springframework/spring-context@5.0.9.RELEASE?type=jar"}, - {"ref": "pkg:maven/org.springframework/spring-expression@5.0.9.RELEASE?type=jar"}, - {"ref": "pkg:maven/org.springframework.boot/spring-boot-configuration-processor@2.0.5.RELEASE?type=jar"}, - {"ref": "pkg:maven/org.springframework.boot/spring-boot-autoconfigure-processor@2.0.5.RELEASE?type=jar"}, - {"ref": "pkg:maven/org.wildfly.security.elytron-web/undertow-common-test@1.7.1.Final?type=jar"}, + { + "ref": "pkg:maven/org.springframework/spring-aop@5.0.9.RELEASE?type=jar" + }, + { + "ref": "pkg:maven/org.springframework/spring-context@5.0.9.RELEASE?type=jar" + }, + { + "ref": "pkg:maven/org.springframework/spring-expression@5.0.9.RELEASE?type=jar" + }, + { + "ref": "pkg:maven/org.springframework.boot/spring-boot-configuration-processor@2.0.5.RELEASE?type=jar" + }, + { + "ref": "pkg:maven/org.springframework.boot/spring-boot-autoconfigure-processor@2.0.5.RELEASE?type=jar" + }, + { + "ref": "pkg:maven/org.wildfly.security.elytron-web/undertow-common-test@1.7.1.Final?type=jar" + }, { "ref": "pkg:maven/org.keycloak/keycloak-wildfly-adapter@10.0.2?type=jar", "dependsOn": [ @@ -59158,7 +60910,9 @@ "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.10.1?type=jar" ] }, - {"ref": "pkg:maven/org.keycloak/keycloak-wildfly-elytron-oidc-adapter@10.0.2?type=jar"}, + { + "ref": "pkg:maven/org.keycloak/keycloak-wildfly-elytron-oidc-adapter@10.0.2?type=jar" + }, { "ref": "pkg:maven/org.keycloak/keycloak-spring-boot-2-adapter@10.0.2?type=jar", "dependsOn": [ @@ -59181,10 +60935,16 @@ }, { "ref": "pkg:maven/org.springframework.boot/spring-boot@2.0.3.RELEASE?type=jar", - "dependsOn": ["pkg:maven/org.springframework/spring-context@5.0.7.RELEASE?type=jar"] + "dependsOn": [ + "pkg:maven/org.springframework/spring-context@5.0.7.RELEASE?type=jar" + ] + }, + { + "ref": "pkg:maven/org.springframework/spring-context@5.0.7.RELEASE?type=jar" + }, + { + "ref": "pkg:maven/org.springframework.boot/spring-boot-autoconfigure@2.0.3.RELEASE?type=jar" }, - {"ref": "pkg:maven/org.springframework/spring-context@5.0.7.RELEASE?type=jar"}, - {"ref": "pkg:maven/org.springframework.boot/spring-boot-autoconfigure@2.0.3.RELEASE?type=jar"}, { "ref": "pkg:maven/org.springframework.boot/spring-boot-starter-logging@2.0.3.RELEASE?type=jar", "dependsOn": [ @@ -59195,9 +60955,13 @@ }, { "ref": "pkg:maven/org.springframework/spring-core@5.0.7.RELEASE?type=jar", - "dependsOn": ["pkg:maven/org.springframework/spring-jcl@5.0.7.RELEASE?type=jar"] + "dependsOn": [ + "pkg:maven/org.springframework/spring-jcl@5.0.7.RELEASE?type=jar" + ] + }, + { + "ref": "pkg:maven/org.springframework/spring-jcl@5.0.7.RELEASE?type=jar" }, - {"ref": "pkg:maven/org.springframework/spring-jcl@5.0.7.RELEASE?type=jar"}, { "ref": "pkg:maven/org.keycloak/keycloak-spring-boot-adapter@10.0.2?type=jar", "dependsOn": [ @@ -59218,7 +60982,9 @@ }, { "ref": "pkg:maven/org.springframework.boot/spring-boot@1.5.14.RELEASE?type=jar", - "dependsOn": ["pkg:maven/org.springframework/spring-context@4.3.18.RELEASE?type=jar"] + "dependsOn": [ + "pkg:maven/org.springframework/spring-context@4.3.18.RELEASE?type=jar" + ] }, { "ref": "pkg:maven/org.springframework/spring-context@4.3.18.RELEASE?type=jar", @@ -59228,10 +60994,18 @@ "pkg:maven/org.springframework/spring-expression@4.3.18.RELEASE?type=jar" ] }, - {"ref": "pkg:maven/org.springframework/spring-aop@4.3.18.RELEASE?type=jar"}, - {"ref": "pkg:maven/org.springframework/spring-beans@4.3.18.RELEASE?type=jar"}, - {"ref": "pkg:maven/org.springframework/spring-expression@4.3.18.RELEASE?type=jar"}, - {"ref": "pkg:maven/org.springframework.boot/spring-boot-autoconfigure@1.5.14.RELEASE?type=jar"}, + { + "ref": "pkg:maven/org.springframework/spring-aop@4.3.18.RELEASE?type=jar" + }, + { + "ref": "pkg:maven/org.springframework/spring-beans@4.3.18.RELEASE?type=jar" + }, + { + "ref": "pkg:maven/org.springframework/spring-expression@4.3.18.RELEASE?type=jar" + }, + { + "ref": "pkg:maven/org.springframework.boot/spring-boot-autoconfigure@1.5.14.RELEASE?type=jar" + }, { "ref": "pkg:maven/org.springframework.boot/spring-boot-starter-logging@1.5.14.RELEASE?type=jar", "dependsOn": [ @@ -59241,7 +61015,9 @@ "pkg:maven/org.slf4j/log4j-over-slf4j@1.7.25?type=jar" ] }, - {"ref": "pkg:maven/org.springframework/spring-core@4.3.18.RELEASE?type=jar"}, + { + "ref": "pkg:maven/org.springframework/spring-core@4.3.18.RELEASE?type=jar" + }, { "ref": "pkg:maven/org.keycloak/keycloak-client-registration-api@10.0.2?type=jar", "dependsOn": [ @@ -59272,7 +61048,9 @@ }, { "ref": "pkg:maven/org.seleniumhq.selenium/selenium-android-driver@2.35.0?type=jar", - "dependsOn": ["pkg:maven/org.seleniumhq.selenium/selenium-remote-driver@2.35.0?type=jar"] + "dependsOn": [ + "pkg:maven/org.seleniumhq.selenium/selenium-remote-driver@2.35.0?type=jar" + ] }, { "ref": "pkg:maven/org.seleniumhq.selenium/selenium-remote-driver@2.35.0?type=jar", @@ -59281,8 +61059,8 @@ "pkg:maven/org.json/json@20080701?type=jar" ] }, - {"ref": "pkg:maven/cglib/cglib-nodep@2.1_3?type=jar"}, - {"ref": "pkg:maven/org.json/json@20080701?type=jar"}, + { "ref": "pkg:maven/cglib/cglib-nodep@2.1_3?type=jar" }, + { "ref": "pkg:maven/org.json/json@20080701?type=jar" }, { "ref": "pkg:maven/org.seleniumhq.selenium/selenium-htmlunit-driver@2.35.0?type=jar", "dependsOn": ["pkg:maven/net.sourceforge.htmlunit/htmlunit@2.12?type=jar"] @@ -59305,18 +61083,22 @@ "ref": "pkg:maven/xalan/xalan@2.7.1?type=jar", "dependsOn": ["pkg:maven/xalan/serializer@2.7.1?type=jar"] }, - {"ref": "pkg:maven/xalan/serializer@2.7.1?type=jar"}, - {"ref": "pkg:maven/commons-collections/commons-collections@3.2.1?type=jar"}, - {"ref": "pkg:maven/org.apache.commons/commons-lang3@3.9?type=jar"}, - {"ref": "pkg:maven/org.apache.httpcomponents/httpmime@4.5.11?type=jar"}, - {"ref": "pkg:maven/net.sourceforge.htmlunit/htmlunit-core-js@2.12?type=jar"}, - {"ref": "pkg:maven/xerces/xercesImpl@2.10.0?type=jar"}, - {"ref": "pkg:maven/net.sourceforge.nekohtml/nekohtml@1.9.18?type=jar"}, + { "ref": "pkg:maven/xalan/serializer@2.7.1?type=jar" }, + { + "ref": "pkg:maven/commons-collections/commons-collections@3.2.1?type=jar" + }, + { "ref": "pkg:maven/org.apache.commons/commons-lang3@3.9?type=jar" }, + { "ref": "pkg:maven/org.apache.httpcomponents/httpmime@4.5.11?type=jar" }, + { + "ref": "pkg:maven/net.sourceforge.htmlunit/htmlunit-core-js@2.12?type=jar" + }, + { "ref": "pkg:maven/xerces/xercesImpl@2.10.0?type=jar" }, + { "ref": "pkg:maven/net.sourceforge.nekohtml/nekohtml@1.9.18?type=jar" }, { "ref": "pkg:maven/net.sourceforge.cssparser/cssparser@0.9.9?type=jar", "dependsOn": ["pkg:maven/org.w3c.css/sac@1.3?type=jar"] }, - {"ref": "pkg:maven/org.w3c.css/sac@1.3?type=jar"}, + { "ref": "pkg:maven/org.w3c.css/sac@1.3?type=jar" }, { "ref": "pkg:maven/org.eclipse.jetty/jetty-websocket@8.1.9.v20130131?type=jar", "dependsOn": [ @@ -59325,14 +61107,18 @@ "pkg:maven/org.eclipse.jetty/jetty-http@8.1.9.v20130131?type=jar" ] }, - {"ref": "pkg:maven/org.eclipse.jetty/jetty-util@8.1.9.v20130131?type=jar"}, - {"ref": "pkg:maven/org.eclipse.jetty/jetty-io@8.1.9.v20130131?type=jar"}, - {"ref": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.9.v20130131?type=jar"}, + { + "ref": "pkg:maven/org.eclipse.jetty/jetty-util@8.1.9.v20130131?type=jar" + }, + { "ref": "pkg:maven/org.eclipse.jetty/jetty-io@8.1.9.v20130131?type=jar" }, + { + "ref": "pkg:maven/org.eclipse.jetty/jetty-http@8.1.9.v20130131?type=jar" + }, { "ref": "pkg:maven/org.seleniumhq.selenium/selenium-firefox-driver@2.35.0?type=jar", "dependsOn": ["pkg:maven/org.apache.commons/commons-exec@1.1?type=jar"] }, - {"ref": "pkg:maven/org.apache.commons/commons-exec@1.1?type=jar"}, + { "ref": "pkg:maven/org.apache.commons/commons-exec@1.1?type=jar" }, { "ref": "pkg:maven/org.seleniumhq.selenium/selenium-ie-driver@2.35.0?type=jar", "dependsOn": [ @@ -59340,19 +61126,25 @@ "pkg:maven/net.java.dev.jna/platform@3.4.0?type=jar" ] }, - {"ref": "pkg:maven/net.java.dev.jna/platform@3.4.0?type=jar"}, - {"ref": "pkg:maven/org.seleniumhq.selenium/selenium-iphone-driver@2.35.0?type=jar"}, - {"ref": "pkg:maven/org.seleniumhq.selenium/selenium-safari-driver@2.35.0?type=jar"}, + { "ref": "pkg:maven/net.java.dev.jna/platform@3.4.0?type=jar" }, + { + "ref": "pkg:maven/org.seleniumhq.selenium/selenium-iphone-driver@2.35.0?type=jar" + }, + { + "ref": "pkg:maven/org.seleniumhq.selenium/selenium-safari-driver@2.35.0?type=jar" + }, { "ref": "pkg:maven/org.seleniumhq.selenium/selenium-support@2.35.0?type=jar", - "dependsOn": ["pkg:maven/org.seleniumhq.selenium/selenium-api@2.35.0?type=jar"] + "dependsOn": [ + "pkg:maven/org.seleniumhq.selenium/selenium-api@2.35.0?type=jar" + ] }, - {"ref": "pkg:maven/org.seleniumhq.selenium/selenium-api@2.35.0?type=jar"}, + { "ref": "pkg:maven/org.seleniumhq.selenium/selenium-api@2.35.0?type=jar" }, { "ref": "pkg:maven/org.webbitserver/webbit@0.4.14?type=jar", "dependsOn": ["pkg:maven/io.netty/netty@3.5.2.Final?type=jar"] }, - {"ref": "pkg:maven/io.netty/netty@3.5.2.Final?type=jar"}, + { "ref": "pkg:maven/io.netty/netty@3.5.2.Final?type=jar" }, { "ref": "pkg:maven/org.apache.maven/maven-plugin-api@3.3.9?type=jar", "dependsOn": [ @@ -59361,8 +61153,8 @@ "pkg:maven/org.eclipse.sisu/org.eclipse.sisu.plexus@0.3.2?type=jar" ] }, - {"ref": "pkg:maven/org.apache.maven/maven-model@3.3.9?type=jar"}, - {"ref": "pkg:maven/org.apache.maven/maven-artifact@3.3.9?type=jar"}, + { "ref": "pkg:maven/org.apache.maven/maven-model@3.3.9?type=jar" }, + { "ref": "pkg:maven/org.apache.maven/maven-artifact@3.3.9?type=jar" }, { "ref": "pkg:maven/org.eclipse.sisu/org.eclipse.sisu.plexus@0.3.2?type=jar", "dependsOn": [ @@ -59374,9 +61166,13 @@ "ref": "pkg:maven/javax.enterprise/cdi-api@1.0?type=jar", "dependsOn": ["pkg:maven/javax.annotation/jsr250-api@1.0?type=jar"] }, - {"ref": "pkg:maven/javax.annotation/jsr250-api@1.0?type=jar"}, - {"ref": "pkg:maven/org.eclipse.sisu/org.eclipse.sisu.inject@0.3.2?type=jar"}, - {"ref": "pkg:maven/org.apache.maven.plugin-tools/maven-plugin-annotations@3.4?type=jar"}, + { "ref": "pkg:maven/javax.annotation/jsr250-api@1.0?type=jar" }, + { + "ref": "pkg:maven/org.eclipse.sisu/org.eclipse.sisu.inject@0.3.2?type=jar" + }, + { + "ref": "pkg:maven/org.apache.maven.plugin-tools/maven-plugin-annotations@3.4?type=jar" + }, { "ref": "pkg:maven/org.apache.maven/maven-core@3.3.9?type=jar", "dependsOn": [ @@ -59397,25 +61193,41 @@ "pkg:maven/org.apache.commons/commons-lang3@3.9?type=jar" ] }, - {"ref": "pkg:maven/org.apache.maven/maven-settings@3.3.9?type=jar"}, + { "ref": "pkg:maven/org.apache.maven/maven-settings@3.3.9?type=jar" }, { "ref": "pkg:maven/org.apache.maven/maven-settings-builder@3.3.9?type=jar", - "dependsOn": ["pkg:maven/org.apache.maven/maven-builder-support@3.3.9?type=jar"] + "dependsOn": [ + "pkg:maven/org.apache.maven/maven-builder-support@3.3.9?type=jar" + ] + }, + { + "ref": "pkg:maven/org.apache.maven/maven-builder-support@3.3.9?type=jar" + }, + { + "ref": "pkg:maven/org.apache.maven/maven-repository-metadata@3.3.9?type=jar" }, - {"ref": "pkg:maven/org.apache.maven/maven-builder-support@3.3.9?type=jar"}, - {"ref": "pkg:maven/org.apache.maven/maven-repository-metadata@3.3.9?type=jar"}, { "ref": "pkg:maven/org.apache.maven/maven-model-builder@3.3.9?type=jar", "dependsOn": ["pkg:maven/com.google.guava/guava@25.0-jre?type=jar"] }, { "ref": "pkg:maven/org.apache.maven/maven-aether-provider@3.3.9?type=jar", - "dependsOn": ["pkg:maven/org.eclipse.aether/aether-spi@1.0.2.v20150114?type=jar"] + "dependsOn": [ + "pkg:maven/org.eclipse.aether/aether-spi@1.0.2.v20150114?type=jar" + ] + }, + { + "ref": "pkg:maven/org.eclipse.aether/aether-spi@1.0.2.v20150114?type=jar" + }, + { + "ref": "pkg:maven/org.eclipse.aether/aether-impl@1.0.2.v20150114?type=jar" + }, + { + "ref": "pkg:maven/org.eclipse.aether/aether-api@1.0.2.v20150114?type=jar" + }, + { + "ref": "pkg:maven/org.eclipse.aether/aether-util@1.0.2.v20150114?type=jar" }, - {"ref": "pkg:maven/org.eclipse.aether/aether-spi@1.0.2.v20150114?type=jar"}, - {"ref": "pkg:maven/org.eclipse.aether/aether-impl@1.0.2.v20150114?type=jar"}, - {"ref": "pkg:maven/org.eclipse.aether/aether-api@1.0.2.v20150114?type=jar"}, - {"ref": "pkg:maven/org.eclipse.aether/aether-util@1.0.2.v20150114?type=jar"}, { "ref": "pkg:maven/com.google.inject/guice@4.0?classifier=no_aop&type=jar", "dependsOn": [ @@ -59423,16 +61235,22 @@ "pkg:maven/aopalliance/aopalliance@1.0?type=jar" ] }, - {"ref": "pkg:maven/javax.inject/javax.inject@1?type=jar"}, - {"ref": "pkg:maven/org.codehaus.plexus/plexus-interpolation@1.21?type=jar"}, - {"ref": "pkg:maven/org.codehaus.plexus/plexus-utils@3.0.22?type=jar"}, - {"ref": "pkg:maven/org.codehaus.plexus/plexus-classworlds@2.5.2?type=jar"}, - {"ref": "pkg:maven/org.codehaus.plexus/plexus-component-annotations@1.6?type=jar"}, + { "ref": "pkg:maven/javax.inject/javax.inject@1?type=jar" }, + { + "ref": "pkg:maven/org.codehaus.plexus/plexus-interpolation@1.21?type=jar" + }, + { "ref": "pkg:maven/org.codehaus.plexus/plexus-utils@3.0.22?type=jar" }, + { + "ref": "pkg:maven/org.codehaus.plexus/plexus-classworlds@2.5.2?type=jar" + }, + { + "ref": "pkg:maven/org.codehaus.plexus/plexus-component-annotations@1.6?type=jar" + }, { "ref": "pkg:maven/org.sonatype.plexus/plexus-sec-dispatcher@1.3?type=jar", "dependsOn": ["pkg:maven/org.sonatype.plexus/plexus-cipher@1.4?type=jar"] }, - {"ref": "pkg:maven/org.sonatype.plexus/plexus-cipher@1.4?type=jar"}, + { "ref": "pkg:maven/org.sonatype.plexus/plexus-cipher@1.4?type=jar" }, { "ref": "pkg:maven/javax.enterprise/cdi-api@1.0-SP4?type=jar", "dependsOn": [ @@ -59441,8 +61259,10 @@ "pkg:maven/javax.inject/javax.inject@1?type=jar" ] }, - {"ref": "pkg:maven/org.jboss.spec.javax.interceptor/jboss-interceptors-api_1.1_spec@1.0.0.Beta1?type=jar"}, - {"ref": "pkg:maven/junit/junit@4.12?type=jar"}, + { + "ref": "pkg:maven/org.jboss.spec.javax.interceptor/jboss-interceptors-api_1.1_spec@1.0.0.Beta1?type=jar" + }, + { "ref": "pkg:maven/junit/junit@4.12?type=jar" }, { "ref": "pkg:maven/org.apache.cxf/cxf-rt-frontend-jaxrs@3.3.6?type=jar", "dependsOn": [ @@ -59459,8 +61279,8 @@ "pkg:maven/org.jboss.spec.javax.rmi/jboss-rmi-api_1.0_spec@1.0.6.Final?type=jar" ] }, - {"ref": "pkg:maven/jakarta.ws.rs/jakarta.ws.rs-api@2.1.5?type=jar"}, - {"ref": "pkg:maven/org.apache.cxf/cxf-rt-security@3.3.6?type=jar"}, + { "ref": "pkg:maven/jakarta.ws.rs/jakarta.ws.rs-api@2.1.5?type=jar" }, + { "ref": "pkg:maven/org.apache.cxf/cxf-rt-security@3.3.6?type=jar" }, { "ref": "pkg:maven/org.apache.cxf/cxf-rt-transports-http-jetty@3.3.6?type=jar", "dependsOn": [ @@ -59477,13 +61297,25 @@ "ref": "pkg:maven/org.eclipse.jetty/jetty-server@9.4.27.v20200227?type=jar", "dependsOn": ["pkg:maven/javax.servlet/javax.servlet-api@3.1.0?type=jar"] }, - {"ref": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.27.v20200227?type=jar"}, - {"ref": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.27.v20200227?type=jar"}, - {"ref": "pkg:maven/org.eclipse.jetty/jetty-security@9.4.27.v20200227?type=jar"}, - {"ref": "pkg:maven/org.eclipse.jetty/jetty-continuation@9.4.27.v20200227?type=jar"}, - {"ref": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.27.v20200227?type=jar"}, - {"ref": "pkg:maven/org.apache.geronimo.specs/geronimo-ws-metadata_2.0_spec@1.1.2?type=jar"}, - {"ref": "pkg:maven/org.apache.geronimo.specs/geronimo-jaxws_2.2_spec@1.0?type=jar"}, + { + "ref": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.27.v20200227?type=jar" + }, + { "ref": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.27.v20200227?type=jar" }, + { + "ref": "pkg:maven/org.eclipse.jetty/jetty-security@9.4.27.v20200227?type=jar" + }, + { + "ref": "pkg:maven/org.eclipse.jetty/jetty-continuation@9.4.27.v20200227?type=jar" + }, + { + "ref": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.27.v20200227?type=jar" + }, + { + "ref": "pkg:maven/org.apache.geronimo.specs/geronimo-ws-metadata_2.0_spec@1.1.2?type=jar" + }, + { + "ref": "pkg:maven/org.apache.geronimo.specs/geronimo-jaxws_2.2_spec@1.0?type=jar" + }, { "ref": "pkg:maven/javax.xml.bind/jaxb-api@2.2?type=jar", "dependsOn": [ @@ -59491,7 +61323,7 @@ "pkg:maven/javax.activation/activation@1.1?type=jar" ] }, - {"ref": "pkg:maven/javax.xml.stream/stax-api@1.0-2?type=jar"}, + { "ref": "pkg:maven/javax.xml.stream/stax-api@1.0-2?type=jar" }, { "ref": "pkg:maven/org.apache.cxf/cxf-rt-frontend-jaxws@3.3.6?type=jar", "dependsOn": [ @@ -59511,8 +61343,8 @@ "pkg:maven/org.jboss.spec.javax.rmi/jboss-rmi-api_1.0_spec@1.0.6.Final?type=jar" ] }, - {"ref": "pkg:maven/xml-resolver/xml-resolver@1.2?type=jar"}, - {"ref": "pkg:maven/org.ow2.asm/asm@7.1?type=jar"}, + { "ref": "pkg:maven/xml-resolver/xml-resolver@1.2?type=jar" }, + { "ref": "pkg:maven/org.ow2.asm/asm@7.1?type=jar" }, { "ref": "pkg:maven/org.apache.cxf/cxf-rt-bindings-soap@3.3.6?type=jar", "dependsOn": [ @@ -59524,10 +61356,12 @@ "ref": "pkg:maven/org.apache.cxf/cxf-rt-wsdl@3.3.6?type=jar", "dependsOn": ["pkg:maven/wsdl4j/wsdl4j@1.6.3?type=jar"] }, - {"ref": "pkg:maven/wsdl4j/wsdl4j@1.6.3?type=jar"}, - {"ref": "pkg:maven/org.apache.cxf/cxf-rt-databinding-jaxb@3.3.6?type=jar"}, - {"ref": "pkg:maven/org.apache.cxf/cxf-rt-bindings-xml@3.3.6?type=jar"}, - {"ref": "pkg:maven/org.apache.cxf/cxf-rt-frontend-simple@3.3.6?type=jar"}, + { "ref": "pkg:maven/wsdl4j/wsdl4j@1.6.3?type=jar" }, + { + "ref": "pkg:maven/org.apache.cxf/cxf-rt-databinding-jaxb@3.3.6?type=jar" + }, + { "ref": "pkg:maven/org.apache.cxf/cxf-rt-bindings-xml@3.3.6?type=jar" }, + { "ref": "pkg:maven/org.apache.cxf/cxf-rt-frontend-simple@3.3.6?type=jar" }, { "ref": "pkg:maven/org.apache.cxf/cxf-rt-ws-addr@3.3.6?type=jar", "dependsOn": ["pkg:maven/org.apache.cxf/cxf-rt-ws-policy@3.3.6?type=jar"] @@ -59536,7 +61370,7 @@ "ref": "pkg:maven/org.apache.cxf/cxf-rt-ws-policy@3.3.6?type=jar", "dependsOn": ["pkg:maven/org.apache.neethi/neethi@3.1.1?type=jar"] }, - {"ref": "pkg:maven/org.apache.neethi/neethi@3.1.1?type=jar"}, + { "ref": "pkg:maven/org.apache.neethi/neethi@3.1.1?type=jar" }, { "ref": "pkg:maven/org.keycloak.testsuite/fuse-example-cxf-jaxws@10.0.2?type=jar", "dependsOn": [ @@ -59564,8 +61398,8 @@ "pkg:maven/org.apache.camel/camel-core-osgi@2.21.2?type=jar" ] }, - {"ref": "pkg:maven/org.apache.camel/camel-core-xml@2.21.2?type=jar"}, - {"ref": "pkg:maven/org.apache.camel/camel-core-osgi@2.21.2?type=jar"}, + { "ref": "pkg:maven/org.apache.camel/camel-core-xml@2.21.2?type=jar" }, + { "ref": "pkg:maven/org.apache.camel/camel-core-osgi@2.21.2?type=jar" }, { "ref": "pkg:maven/org.apache.camel/camel-jetty9@2.21.2?type=jar", "dependsOn": [ @@ -59588,19 +61422,33 @@ "pkg:maven/org.eclipse.jetty/jetty-io@9.4.6.v20170531?type=jar" ] }, - {"ref": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.6.v20170531?type=jar"}, - {"ref": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.6.v20170531?type=jar"}, - {"ref": "pkg:maven/org.eclipse.jetty/jetty-servlet@9.4.6.v20170531?type=jar"}, - {"ref": "pkg:maven/org.eclipse.jetty/jetty-security@9.4.6.v20170531?type=jar"}, + { + "ref": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.6.v20170531?type=jar" + }, + { "ref": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.6.v20170531?type=jar" }, + { + "ref": "pkg:maven/org.eclipse.jetty/jetty-servlet@9.4.6.v20170531?type=jar" + }, + { + "ref": "pkg:maven/org.eclipse.jetty/jetty-security@9.4.6.v20170531?type=jar" + }, { "ref": "pkg:maven/org.eclipse.jetty/jetty-servlets@9.4.6.v20170531?type=jar", - "dependsOn": ["pkg:maven/org.eclipse.jetty/jetty-continuation@9.4.6.v20170531?type=jar"] + "dependsOn": [ + "pkg:maven/org.eclipse.jetty/jetty-continuation@9.4.6.v20170531?type=jar" + ] }, - {"ref": "pkg:maven/org.eclipse.jetty/jetty-continuation@9.4.6.v20170531?type=jar"}, - {"ref": "pkg:maven/org.eclipse.jetty/jetty-client@9.4.6.v20170531?type=jar"}, - {"ref": "pkg:maven/org.eclipse.jetty/jetty-jmx@9.4.6.v20170531?type=jar"}, - {"ref": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.6.v20170531?type=jar"}, - {"ref": "pkg:maven/org.apache.camel/camel-jetty-common@2.21.2?type=jar"}, + { + "ref": "pkg:maven/org.eclipse.jetty/jetty-continuation@9.4.6.v20170531?type=jar" + }, + { + "ref": "pkg:maven/org.eclipse.jetty/jetty-client@9.4.6.v20170531?type=jar" + }, + { "ref": "pkg:maven/org.eclipse.jetty/jetty-jmx@9.4.6.v20170531?type=jar" }, + { + "ref": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.6.v20170531?type=jar" + }, + { "ref": "pkg:maven/org.apache.camel/camel-jetty-common@2.21.2?type=jar" }, { "ref": "pkg:maven/org.springframework.boot/spring-boot-starter-thymeleaf@1.5.20.RELEASE?type=jar", "dependsOn": [ @@ -59618,8 +61466,12 @@ "pkg:maven/org.yaml/snakeyaml@1.17?type=jar" ] }, - {"ref": "pkg:maven/org.springframework.boot/spring-boot@1.5.20.RELEASE?type=jar"}, - {"ref": "pkg:maven/org.springframework.boot/spring-boot-autoconfigure@1.5.20.RELEASE?type=jar"}, + { + "ref": "pkg:maven/org.springframework.boot/spring-boot@1.5.20.RELEASE?type=jar" + }, + { + "ref": "pkg:maven/org.springframework.boot/spring-boot-autoconfigure@1.5.20.RELEASE?type=jar" + }, { "ref": "pkg:maven/org.springframework.boot/spring-boot-starter-logging@1.5.20.RELEASE?type=jar", "dependsOn": [ @@ -59629,9 +61481,9 @@ "pkg:maven/org.slf4j/log4j-over-slf4j@1.7.26?type=jar" ] }, - {"ref": "pkg:maven/org.slf4j/jcl-over-slf4j@1.7.26?type=jar"}, - {"ref": "pkg:maven/org.slf4j/jul-to-slf4j@1.7.26?type=jar"}, - {"ref": "pkg:maven/org.slf4j/log4j-over-slf4j@1.7.26?type=jar"}, + { "ref": "pkg:maven/org.slf4j/jcl-over-slf4j@1.7.26?type=jar" }, + { "ref": "pkg:maven/org.slf4j/jul-to-slf4j@1.7.26?type=jar" }, + { "ref": "pkg:maven/org.slf4j/log4j-over-slf4j@1.7.26?type=jar" }, { "ref": "pkg:maven/org.thymeleaf/thymeleaf-spring4@2.1.6.RELEASE?type=jar", "dependsOn": [ @@ -59647,14 +61499,14 @@ "pkg:maven/org.unbescape/unbescape@1.1.0.RELEASE?type=jar" ] }, - {"ref": "pkg:maven/ognl/ognl@3.0.8?type=jar"}, - {"ref": "pkg:maven/org.javassist/javassist@3.21.0-GA?type=jar"}, - {"ref": "pkg:maven/org.unbescape/unbescape@1.1.0.RELEASE?type=jar"}, + { "ref": "pkg:maven/ognl/ognl@3.0.8?type=jar" }, + { "ref": "pkg:maven/org.javassist/javassist@3.21.0-GA?type=jar" }, + { "ref": "pkg:maven/org.unbescape/unbescape@1.1.0.RELEASE?type=jar" }, { "ref": "pkg:maven/nz.net.ultraq.thymeleaf/thymeleaf-layout-dialect@1.4.0?type=jar", "dependsOn": ["pkg:maven/org.codehaus.groovy/groovy@2.4.16?type=jar"] }, - {"ref": "pkg:maven/org.codehaus.groovy/groovy@2.4.16?type=jar"}, + { "ref": "pkg:maven/org.codehaus.groovy/groovy@2.4.16?type=jar" }, { "ref": "pkg:maven/org.springframework.boot/spring-boot-starter-web@1.5.20.RELEASE?type=jar", "dependsOn": [ @@ -59675,11 +61527,19 @@ }, { "ref": "pkg:maven/org.apache.tomcat.embed/tomcat-embed-core@8.5.39?type=jar", - "dependsOn": ["pkg:maven/org.apache.tomcat/tomcat-annotations-api@8.5.39?type=jar"] + "dependsOn": [ + "pkg:maven/org.apache.tomcat/tomcat-annotations-api@8.5.39?type=jar" + ] + }, + { + "ref": "pkg:maven/org.apache.tomcat/tomcat-annotations-api@8.5.39?type=jar" + }, + { + "ref": "pkg:maven/org.apache.tomcat.embed/tomcat-embed-el@8.5.39?type=jar" + }, + { + "ref": "pkg:maven/org.apache.tomcat.embed/tomcat-embed-websocket@8.5.39?type=jar" }, - {"ref": "pkg:maven/org.apache.tomcat/tomcat-annotations-api@8.5.39?type=jar"}, - {"ref": "pkg:maven/org.apache.tomcat.embed/tomcat-embed-el@8.5.39?type=jar"}, - {"ref": "pkg:maven/org.apache.tomcat.embed/tomcat-embed-websocket@8.5.39?type=jar"}, { "ref": "pkg:maven/org.springframework/spring-web@4.3.23.RELEASE?type=jar", "dependsOn": [ @@ -59688,14 +61548,24 @@ "pkg:maven/org.springframework/spring-context@4.3.23.RELEASE?type=jar" ] }, - {"ref": "pkg:maven/org.springframework/spring-aop@4.3.23.RELEASE?type=jar"}, - {"ref": "pkg:maven/org.springframework/spring-beans@4.3.23.RELEASE?type=jar"}, - {"ref": "pkg:maven/org.springframework/spring-context@4.3.23.RELEASE?type=jar"}, + { + "ref": "pkg:maven/org.springframework/spring-aop@4.3.23.RELEASE?type=jar" + }, + { + "ref": "pkg:maven/org.springframework/spring-beans@4.3.23.RELEASE?type=jar" + }, + { + "ref": "pkg:maven/org.springframework/spring-context@4.3.23.RELEASE?type=jar" + }, { "ref": "pkg:maven/org.springframework/spring-webmvc@4.3.23.RELEASE?type=jar", - "dependsOn": ["pkg:maven/org.springframework/spring-expression@4.3.23.RELEASE?type=jar"] + "dependsOn": [ + "pkg:maven/org.springframework/spring-expression@4.3.23.RELEASE?type=jar" + ] + }, + { + "ref": "pkg:maven/org.springframework/spring-expression@4.3.23.RELEASE?type=jar" }, - {"ref": "pkg:maven/org.springframework/spring-expression@4.3.23.RELEASE?type=jar"}, { "ref": "pkg:maven/org.keycloak/keycloak-dependencies-server-all@10.0.2?type=pom", "dependsOn": [ @@ -59720,14 +61590,22 @@ "pkg:maven/org.aesh/aesh@2.4?type=jar" ] }, - {"ref": "pkg:maven/org.dom4j/dom4j@2.1.3?type=jar"}, - {"ref": "pkg:maven/org.jboss.resteasy/resteasy-undertow@3.11.2.Final?type=jar"}, + { "ref": "pkg:maven/org.dom4j/dom4j@2.1.3?type=jar" }, + { + "ref": "pkg:maven/org.jboss.resteasy/resteasy-undertow@3.11.2.Final?type=jar" + }, { "ref": "pkg:maven/org.keycloak/keycloak-saml-servlet-filter-adapter@10.0.2?type=jar", - "dependsOn": ["pkg:maven/org.keycloak/keycloak-servlet-adapter-spi@10.0.2?type=jar"] + "dependsOn": [ + "pkg:maven/org.keycloak/keycloak-servlet-adapter-spi@10.0.2?type=jar" + ] + }, + { + "ref": "pkg:maven/org.keycloak/keycloak-servlet-filter-adapter@10.0.2?type=jar" + }, + { + "ref": "pkg:maven/org.keycloak/keycloak-jaxrs-oauth-client@10.0.2?type=jar" }, - {"ref": "pkg:maven/org.keycloak/keycloak-servlet-filter-adapter@10.0.2?type=jar"}, - {"ref": "pkg:maven/org.keycloak/keycloak-jaxrs-oauth-client@10.0.2?type=jar"}, { "ref": "pkg:maven/org.keycloak.testsuite/integration-arquillian-testsuite-providers@10.0.2?type=jar", "dependsOn": [ @@ -59735,7 +61613,7 @@ "pkg:maven/org.wildfly.core/wildfly-controller@11.1.1.Final?type=jar" ] }, - {"ref": "pkg:maven/com.h2database/h2@1.4.197?type=jar"}, + { "ref": "pkg:maven/com.h2database/h2@1.4.197?type=jar" }, { "ref": "pkg:maven/com.icegreen/greenmail@1.3.1b?type=jar", "dependsOn": ["pkg:maven/javax.mail/mail@1.4?type=jar"] @@ -59744,7 +61622,7 @@ "ref": "pkg:maven/javax.mail/mail@1.4?type=jar", "dependsOn": ["pkg:maven/javax.activation/activation@1.1?type=jar"] }, - {"ref": "pkg:maven/xml-apis/xml-apis@1.4.01?type=jar"}, + { "ref": "pkg:maven/xml-apis/xml-apis@1.4.01?type=jar" }, { "ref": "pkg:maven/org.keycloak/keycloak-util-embedded-ldap@10.0.2?type=jar", "dependsOn": [ @@ -59774,21 +61652,29 @@ "pkg:maven/org.wildfly.wildfly-http-client/wildfly-http-client-common@1.0.20.Final?type=jar" ] }, - {"ref": "pkg:maven/org.jboss.common/jboss-common-beans@2.0.1.Final?type=jar"}, + { + "ref": "pkg:maven/org.jboss.common/jboss-common-beans@2.0.1.Final?type=jar" + }, { "ref": "pkg:maven/org.wildfly/wildfly-clustering-web-container@19.1.0.Final?type=jar", - "dependsOn": ["pkg:maven/org.wildfly/wildfly-clustering-common@19.1.0.Final?type=jar"] + "dependsOn": [ + "pkg:maven/org.wildfly/wildfly-clustering-common@19.1.0.Final?type=jar" + ] }, { "ref": "pkg:maven/org.wildfly/wildfly-clustering-common@19.1.0.Final?type=jar", - "dependsOn": ["pkg:maven/org.wildfly/wildfly-clustering-service@19.1.0.Final?type=jar"] + "dependsOn": [ + "pkg:maven/org.wildfly/wildfly-clustering-service@19.1.0.Final?type=jar" + ] + }, + { + "ref": "pkg:maven/org.wildfly/wildfly-clustering-service@19.1.0.Final?type=jar" }, - {"ref": "pkg:maven/org.wildfly/wildfly-clustering-service@19.1.0.Final?type=jar"}, { "ref": "pkg:maven/org.wildfly.core/wildfly-event-logger@11.1.1.Final?type=jar", "dependsOn": ["pkg:maven/jakarta.json/jakarta.json-api@1.1.6?type=jar"] }, - {"ref": "pkg:maven/jakarta.json/jakarta.json-api@1.1.6?type=jar"}, + { "ref": "pkg:maven/jakarta.json/jakarta.json-api@1.1.6?type=jar" }, { "ref": "pkg:maven/org.wildfly/wildfly-security@19.1.0.Final?type=jar", "dependsOn": [ @@ -59804,13 +61690,19 @@ }, { "ref": "pkg:maven/org.wildfly/wildfly-clustering-infinispan-spi@19.1.0.Final?type=jar", - "dependsOn": ["pkg:maven/org.wildfly/wildfly-clustering-marshalling-spi@19.1.0.Final?type=jar"] + "dependsOn": [ + "pkg:maven/org.wildfly/wildfly-clustering-marshalling-spi@19.1.0.Final?type=jar" + ] }, { "ref": "pkg:maven/org.wildfly/wildfly-clustering-marshalling-spi@19.1.0.Final?type=jar", - "dependsOn": ["pkg:maven/org.wildfly/wildfly-clustering-marshalling-api@19.1.0.Final?type=jar"] + "dependsOn": [ + "pkg:maven/org.wildfly/wildfly-clustering-marshalling-api@19.1.0.Final?type=jar" + ] + }, + { + "ref": "pkg:maven/org.wildfly/wildfly-clustering-marshalling-api@19.1.0.Final?type=jar" }, - {"ref": "pkg:maven/org.wildfly/wildfly-clustering-marshalling-api@19.1.0.Final?type=jar"}, { "ref": "pkg:maven/org.wildfly/wildfly-transactions@19.1.0.Final?type=jar", "dependsOn": [ @@ -59826,45 +61718,85 @@ }, { "ref": "pkg:maven/org.wildfly/wildfly-iiop-openjdk@19.1.0.Final?type=jar", - "dependsOn": ["pkg:maven/org.jboss.metadata/jboss-metadata-ejb@13.0.0.Final?type=jar"] + "dependsOn": [ + "pkg:maven/org.jboss.metadata/jboss-metadata-ejb@13.0.0.Final?type=jar" + ] + }, + { + "ref": "pkg:maven/org.jboss.metadata/jboss-metadata-ejb@13.0.0.Final?type=jar" + }, + { + "ref": "pkg:maven/org.jboss.openjdk-orb/openjdk-orb@8.1.4.Final?type=jar" + }, + { "ref": "pkg:maven/org.jboss/jboss-transaction-spi@7.6.0.Final?type=jar" }, + { + "ref": "pkg:maven/org.jboss.narayana.jts/narayana-jts-idlj@5.10.1.Final?type=jar" + }, + { + "ref": "pkg:maven/org.jboss.narayana.jts/narayana-jts-integration@5.10.1.Final?type=jar" + }, + { + "ref": "pkg:maven/org.jboss.spec.javax.resource/jboss-connector-api_1.7_spec@2.0.0.Final?type=jar" + }, + { + "ref": "pkg:maven/org.wildfly.transaction/wildfly-transaction-client@1.1.9.Final?type=jar" + }, + { + "ref": "pkg:maven/org.wildfly.wildfly-http-client/wildfly-http-transaction-client@1.0.20.Final?type=jar" }, - {"ref": "pkg:maven/org.jboss.metadata/jboss-metadata-ejb@13.0.0.Final?type=jar"}, - {"ref": "pkg:maven/org.jboss.openjdk-orb/openjdk-orb@8.1.4.Final?type=jar"}, - {"ref": "pkg:maven/org.jboss/jboss-transaction-spi@7.6.0.Final?type=jar"}, - {"ref": "pkg:maven/org.jboss.narayana.jts/narayana-jts-idlj@5.10.1.Final?type=jar"}, - {"ref": "pkg:maven/org.jboss.narayana.jts/narayana-jts-integration@5.10.1.Final?type=jar"}, - {"ref": "pkg:maven/org.jboss.spec.javax.resource/jboss-connector-api_1.7_spec@2.0.0.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.transaction/wildfly-transaction-client@1.1.9.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.wildfly-http-client/wildfly-http-transaction-client@1.0.20.Final?type=jar"}, { "ref": "pkg:maven/org.jboss.security/jboss-negotiation-extras@3.0.6.Final?type=jar", - "dependsOn": ["pkg:maven/org.jboss.security/jboss-negotiation-common@3.0.6.Final?type=jar"] + "dependsOn": [ + "pkg:maven/org.jboss.security/jboss-negotiation-common@3.0.6.Final?type=jar" + ] }, { "ref": "pkg:maven/org.jboss.security/jboss-negotiation-common@3.0.6.Final?type=jar", - "dependsOn": ["pkg:maven/org.jboss.spec.javax.servlet/jboss-servlet-api_3.1_spec@1.0.0.Final?type=jar"] + "dependsOn": [ + "pkg:maven/org.jboss.spec.javax.servlet/jboss-servlet-api_3.1_spec@1.0.0.Final?type=jar" + ] + }, + { + "ref": "pkg:maven/org.jboss.spec.javax.servlet/jboss-servlet-api_3.1_spec@1.0.0.Final?type=jar" + }, + { + "ref": "pkg:maven/org.jboss.security/jboss-negotiation-spnego@3.0.6.Final?type=jar" + }, + { + "ref": "pkg:maven/org.jboss.spec.javax.security.jacc/jboss-jacc-api_1.5_spec@2.0.0.Final?type=jar" + }, + { + "ref": "pkg:maven/org.picketbox/picketbox-infinispan@5.0.3.Final?type=jar" + }, + { "ref": "pkg:maven/org.picketbox/picketbox-commons@1.0.0.final?type=jar" }, + { "ref": "pkg:maven/commons-cli/commons-cli@1.3.1?type=jar" }, + { + "ref": "pkg:maven/org.wildfly.security.elytron-web/undertow-server-servlet@1.7.1.Final?type=jar" }, - {"ref": "pkg:maven/org.jboss.spec.javax.servlet/jboss-servlet-api_3.1_spec@1.0.0.Final?type=jar"}, - {"ref": "pkg:maven/org.jboss.security/jboss-negotiation-spnego@3.0.6.Final?type=jar"}, - {"ref": "pkg:maven/org.jboss.spec.javax.security.jacc/jboss-jacc-api_1.5_spec@2.0.0.Final?type=jar"}, - {"ref": "pkg:maven/org.picketbox/picketbox-infinispan@5.0.3.Final?type=jar"}, - {"ref": "pkg:maven/org.picketbox/picketbox-commons@1.0.0.final?type=jar"}, - {"ref": "pkg:maven/commons-cli/commons-cli@1.3.1?type=jar"}, - {"ref": "pkg:maven/org.wildfly.security.elytron-web/undertow-server-servlet@1.7.1.Final?type=jar"}, { "ref": "pkg:maven/io.undertow/undertow-websockets-jsr@2.1.0.Final?type=jar", - "dependsOn": ["pkg:maven/org.jboss.spec.javax.websocket/jboss-websocket-api_1.1_spec@2.0.0.Final?type=jar"] + "dependsOn": [ + "pkg:maven/org.jboss.spec.javax.websocket/jboss-websocket-api_1.1_spec@2.0.0.Final?type=jar" + ] + }, + { + "ref": "pkg:maven/org.jboss.spec.javax.websocket/jboss-websocket-api_1.1_spec@2.0.0.Final?type=jar" + }, + { + "ref": "pkg:maven/org.jboss.marshalling/jboss-marshalling-river@2.0.7.Final?type=jar" + }, + { + "ref": "pkg:maven/org.wildfly.client/wildfly-client-config@1.0.0.Final?type=jar" }, - {"ref": "pkg:maven/org.jboss.spec.javax.websocket/jboss-websocket-api_1.1_spec@2.0.0.Final?type=jar"}, - {"ref": "pkg:maven/org.jboss.marshalling/jboss-marshalling-river@2.0.7.Final?type=jar"}, - {"ref": "pkg:maven/org.wildfly.client/wildfly-client-config@1.0.0.Final?type=jar"}, { "ref": "pkg:maven/mysql/mysql-connector-java@8.0.18?type=jar", - "dependsOn": ["pkg:maven/com.google.protobuf/protobuf-java@3.6.1?type=jar"] + "dependsOn": [ + "pkg:maven/com.google.protobuf/protobuf-java@3.6.1?type=jar" + ] }, - {"ref": "pkg:maven/com.google.protobuf/protobuf-java@3.6.1?type=jar"}, - {"ref": "pkg:maven/org.postgresql/postgresql@42.2.8?type=jar"}, - {"ref": "pkg:maven/org.mariadb.jdbc/mariadb-java-client@2.2.4?type=jar"}, + { "ref": "pkg:maven/com.google.protobuf/protobuf-java@3.6.1?type=jar" }, + { "ref": "pkg:maven/org.postgresql/postgresql@42.2.8?type=jar" }, + { "ref": "pkg:maven/org.mariadb.jdbc/mariadb-java-client@2.2.4?type=jar" }, { "ref": "pkg:maven/org.jboss.arquillian.container/undertow-embedded@1.0.0.Alpha2?type=jar", "dependsOn": [ @@ -59881,7 +61813,7 @@ "pkg:maven/io.undertow/undertow-core@2.1.0.Final?type=jar" ] }, - {"ref": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-api@1.2.6?type=jar"}, + { "ref": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-api@1.2.6?type=jar" }, { "ref": "pkg:maven/org.jboss.arquillian.container/arquillian-container-spi@1.6.0.Final?type=jar", "dependsOn": [ @@ -59893,10 +61825,16 @@ }, { "ref": "pkg:maven/org.jboss.arquillian.core/arquillian-core-spi@1.6.0.Final?type=jar", - "dependsOn": ["pkg:maven/org.jboss.arquillian.core/arquillian-core-api@1.6.0.Final?type=jar"] + "dependsOn": [ + "pkg:maven/org.jboss.arquillian.core/arquillian-core-api@1.6.0.Final?type=jar" + ] + }, + { + "ref": "pkg:maven/org.jboss.arquillian.core/arquillian-core-api@1.6.0.Final?type=jar" + }, + { + "ref": "pkg:maven/org.jboss.arquillian.config/arquillian-config-api@1.6.0.Final?type=jar" }, - {"ref": "pkg:maven/org.jboss.arquillian.core/arquillian-core-api@1.6.0.Final?type=jar"}, - {"ref": "pkg:maven/org.jboss.arquillian.config/arquillian-config-api@1.6.0.Final?type=jar"}, { "ref": "pkg:maven/org.jboss.arquillian.config/arquillian-config-impl-base@1.6.0.Final?type=jar", "dependsOn": [ @@ -59904,9 +61842,15 @@ "pkg:maven/org.jboss.shrinkwrap.descriptors/shrinkwrap-descriptors-spi@2.0.0?type=jar" ] }, - {"ref": "pkg:maven/org.jboss.arquillian.config/arquillian-config-spi@1.6.0.Final?type=jar"}, - {"ref": "pkg:maven/org.jboss.shrinkwrap.descriptors/shrinkwrap-descriptors-spi@2.0.0?type=jar"}, - {"ref": "pkg:maven/org.jboss.shrinkwrap.descriptors/shrinkwrap-descriptors-api-base@2.0.0?type=jar"}, + { + "ref": "pkg:maven/org.jboss.arquillian.config/arquillian-config-spi@1.6.0.Final?type=jar" + }, + { + "ref": "pkg:maven/org.jboss.shrinkwrap.descriptors/shrinkwrap-descriptors-spi@2.0.0?type=jar" + }, + { + "ref": "pkg:maven/org.jboss.shrinkwrap.descriptors/shrinkwrap-descriptors-api-base@2.0.0?type=jar" + }, { "ref": "pkg:maven/org.jboss.arquillian.container/arquillian-container-test-spi@1.6.0.Final?type=jar", "dependsOn": [ @@ -59916,11 +61860,19 @@ }, { "ref": "pkg:maven/org.jboss.arquillian.test/arquillian-test-spi@1.6.0.Final?type=jar", - "dependsOn": ["pkg:maven/org.jboss.arquillian.test/arquillian-test-api@1.6.0.Final?type=jar"] + "dependsOn": [ + "pkg:maven/org.jboss.arquillian.test/arquillian-test-api@1.6.0.Final?type=jar" + ] + }, + { + "ref": "pkg:maven/org.jboss.arquillian.test/arquillian-test-api@1.6.0.Final?type=jar" + }, + { + "ref": "pkg:maven/org.jboss.arquillian.container/arquillian-container-test-api@1.6.0.Final?type=jar" + }, + { + "ref": "pkg:maven/org.jboss.arquillian.testenricher/arquillian-testenricher-initialcontext@1.6.0.Final?type=jar" }, - {"ref": "pkg:maven/org.jboss.arquillian.test/arquillian-test-api@1.6.0.Final?type=jar"}, - {"ref": "pkg:maven/org.jboss.arquillian.container/arquillian-container-test-api@1.6.0.Final?type=jar"}, - {"ref": "pkg:maven/org.jboss.arquillian.testenricher/arquillian-testenricher-initialcontext@1.6.0.Final?type=jar"}, { "ref": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api-maven@3.1.4?type=jar", "dependsOn": [ @@ -59928,12 +61880,14 @@ "pkg:maven/org.apache.maven/maven-model@3.6.3?type=jar" ] }, - {"ref": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api@3.1.4?type=jar"}, + { + "ref": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api@3.1.4?type=jar" + }, { "ref": "pkg:maven/org.apache.maven/maven-model@3.6.3?type=jar", "dependsOn": ["pkg:maven/org.codehaus.plexus/plexus-utils@3.2.1?type=jar"] }, - {"ref": "pkg:maven/org.codehaus.plexus/plexus-utils@3.2.1?type=jar"}, + { "ref": "pkg:maven/org.codehaus.plexus/plexus-utils@3.2.1?type=jar" }, { "ref": "pkg:maven/org.jboss.arquillian.container/arquillian-container-karaf-managed@2.2.0.Final?type=jar", "dependsOn": [ @@ -59946,15 +61900,23 @@ }, { "ref": "pkg:maven/org.jboss.arquillian.protocol/arquillian-protocol-osgi@2.2.0.Final?type=jar", - "dependsOn": ["pkg:maven/org.jboss.arquillian.protocol/arquillian-protocol-jmx@1.6.0.Final?type=jar"] + "dependsOn": [ + "pkg:maven/org.jboss.arquillian.protocol/arquillian-protocol-jmx@1.6.0.Final?type=jar" + ] + }, + { + "ref": "pkg:maven/org.jboss.arquillian.protocol/arquillian-protocol-jmx@1.6.0.Final?type=jar" }, - {"ref": "pkg:maven/org.jboss.arquillian.protocol/arquillian-protocol-jmx@1.6.0.Final?type=jar"}, { "ref": "pkg:maven/org.jboss.arquillian.testenricher/arquillian-testenricher-osgi@2.2.0.Final?type=jar", - "dependsOn": ["pkg:maven/org.jboss.arquillian.container/arquillian-container-test-impl-base@1.6.0.Final?type=jar"] + "dependsOn": [ + "pkg:maven/org.jboss.arquillian.container/arquillian-container-test-impl-base@1.6.0.Final?type=jar" + ] }, - {"ref": "pkg:maven/org.jboss.arquillian.container/arquillian-container-test-impl-base@1.6.0.Final?type=jar"}, - {"ref": "pkg:maven/org.jboss.osgi.spi/jbosgi-spi@4.0.0.Final?type=jar"}, + { + "ref": "pkg:maven/org.jboss.arquillian.container/arquillian-container-test-impl-base@1.6.0.Final?type=jar" + }, + { "ref": "pkg:maven/org.jboss.osgi.spi/jbosgi-spi@4.0.0.Final?type=jar" }, { "ref": "pkg:maven/org.jboss.osgi.vfs/jbosgi-vfs30@2.0.0.Final?type=jar", "dependsOn": [ @@ -59962,9 +61924,11 @@ "pkg:maven/org.jboss/jboss-vfs@3.1.0.Final?type=jar" ] }, - {"ref": "pkg:maven/org.jboss.osgi.vfs/jbosgi-vfs@2.0.0.Final?type=jar"}, - {"ref": "pkg:maven/org.jboss/jboss-vfs@3.1.0.Final?type=jar"}, - {"ref": "pkg:maven/org.apache.maven.resolver/maven-resolver-api@1.4.1?type=jar"}, + { "ref": "pkg:maven/org.jboss.osgi.vfs/jbosgi-vfs@2.0.0.Final?type=jar" }, + { "ref": "pkg:maven/org.jboss/jboss-vfs@3.1.0.Final?type=jar" }, + { + "ref": "pkg:maven/org.apache.maven.resolver/maven-resolver-api@1.4.1?type=jar" + }, { "ref": "pkg:maven/org.jboss.arquillian.container/arquillian-container-osgi@2.2.0.Final?type=jar", "dependsOn": [ @@ -59984,9 +61948,15 @@ "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-impl-maven-embedded@3.1.4?type=jar" ] }, - {"ref": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-spi@3.1.4?type=jar"}, - {"ref": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-spi-maven@3.1.4?type=jar"}, - {"ref": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api-maven-archive@3.1.4?type=jar"}, + { + "ref": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-spi@3.1.4?type=jar" + }, + { + "ref": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-spi-maven@3.1.4?type=jar" + }, + { + "ref": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api-maven-archive@3.1.4?type=jar" + }, { "ref": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-impl-maven@3.1.4?type=jar", "dependsOn": [ @@ -60019,34 +61989,58 @@ "pkg:maven/org.eclipse.sisu/org.eclipse.sisu.inject@0.3.4?type=jar" ] }, - {"ref": "pkg:maven/org.apache.maven/maven-artifact@3.6.3?type=jar"}, - {"ref": "pkg:maven/org.apache.maven/maven-builder-support@3.6.3?type=jar"}, - {"ref": "pkg:maven/org.eclipse.sisu/org.eclipse.sisu.inject@0.3.4?type=jar"}, - {"ref": "pkg:maven/org.apache.maven/maven-repository-metadata@3.6.3?type=jar"}, - {"ref": "pkg:maven/org.apache.maven/maven-settings@3.6.3?type=jar"}, - {"ref": "pkg:maven/org.apache.maven/maven-settings-builder@3.6.3?type=jar"}, - {"ref": "pkg:maven/org.apache.maven.resolver/maven-resolver-impl@1.4.1?type=jar"}, - {"ref": "pkg:maven/org.apache.maven.resolver/maven-resolver-spi@1.4.1?type=jar"}, - {"ref": "pkg:maven/org.apache.maven.resolver/maven-resolver-util@1.4.1?type=jar"}, - {"ref": "pkg:maven/org.apache.maven.resolver/maven-resolver-connector-basic@1.4.1?type=jar"}, - {"ref": "pkg:maven/org.apache.maven.resolver/maven-resolver-transport-wagon@1.4.1?type=jar"}, - {"ref": "pkg:maven/org.codehaus.plexus/plexus-interpolation@1.25?type=jar"}, + { "ref": "pkg:maven/org.apache.maven/maven-artifact@3.6.3?type=jar" }, + { + "ref": "pkg:maven/org.apache.maven/maven-builder-support@3.6.3?type=jar" + }, + { + "ref": "pkg:maven/org.eclipse.sisu/org.eclipse.sisu.inject@0.3.4?type=jar" + }, + { + "ref": "pkg:maven/org.apache.maven/maven-repository-metadata@3.6.3?type=jar" + }, + { "ref": "pkg:maven/org.apache.maven/maven-settings@3.6.3?type=jar" }, + { + "ref": "pkg:maven/org.apache.maven/maven-settings-builder@3.6.3?type=jar" + }, + { + "ref": "pkg:maven/org.apache.maven.resolver/maven-resolver-impl@1.4.1?type=jar" + }, + { + "ref": "pkg:maven/org.apache.maven.resolver/maven-resolver-spi@1.4.1?type=jar" + }, + { + "ref": "pkg:maven/org.apache.maven.resolver/maven-resolver-util@1.4.1?type=jar" + }, + { + "ref": "pkg:maven/org.apache.maven.resolver/maven-resolver-connector-basic@1.4.1?type=jar" + }, + { + "ref": "pkg:maven/org.apache.maven.resolver/maven-resolver-transport-wagon@1.4.1?type=jar" + }, + { + "ref": "pkg:maven/org.codehaus.plexus/plexus-interpolation@1.25?type=jar" + }, { "ref": "pkg:maven/org.sonatype.plexus/plexus-sec-dispatcher@1.4?type=jar", "dependsOn": ["pkg:maven/org.sonatype.plexus/plexus-cipher@1.7?type=jar"] }, - {"ref": "pkg:maven/org.sonatype.plexus/plexus-cipher@1.7?type=jar"}, - {"ref": "pkg:maven/org.apache.maven.wagon/wagon-provider-api@3.3.4?type=jar"}, - {"ref": "pkg:maven/org.apache.maven.wagon/wagon-file@3.3.4?type=jar"}, + { "ref": "pkg:maven/org.sonatype.plexus/plexus-cipher@1.7?type=jar" }, + { + "ref": "pkg:maven/org.apache.maven.wagon/wagon-provider-api@3.3.4?type=jar" + }, + { "ref": "pkg:maven/org.apache.maven.wagon/wagon-file@3.3.4?type=jar" }, { "ref": "pkg:maven/org.apache.maven.wagon/wagon-http-lightweight@2.12?type=jar", - "dependsOn": ["pkg:maven/org.apache.maven.wagon/wagon-http-shared@2.12?type=jar"] + "dependsOn": [ + "pkg:maven/org.apache.maven.wagon/wagon-http-shared@2.12?type=jar" + ] }, { "ref": "pkg:maven/org.apache.maven.wagon/wagon-http-shared@2.12?type=jar", "dependsOn": ["pkg:maven/org.jsoup/jsoup@1.12.1?type=jar"] }, - {"ref": "pkg:maven/org.jsoup/jsoup@1.12.1?type=jar"}, + { "ref": "pkg:maven/org.jsoup/jsoup@1.12.1?type=jar" }, { "ref": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-impl-maven-archive@3.1.4?type=jar", "dependsOn": [ @@ -60058,28 +62052,44 @@ }, { "ref": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-impl-base@1.2.6?type=jar", - "dependsOn": ["pkg:maven/org.jboss.shrinkwrap/shrinkwrap-spi@1.2.6?type=jar"] + "dependsOn": [ + "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-spi@1.2.6?type=jar" + ] + }, + { "ref": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-spi@1.2.6?type=jar" }, + { + "ref": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-spi-maven-archive@3.1.4?type=jar" + }, + { + "ref": "pkg:maven/org.eclipse.sisu/org.eclipse.sisu.plexus@0.3.4?type=jar" }, - {"ref": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-spi@1.2.6?type=jar"}, - {"ref": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-spi-maven-archive@3.1.4?type=jar"}, - {"ref": "pkg:maven/org.eclipse.sisu/org.eclipse.sisu.plexus@0.3.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"] + "dependsOn": [ + "pkg:maven/org.codehaus.plexus/plexus-compiler-api@2.7?type=jar" + ] }, - {"ref": "pkg:maven/org.codehaus.plexus/plexus-compiler-api@2.7?type=jar"}, + { "ref": "pkg:maven/org.codehaus.plexus/plexus-compiler-api@2.7?type=jar" }, { "ref": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api-maven-embedded@3.1.4?type=jar", - "dependsOn": ["pkg:maven/org.apache.maven.shared/maven-invoker@3.0.0?type=jar"] + "dependsOn": [ + "pkg:maven/org.apache.maven.shared/maven-invoker@3.0.0?type=jar" + ] }, { "ref": "pkg:maven/org.apache.maven.shared/maven-invoker@3.0.0?type=jar", - "dependsOn": ["pkg:maven/org.codehaus.plexus/plexus-component-annotations@2.1.0?type=jar"] + "dependsOn": [ + "pkg:maven/org.codehaus.plexus/plexus-component-annotations@2.1.0?type=jar" + ] + }, + { + "ref": "pkg:maven/org.codehaus.plexus/plexus-component-annotations@2.1.0?type=jar" }, - {"ref": "pkg:maven/org.codehaus.plexus/plexus-component-annotations@2.1.0?type=jar"}, { "ref": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-impl-maven-embedded@3.1.4?type=jar", - "dependsOn": ["pkg:maven/org.arquillian.spacelift/arquillian-spacelift@1.0.2?type=jar"] + "dependsOn": [ + "pkg:maven/org.arquillian.spacelift/arquillian-spacelift@1.0.2?type=jar" + ] }, { "ref": "pkg:maven/org.arquillian.spacelift/arquillian-spacelift@1.0.2?type=jar", @@ -60088,8 +62098,10 @@ "pkg:maven/org.apache.commons/commons-compress@1.8.1?type=jar" ] }, - {"ref": "pkg:maven/org.arquillian.spacelift/arquillian-spacelift-api@1.0.2?type=jar"}, - {"ref": "pkg:maven/org.apache.commons/commons-compress@1.8.1?type=jar"}, + { + "ref": "pkg:maven/org.arquillian.spacelift/arquillian-spacelift-api@1.0.2?type=jar" + }, + { "ref": "pkg:maven/org.apache.commons/commons-compress@1.8.1?type=jar" }, { "ref": "pkg:maven/org.jboss.osgi.metadata/jbosgi-metadata@4.0.0.CR1?type=jar", "dependsOn": ["pkg:maven/org.osgi/org.osgi.core@4.2.0?type=jar"] @@ -60103,15 +62115,17 @@ "pkg:maven/io.undertow/undertow-servlet@2.1.0.Final?type=jar" ] }, - {"ref": "pkg:maven/org.glassfish/javax.el@3.0.1-b08?type=jar"}, - {"ref": "pkg:maven/org.eclipse.jdt.core.compiler/ecj@4.6.1?type=jar"}, - {"ref": "pkg:maven/org.jboss.spec.javax.ws.rs/jboss-jaxrs-api_2.1_spec@1.0.1.Final?type=jar"}, - {"ref": "pkg:maven/org.hamcrest/hamcrest-all@1.3?type=jar"}, + { "ref": "pkg:maven/org.glassfish/javax.el@3.0.1-b08?type=jar" }, + { "ref": "pkg:maven/org.eclipse.jdt.core.compiler/ecj@4.6.1?type=jar" }, + { + "ref": "pkg:maven/org.jboss.spec.javax.ws.rs/jboss-jaxrs-api_2.1_spec@1.0.1.Final?type=jar" + }, + { "ref": "pkg:maven/org.hamcrest/hamcrest-all@1.3?type=jar" }, { "ref": "pkg:maven/org.apache.sshd/sshd-core@2.2.0?type=jar", "dependsOn": ["pkg:maven/org.apache.sshd/sshd-common@2.2.0?type=jar"] }, - {"ref": "pkg:maven/org.apache.sshd/sshd-common@2.2.0?type=jar"}, + { "ref": "pkg:maven/org.apache.sshd/sshd-common@2.2.0?type=jar" }, { "ref": "pkg:maven/org.keycloak/keycloak-testsuite-utils@10.0.2?type=jar", "dependsOn": [ @@ -60147,7 +62161,7 @@ "pkg:maven/org.mariadb.jdbc/mariadb-java-client@2.2.4?type=jar" ] }, - {"ref": "pkg:maven/org.fusesource.jansi/jansi@1.17.1?type=jar"}, + { "ref": "pkg:maven/org.fusesource.jansi/jansi@1.17.1?type=jar" }, { "ref": "pkg:maven/org.keycloak.testsuite/integration-arquillian-util@10.0.2?type=jar", "dependsOn": [ @@ -60177,9 +62191,15 @@ "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-impl-base@1.2.6?type=jar" ] }, - {"ref": "pkg:maven/org.jboss.arquillian.junit/arquillian-junit-core@1.6.0.Final?type=jar"}, - {"ref": "pkg:maven/org.jboss.arquillian.core/arquillian-core-impl-base@1.6.0.Final?type=jar"}, - {"ref": "pkg:maven/org.jboss.arquillian.test/arquillian-test-impl-base@1.6.0.Final?type=jar"}, + { + "ref": "pkg:maven/org.jboss.arquillian.junit/arquillian-junit-core@1.6.0.Final?type=jar" + }, + { + "ref": "pkg:maven/org.jboss.arquillian.core/arquillian-core-impl-base@1.6.0.Final?type=jar" + }, + { + "ref": "pkg:maven/org.jboss.arquillian.test/arquillian-test-impl-base@1.6.0.Final?type=jar" + }, { "ref": "pkg:maven/org.jboss.arquillian.container/arquillian-container-impl-base@1.6.0.Final?type=jar", "dependsOn": [ @@ -60200,7 +62220,9 @@ }, { "ref": "pkg:maven/org.keycloak.testsuite/integration-arquillian-servers-app-server-spi@10.0.2?type=jar", - "dependsOn": ["pkg:maven/org.jboss.arquillian.protocol/arquillian-protocol-servlet@1.6.0.Final?type=jar"] + "dependsOn": [ + "pkg:maven/org.jboss.arquillian.protocol/arquillian-protocol-servlet@1.6.0.Final?type=jar" + ] }, { "ref": "pkg:maven/commons-configuration/commons-configuration@1.10?type=jar", @@ -60209,8 +62231,8 @@ "pkg:maven/commons-logging/commons-logging@1.1.1?type=jar" ] }, - {"ref": "pkg:maven/commons-logging/commons-logging@1.1.1?type=jar"}, - {"ref": "pkg:maven/commons-io/commons-io@2.5?type=jar"}, + { "ref": "pkg:maven/commons-logging/commons-logging@1.1.1?type=jar" }, + { "ref": "pkg:maven/commons-io/commons-io@2.5?type=jar" }, { "ref": "pkg:maven/org.subethamail/subethasmtp@3.1.7?type=jar", "dependsOn": [ @@ -60219,8 +62241,8 @@ "pkg:maven/com.google.code.findbugs/jsr305@1.3.9?type=jar" ] }, - {"ref": "pkg:maven/javax.mail/mail@1.4.4?type=jar"}, - {"ref": "pkg:maven/javax.activation/activation@1.1.1?type=jar"}, + { "ref": "pkg:maven/javax.mail/mail@1.4.4?type=jar" }, + { "ref": "pkg:maven/javax.activation/activation@1.1.1?type=jar" }, { "ref": "pkg:maven/org.keycloak.testsuite/integration-arquillian-servers-app-server-undertow@10.0.2?type=jar", "dependsOn": [ @@ -60231,8 +62253,10 @@ "pkg:maven/org.jboss.spec.javax.servlet.jsp/jboss-jsp-api_2.3_spec@2.0.0.Final?type=jar" ] }, - {"ref": "pkg:maven/org.keycloak.testsuite/photoz-restful-api@10.0.2?classifier=classes&type=jar"}, - {"ref": "pkg:maven/org.mvel/mvel2@2.4.0.Final?type=jar"}, + { + "ref": "pkg:maven/org.keycloak.testsuite/photoz-restful-api@10.0.2?classifier=classes&type=jar" + }, + { "ref": "pkg:maven/org.mvel/mvel2@2.4.0.Final?type=jar" }, { "ref": "pkg:maven/org.wildfly.extras.creaper/creaper-commands@1.6.1?type=jar", "dependsOn": [ @@ -60241,9 +62265,11 @@ "pkg:maven/org.codehaus.groovy/groovy-xml@2.4.10?type=jar" ] }, - {"ref": "pkg:maven/org.wildfly.extras.creaper/creaper-core@1.6.1?type=jar"}, - {"ref": "pkg:maven/org.codehaus.groovy/groovy@2.4.10?type=jar"}, - {"ref": "pkg:maven/org.codehaus.groovy/groovy-xml@2.4.10?type=jar"}, + { + "ref": "pkg:maven/org.wildfly.extras.creaper/creaper-core@1.6.1?type=jar" + }, + { "ref": "pkg:maven/org.codehaus.groovy/groovy@2.4.10?type=jar" }, + { "ref": "pkg:maven/org.codehaus.groovy/groovy-xml@2.4.10?type=jar" }, { "ref": "pkg:maven/org.jboss.arquillian.graphene/graphene-webdriver@2.3.2?type=pom", "dependsOn": [ @@ -60254,8 +62280,12 @@ "pkg:maven/org.seleniumhq.selenium/selenium-java@3.14.0?type=jar" ] }, - {"ref": "pkg:maven/org.jboss.arquillian.graphene/graphene-webdriver-api@2.3.2?type=jar"}, - {"ref": "pkg:maven/org.jboss.arquillian.graphene/graphene-webdriver-spi@2.3.2?type=jar"}, + { + "ref": "pkg:maven/org.jboss.arquillian.graphene/graphene-webdriver-api@2.3.2?type=jar" + }, + { + "ref": "pkg:maven/org.jboss.arquillian.graphene/graphene-webdriver-spi@2.3.2?type=jar" + }, { "ref": "pkg:maven/org.jboss.arquillian.graphene/graphene-webdriver-impl@2.3.2?type=jar", "dependsOn": [ @@ -60265,10 +62295,14 @@ "pkg:maven/org.objenesis/objenesis@1.2?type=jar" ] }, - {"ref": "pkg:maven/org.jboss.arquillian.extension/arquillian-drone-impl@2.5.1?type=jar"}, - {"ref": "pkg:maven/org.jboss.arquillian.extension/arquillian-drone-configuration@2.5.1?type=jar"}, - {"ref": "pkg:maven/cglib/cglib-nodep@3.2.5?type=jar"}, - {"ref": "pkg:maven/org.objenesis/objenesis@1.2?type=jar"}, + { + "ref": "pkg:maven/org.jboss.arquillian.extension/arquillian-drone-impl@2.5.1?type=jar" + }, + { + "ref": "pkg:maven/org.jboss.arquillian.extension/arquillian-drone-configuration@2.5.1?type=jar" + }, + { "ref": "pkg:maven/cglib/cglib-nodep@3.2.5?type=jar" }, + { "ref": "pkg:maven/org.objenesis/objenesis@1.2?type=jar" }, { "ref": "pkg:maven/org.jboss.arquillian.extension/arquillian-drone-webdriver-depchain@2.5.1?type=pom", "dependsOn": [ @@ -60284,12 +62318,24 @@ "pkg:maven/org.seleniumhq.selenium/selenium-edge-driver@3.14.0?type=jar" ] }, - {"ref": "pkg:maven/org.jboss.arquillian.extension/arquillian-drone-api@2.5.1?type=jar"}, - {"ref": "pkg:maven/org.jboss.arquillian.extension/arquillian-drone-spi@2.5.1?type=jar"}, - {"ref": "pkg:maven/org.seleniumhq.selenium/selenium-chrome-driver@3.14.0?type=jar"}, - {"ref": "pkg:maven/org.seleniumhq.selenium/selenium-firefox-driver@3.14.0?type=jar"}, - {"ref": "pkg:maven/org.seleniumhq.selenium/selenium-ie-driver@3.14.0?type=jar"}, - {"ref": "pkg:maven/org.seleniumhq.selenium/selenium-remote-driver@3.14.0?type=jar"}, + { + "ref": "pkg:maven/org.jboss.arquillian.extension/arquillian-drone-api@2.5.1?type=jar" + }, + { + "ref": "pkg:maven/org.jboss.arquillian.extension/arquillian-drone-spi@2.5.1?type=jar" + }, + { + "ref": "pkg:maven/org.seleniumhq.selenium/selenium-chrome-driver@3.14.0?type=jar" + }, + { + "ref": "pkg:maven/org.seleniumhq.selenium/selenium-firefox-driver@3.14.0?type=jar" + }, + { + "ref": "pkg:maven/org.seleniumhq.selenium/selenium-ie-driver@3.14.0?type=jar" + }, + { + "ref": "pkg:maven/org.seleniumhq.selenium/selenium-remote-driver@3.14.0?type=jar" + }, { "ref": "pkg:maven/org.seleniumhq.selenium/htmlunit-driver@2.27?type=jar", "dependsOn": ["pkg:maven/net.sourceforge.htmlunit/htmlunit@2.27?type=jar"] @@ -60309,13 +62355,15 @@ "ref": "pkg:maven/xalan/xalan@2.7.2?type=jar", "dependsOn": ["pkg:maven/xalan/serializer@2.7.2?type=jar"] }, - {"ref": "pkg:maven/xalan/serializer@2.7.2?type=jar"}, - {"ref": "pkg:maven/net.sourceforge.htmlunit/htmlunit-core-js@2.27?type=jar"}, + { "ref": "pkg:maven/xalan/serializer@2.7.2?type=jar" }, + { + "ref": "pkg:maven/net.sourceforge.htmlunit/htmlunit-core-js@2.27?type=jar" + }, { "ref": "pkg:maven/net.sourceforge.htmlunit/neko-htmlunit@2.27?type=jar", "dependsOn": ["pkg:maven/xerces/xercesImpl@2.11.0?type=jar"] }, - {"ref": "pkg:maven/xerces/xercesImpl@2.11.0?type=jar"}, + { "ref": "pkg:maven/xerces/xercesImpl@2.11.0?type=jar" }, { "ref": "pkg:maven/net.sourceforge.cssparser/cssparser@0.9.23?type=jar", "dependsOn": ["pkg:maven/org.w3c.css/sac@1.3?type=jar"] @@ -60329,21 +62377,37 @@ "pkg:maven/org.eclipse.jetty.websocket/websocket-common@9.4.5.v20170502?type=jar" ] }, - {"ref": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.5.v20170502?type=jar"}, - {"ref": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.5.v20170502?type=jar"}, + { + "ref": "pkg:maven/org.eclipse.jetty/jetty-util@9.4.5.v20170502?type=jar" + }, + { "ref": "pkg:maven/org.eclipse.jetty/jetty-io@9.4.5.v20170502?type=jar" }, { "ref": "pkg:maven/org.eclipse.jetty/jetty-client@9.4.5.v20170502?type=jar", - "dependsOn": ["pkg:maven/org.eclipse.jetty/jetty-http@9.4.5.v20170502?type=jar"] + "dependsOn": [ + "pkg:maven/org.eclipse.jetty/jetty-http@9.4.5.v20170502?type=jar" + ] + }, + { + "ref": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.5.v20170502?type=jar" }, - {"ref": "pkg:maven/org.eclipse.jetty/jetty-http@9.4.5.v20170502?type=jar"}, { "ref": "pkg:maven/org.eclipse.jetty.websocket/websocket-common@9.4.5.v20170502?type=jar", - "dependsOn": ["pkg:maven/org.eclipse.jetty.websocket/websocket-api@9.4.5.v20170502?type=jar"] + "dependsOn": [ + "pkg:maven/org.eclipse.jetty.websocket/websocket-api@9.4.5.v20170502?type=jar" + ] + }, + { + "ref": "pkg:maven/org.eclipse.jetty.websocket/websocket-api@9.4.5.v20170502?type=jar" + }, + { + "ref": "pkg:maven/org.seleniumhq.selenium/selenium-opera-driver@3.14.0?type=jar" + }, + { + "ref": "pkg:maven/org.seleniumhq.selenium/selenium-safari-driver@3.14.0?type=jar" + }, + { + "ref": "pkg:maven/org.seleniumhq.selenium/selenium-edge-driver@3.14.0?type=jar" }, - {"ref": "pkg:maven/org.eclipse.jetty.websocket/websocket-api@9.4.5.v20170502?type=jar"}, - {"ref": "pkg:maven/org.seleniumhq.selenium/selenium-opera-driver@3.14.0?type=jar"}, - {"ref": "pkg:maven/org.seleniumhq.selenium/selenium-safari-driver@3.14.0?type=jar"}, - {"ref": "pkg:maven/org.seleniumhq.selenium/selenium-edge-driver@3.14.0?type=jar"}, { "ref": "pkg:maven/org.seleniumhq.selenium/selenium-java@3.14.0?type=jar", "dependsOn": [ @@ -60353,10 +62417,10 @@ "pkg:maven/com.squareup.okio/okio@1.14.1?type=jar" ] }, - {"ref": "pkg:maven/net.bytebuddy/byte-buddy@1.8.15?type=jar"}, - {"ref": "pkg:maven/org.apache.commons/commons-exec@1.3?type=jar"}, - {"ref": "pkg:maven/com.squareup.okhttp3/okhttp@3.10.0?type=jar"}, - {"ref": "pkg:maven/com.squareup.okio/okio@1.14.1?type=jar"}, + { "ref": "pkg:maven/net.bytebuddy/byte-buddy@1.8.15?type=jar" }, + { "ref": "pkg:maven/org.apache.commons/commons-exec@1.3?type=jar" }, + { "ref": "pkg:maven/com.squareup.okhttp3/okhttp@3.10.0?type=jar" }, + { "ref": "pkg:maven/com.squareup.okio/okio@1.14.1?type=jar" }, { "ref": "pkg:maven/org.jboss.arquillian.extension/arquillian-phantom-driver@1.2.1.Final?type=jar", "dependsOn": [ @@ -60364,7 +62428,7 @@ "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-depchain@3.1.4?type=pom" ] }, - {"ref": "pkg:maven/com.codeborne/phantomjsdriver@1.4.1?type=jar"}, + { "ref": "pkg:maven/com.codeborne/phantomjsdriver@1.4.1?type=jar" }, { "ref": "pkg:maven/org.jboss.arquillian.graphene/arquillian-browser-screenshooter@2.3.2?type=jar", "dependsOn": [ @@ -60388,10 +62452,14 @@ "pkg:maven/com.jhlabs/filters@2.0.235?type=jar" ] }, - {"ref": "pkg:maven/org.arquillian.extension/arquillian-recorder-api@1.1.0.Final?type=jar"}, + { + "ref": "pkg:maven/org.arquillian.extension/arquillian-recorder-api@1.1.0.Final?type=jar" + }, { "ref": "pkg:maven/org.arquillian.extension/arquillian-recorder-reporter-api@1.1.0.Final?type=jar", - "dependsOn": ["pkg:maven/org.eclipse.persistence/org.eclipse.persistence.moxy@2.5.1?type=jar"] + "dependsOn": [ + "pkg:maven/org.eclipse.persistence/org.eclipse.persistence.moxy@2.5.1?type=jar" + ] }, { "ref": "pkg:maven/org.eclipse.persistence/org.eclipse.persistence.moxy@2.5.1?type=jar", @@ -60402,11 +62470,17 @@ }, { "ref": "pkg:maven/org.eclipse.persistence/org.eclipse.persistence.core@2.5.1?type=jar", - "dependsOn": ["pkg:maven/org.eclipse.persistence/org.eclipse.persistence.asm@2.5.1?type=jar"] + "dependsOn": [ + "pkg:maven/org.eclipse.persistence/org.eclipse.persistence.asm@2.5.1?type=jar" + ] + }, + { + "ref": "pkg:maven/org.eclipse.persistence/org.eclipse.persistence.asm@2.5.1?type=jar" + }, + { + "ref": "pkg:maven/org.eclipse.persistence/org.eclipse.persistence.antlr@2.5.1?type=jar" }, - {"ref": "pkg:maven/org.eclipse.persistence/org.eclipse.persistence.asm@2.5.1?type=jar"}, - {"ref": "pkg:maven/org.eclipse.persistence/org.eclipse.persistence.antlr@2.5.1?type=jar"}, - {"ref": "pkg:maven/com.jhlabs/filters@2.0.235?type=jar"}, + { "ref": "pkg:maven/com.jhlabs/filters@2.0.235?type=jar" }, { "ref": "pkg:maven/org.arquillian.extension/arquillian-recorder-reporter-impl@1.1.0.Final?type=jar", "dependsOn": [ @@ -60414,13 +62488,21 @@ "pkg:maven/org.arquillian.extension/arquillian-recorder-video-api@1.1.0.Final?type=jar" ] }, - {"ref": "pkg:maven/org.arquillian.extension/arquillian-recorder-reporter-spi@1.1.0.Final?type=jar"}, - {"ref": "pkg:maven/org.arquillian.extension/arquillian-recorder-video-api@1.1.0.Final?type=jar"}, + { + "ref": "pkg:maven/org.arquillian.extension/arquillian-recorder-reporter-spi@1.1.0.Final?type=jar" + }, + { + "ref": "pkg:maven/org.arquillian.extension/arquillian-recorder-video-api@1.1.0.Final?type=jar" + }, { "ref": "pkg:maven/org.arquillian.extension/arquillian-recorder-screenshooter-spi@1.1.0.Final?type=jar", - "dependsOn": ["pkg:maven/org.arquillian.extension/arquillian-recorder-spi@1.1.0.Final?type=jar"] + "dependsOn": [ + "pkg:maven/org.arquillian.extension/arquillian-recorder-spi@1.1.0.Final?type=jar" + ] + }, + { + "ref": "pkg:maven/org.arquillian.extension/arquillian-recorder-spi@1.1.0.Final?type=jar" }, - {"ref": "pkg:maven/org.arquillian.extension/arquillian-recorder-spi@1.1.0.Final?type=jar"}, { "ref": "pkg:maven/org.jboss.arquillian.extension/arquillian-drone-webdriver@2.5.1?type=jar", "dependsOn": [ @@ -60429,7 +62511,7 @@ "pkg:maven/org.awaitility/awaitility@3.0.0?type=jar" ] }, - {"ref": "pkg:maven/org.awaitility/awaitility@3.0.0?type=jar"}, + { "ref": "pkg:maven/org.awaitility/awaitility@3.0.0?type=jar" }, { "ref": "pkg:maven/io.appium/java-client@6.1.0?type=jar", "dependsOn": [ @@ -60444,14 +62526,16 @@ "pkg:maven/org.openpnp/opencv@3.2.0-1?type=jar" ] }, - {"ref": "pkg:maven/org.seleniumhq.selenium/selenium-support@3.14.0?type=jar"}, - {"ref": "pkg:maven/org.seleniumhq.selenium/selenium-api@3.14.0?type=jar"}, - {"ref": "pkg:maven/com.google.code.gson/gson@2.8.4?type=jar"}, + { + "ref": "pkg:maven/org.seleniumhq.selenium/selenium-support@3.14.0?type=jar" + }, + { "ref": "pkg:maven/org.seleniumhq.selenium/selenium-api@3.14.0?type=jar" }, + { "ref": "pkg:maven/com.google.code.gson/gson@2.8.4?type=jar" }, { "ref": "pkg:maven/cglib/cglib@3.2.6?type=jar", "dependsOn": ["pkg:maven/org.ow2.asm/asm@6.0?type=jar"] }, - {"ref": "pkg:maven/org.ow2.asm/asm@6.0?type=jar"}, + { "ref": "pkg:maven/org.ow2.asm/asm@6.0?type=jar" }, { "ref": "pkg:maven/commons-validator/commons-validator@1.6?type=jar", "dependsOn": [ @@ -60460,8 +62544,8 @@ "pkg:maven/commons-collections/commons-collections@3.2.2?type=jar" ] }, - {"ref": "pkg:maven/commons-beanutils/commons-beanutils@1.9.2?type=jar"}, - {"ref": "pkg:maven/commons-digester/commons-digester@1.8.1?type=jar"}, + { "ref": "pkg:maven/commons-beanutils/commons-beanutils@1.9.2?type=jar" }, + { "ref": "pkg:maven/commons-digester/commons-digester@1.8.1?type=jar" }, { "ref": "pkg:maven/org.springframework/spring-context@5.0.5.RELEASE?type=jar", "dependsOn": [ @@ -60471,21 +62555,31 @@ "pkg:maven/org.springframework/spring-expression@5.0.5.RELEASE?type=jar" ] }, - {"ref": "pkg:maven/org.springframework/spring-aop@5.0.5.RELEASE?type=jar"}, - {"ref": "pkg:maven/org.springframework/spring-beans@5.0.5.RELEASE?type=jar"}, + { + "ref": "pkg:maven/org.springframework/spring-aop@5.0.5.RELEASE?type=jar" + }, + { + "ref": "pkg:maven/org.springframework/spring-beans@5.0.5.RELEASE?type=jar" + }, { "ref": "pkg:maven/org.springframework/spring-core@5.0.5.RELEASE?type=jar", - "dependsOn": ["pkg:maven/org.springframework/spring-jcl@5.0.5.RELEASE?type=jar"] + "dependsOn": [ + "pkg:maven/org.springframework/spring-jcl@5.0.5.RELEASE?type=jar" + ] + }, + { + "ref": "pkg:maven/org.springframework/spring-jcl@5.0.5.RELEASE?type=jar" + }, + { + "ref": "pkg:maven/org.springframework/spring-expression@5.0.5.RELEASE?type=jar" }, - {"ref": "pkg:maven/org.springframework/spring-jcl@5.0.5.RELEASE?type=jar"}, - {"ref": "pkg:maven/org.springframework/spring-expression@5.0.5.RELEASE?type=jar"}, - {"ref": "pkg:maven/org.aspectj/aspectjweaver@1.9.1?type=jar"}, - {"ref": "pkg:maven/org.openpnp/opencv@3.2.0-1?type=jar"}, + { "ref": "pkg:maven/org.aspectj/aspectjweaver@1.9.1?type=jar" }, + { "ref": "pkg:maven/org.openpnp/opencv@3.2.0-1?type=jar" }, { "ref": "pkg:maven/jfree/jfreechart@1.0.13?type=jar", "dependsOn": ["pkg:maven/jfree/jcommon@1.0.16?type=jar"] }, - {"ref": "pkg:maven/jfree/jcommon@1.0.16?type=jar"}, + { "ref": "pkg:maven/jfree/jcommon@1.0.16?type=jar" }, { "ref": "pkg:maven/org.keycloak.testsuite/integration-arquillian-test-apps-servlets@10.0.2?type=jar", "dependsOn": [ @@ -60504,10 +62598,12 @@ "ref": "pkg:maven/org.apache.ant/ant@1.8.4?type=jar", "dependsOn": ["pkg:maven/org.apache.ant/ant-launcher@1.8.4?type=jar"] }, - {"ref": "pkg:maven/org.apache.ant/ant-launcher@1.8.4?type=jar"}, + { "ref": "pkg:maven/org.apache.ant/ant-launcher@1.8.4?type=jar" }, { "ref": "pkg:maven/org.keycloak.testsuite/integration-arquillian-servers-auth-server-undertow@10.0.2?type=jar", - "dependsOn": ["pkg:maven/org.keycloak/keycloak-testsuite-utils@10.0.2?type=jar"] + "dependsOn": [ + "pkg:maven/org.keycloak/keycloak-testsuite-utils@10.0.2?type=jar" + ] }, { "ref": "pkg:maven/org.keycloak/keycloak-client-cli-dist@10.0.2?type=zip", @@ -60531,8 +62627,14 @@ "pkg:maven/org.apache.maven.resolver/maven-resolver-api@1.4.1?type=jar" ] }, - {"ref": "pkg:maven/org.keycloak.testsuite/integration-arquillian-tests-base@10.0.2?classifier=tests&type=test-jar"}, - {"ref": "pkg:maven/org.keycloak.example.demo/customer-portal-example@10.0.2?type=war"}, - {"ref": "pkg:maven/org.keycloak.example.demo/product-portal-example@10.0.2?type=war"} + { + "ref": "pkg:maven/org.keycloak.testsuite/integration-arquillian-tests-base@10.0.2?classifier=tests&type=test-jar" + }, + { + "ref": "pkg:maven/org.keycloak.example.demo/customer-portal-example@10.0.2?type=war" + }, + { + "ref": "pkg:maven/org.keycloak.example.demo/product-portal-example@10.0.2?type=war" + } ] } diff --git a/scripts/test.sh b/scripts/test.sh new file mode 100755 index 0000000..7c26a48 --- /dev/null +++ b/scripts/test.sh @@ -0,0 +1,10 @@ +#!/bin/bash + +# tparse needs -json flag to parse the output.json file +set -o pipefail && TEST_OPTIONS="-json" task test | tee output.json | tparse -follow +success=$? + +set -e +NO_COLOR=true tparse -format markdown -slow 10 -file output.json > $GITHUB_STEP_SUMMARY + +exit $success