diff --git a/.github/workflows/post-merge.yml b/.github/workflows/post-merge.yml
index ef69c30..7b85cab 100644
--- a/.github/workflows/post-merge.yml
+++ b/.github/workflows/post-merge.yml
@@ -54,7 +54,7 @@ jobs:
uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8
id: cache-jdk
with:
- key: OpenJDK17U-jdk_x64_linux_hotspot_17.0.7_7.tar.gz
+ key: OpenJDK21U-jdk_x64_linux_hotspot_21.0.2_13.tar.gz
path: |
${{ runner.temp }}/jdk_setup.tar.gz
${{ runner.temp }}/jdk_setup.sha256
@@ -65,8 +65,8 @@ jobs:
- name: Download JDK and verify its hash
if: steps.semantic.outputs.new_release_published == 'true' && steps.cache-jdk.outputs.cache-hit != 'true'
run: |
- echo "e9458b38e97358850902c2936a1bb5f35f6cffc59da9fcd28c63eab8dbbfbc3b ${{ runner.temp }}/jdk_setup.tar.gz" >> ${{ runner.temp }}/jdk_setup.sha256
- curl -L "https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.7%2B7/OpenJDK17U-jdk_x64_linux_hotspot_17.0.7_7.tar.gz" -o "${{ runner.temp }}/jdk_setup.tar.gz"
+ echo "454bebb2c9fe48d981341461ffb6bf1017c7b7c6e15c6b0c29b959194ba3aaa5 ${{ runner.temp }}/jdk_setup.tar.gz" >> ${{ runner.temp }}/jdk_setup.sha256
+ curl -L "https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.2%2B13/OpenJDK21U-jdk_x64_linux_hotspot_21.0.2_13.tar.gz" -o "${{ runner.temp }}/jdk_setup.tar.gz"
sha256sum --check --status "${{ runner.temp }}/jdk_setup.sha256"
#
@@ -78,7 +78,7 @@ jobs:
with:
distribution: "jdkfile"
jdkFile: "${{ runner.temp }}/jdk_setup.tar.gz"
- java-version: "17"
+ java-version: "21"
cache: maven
#
@@ -89,7 +89,7 @@ jobs:
uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8
id: cache-maven
with:
- key: apache-maven-3.9.2-bin.tar.gz
+ key: apache-maven-3.9.6-bin.tar.gz
path: |
${{ runner.temp }}/maven_setup.tar.gz
${{ runner.temp }}/maven_setup.sha256
@@ -100,8 +100,8 @@ jobs:
- name: Download Maven and verify its hash
if: steps.semantic.outputs.new_release_published == 'true' && steps.cache-maven.outputs.cache-hit != 'true'
run: |
- echo "809ef3220c6d179195c06c324cb9a6d34d8ecba566c5cfd8eb83167bc034117d ${{ runner.temp }}/maven_setup.tar.gz" >> ${{ runner.temp }}/maven_setup.sha256
- curl -L "https://archive.apache.org/dist/maven/maven-3/3.9.2/binaries/apache-maven-3.9.2-bin.tar.gz" -o "${{ runner.temp }}/maven_setup.tar.gz"
+ echo "6eedd2cae3626d6ad3a5c9ee324bd265853d64297f07f033430755bd0e0c3a4b ${{ runner.temp }}/maven_setup.tar.gz" >> ${{ runner.temp }}/maven_setup.sha256
+ curl -L "https://archive.apache.org/dist/maven/maven-3/3.9.6/binaries/apache-maven-3.9.6-bin.tar.gz" -o "${{ runner.temp }}/maven_setup.tar.gz"
sha256sum --check --status "${{ runner.temp }}/maven_setup.sha256"
#
@@ -135,7 +135,7 @@ jobs:
#
- name: RELEASE CANDIDATE - Build native executable
if: steps.semantic.outputs.new_release_published == 'true'
- run: ${{ runner.temp }}/maven/bin/mvn clean package -Pnative -Dmaven.test.skip=true -Dquarkus.native.container-build=true -Dquarkus.native.builder-image=quay.io/quarkus/ubi-quarkus-mandrel-builder-image@sha256:05baf3fd2173f6f25ad35216b6b066c35fbfb97f06daba75efb5b22bc0a85b9c -s ${{ runner.temp }}/settings.xml --no-transfer-progress
+ run: ${{ runner.temp }}/maven/bin/mvn clean package -Pnative -Dmaven.test.skip=true -Dquarkus.native.container-build=true -Dquarkus.native.builder-image=quay.io/quarkus/ubi-quarkus-mandrel-builder-image@sha256:ce70e1a8016471ff0fc9c8f048cd9e37afddacd3de37ed0bca74201d102e45f5 -s ${{ runner.temp }}/settings.xml --no-transfer-progress
#
# RELEASE CANDIDATE - Build Docker image.
@@ -165,15 +165,27 @@ jobs:
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
#
- # RELEASE CANDIDATE - Update Container App.
+ # RELEASE CANDIDATE - Update Container App + OpenAPI descriptor on APIM
#
- - name: RELEASE CANDIDATE - Update Container App
+ - name: RELEASE CANDIDATE - Update Container App + OpenAPI descriptor on APIM
if: steps.semantic.outputs.new_release_published == 'true'
uses: azure/CLI@fa0f960f00db49b95fdb54328a767aee31e80105
with:
inlineScript: |
az config set extension.use_dynamic_install=yes_without_prompt
- az containerapp update -n ${{ secrets.AZURE_CONTAINER_APP_NAME }} -g ${{ secrets.AZURE_RESOURCE_GROUP_NAME }} --image ghcr.io/${{ github.repository }}:${{ steps.semantic.outputs.new_release_version }}-RC
+ az containerapp update -n ${{ secrets.AZURE_CONTAINER_APP_NAME }} -g ${{ secrets.AZURE_RESOURCE_GROUP_NAME }} --subscription ${{ secrets.AZURE_SUBSCRIPTION_ID }} -i ghcr.io/${{ github.repository }}:${{ steps.semantic.outputs.new_release_version }}-RC
+ API_DATA=$(az apim api show --resource-group ${{ secrets.AZURE_APIM_RESOURCE_GROUP }} --service-name ${{ secrets.AZURE_APIM_NAME }} --api-id ${{ secrets.AZURE_APIM_API_ID }} --subscription ${{ secrets.AZURE_SUBSCRIPTION_ID }} --query "{path:path, serviceUrl:serviceUrl}")
+ API_PATH=$(echo $API_DATA | jq -r '.path')
+ API_SERVICE_URL=$(echo $API_DATA | jq -r '.serviceUrl')
+ az apim api import \
+ --resource-group ${{ secrets.AZURE_APIM_RESOURCE_GROUP }} \
+ --service-name ${{ secrets.AZURE_APIM_NAME }} \
+ --api-id ${{ secrets.AZURE_APIM_API_ID }} \
+ --specification-format OpenApi \
+ --specification-path src/main/resources/META-INF/openapi.yaml \
+ --path $API_PATH \
+ --service-url $API_SERVICE_URL \
+ --subscription ${{ secrets.AZURE_SUBSCRIPTION_ID }}
#
# Install Node.
@@ -232,7 +244,7 @@ jobs:
#
- name: STABLE - Build native executable
if: steps.semantic.outputs.new_release_published == 'true'
- run: ${{ runner.temp }}/maven/bin/mvn clean package -Pnative -Dmaven.test.skip=true -Dquarkus.native.container-build=true -Dquarkus.native.builder-image=quay.io/quarkus/ubi-quarkus-mandrel-builder-image@sha256:05baf3fd2173f6f25ad35216b6b066c35fbfb97f06daba75efb5b22bc0a85b9c -s ${{ runner.temp }}/settings.xml --no-transfer-progress
+ run: ${{ runner.temp }}/maven/bin/mvn clean package -Pnative -Dmaven.test.skip=true -Dquarkus.native.container-build=true -Dquarkus.native.builder-image=quay.io/quarkus/ubi-quarkus-mandrel-builder-image@sha256:ce70e1a8016471ff0fc9c8f048cd9e37afddacd3de37ed0bca74201d102e45f5 -s ${{ runner.temp }}/settings.xml --no-transfer-progress
#
# STABLE - Build Docker image.
@@ -259,4 +271,4 @@ jobs:
with:
inlineScript: |
az config set extension.use_dynamic_install=yes_without_prompt
- az containerapp update -n ${{ secrets.AZURE_CONTAINER_APP_NAME }} -g ${{ secrets.AZURE_RESOURCE_GROUP_NAME }} --image ghcr.io/${{ github.repository }}:${{ steps.semantic.outputs.new_release_version }}
+ az containerapp update -n ${{ secrets.AZURE_CONTAINER_APP_NAME }} -g ${{ secrets.AZURE_RESOURCE_GROUP_NAME }} --subscription ${{ secrets.AZURE_SUBSCRIPTION_ID }} -i ghcr.io/${{ github.repository }}:${{ steps.semantic.outputs.new_release_version }}
diff --git a/.github/workflows/pr-validation.yml b/.github/workflows/pr-validation.yml
index ceb9286..0737b0b 100644
--- a/.github/workflows/pr-validation.yml
+++ b/.github/workflows/pr-validation.yml
@@ -44,7 +44,7 @@ jobs:
uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8
id: cache-jdk
with:
- key: OpenJDK17U-jdk_x64_linux_hotspot_17.0.7_7.tar.gz
+ key: OpenJDK21U-jdk_x64_linux_hotspot_21.0.2_13.tar.gz
path: |
${{ runner.temp }}/jdk_setup.tar.gz
${{ runner.temp }}/jdk_setup.sha256
@@ -52,8 +52,8 @@ jobs:
- name: Download JDK and verify its hash
if: steps.cache-jdk.outputs.cache-hit != 'true'
run: |
- echo "e9458b38e97358850902c2936a1bb5f35f6cffc59da9fcd28c63eab8dbbfbc3b ${{ runner.temp }}/jdk_setup.tar.gz" >> ${{ runner.temp }}/jdk_setup.sha256
- curl -L "https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.7%2B7/OpenJDK17U-jdk_x64_linux_hotspot_17.0.7_7.tar.gz" -o "${{ runner.temp }}/jdk_setup.tar.gz"
+ echo "454bebb2c9fe48d981341461ffb6bf1017c7b7c6e15c6b0c29b959194ba3aaa5 ${{ runner.temp }}/jdk_setup.tar.gz" >> ${{ runner.temp }}/jdk_setup.sha256
+ curl -L "https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.2%2B13/OpenJDK21U-jdk_x64_linux_hotspot_21.0.2_13.tar.gz" -o "${{ runner.temp }}/jdk_setup.tar.gz"
sha256sum --check --status "${{ runner.temp }}/jdk_setup.sha256"
- name: Setup JDK
@@ -61,14 +61,14 @@ jobs:
with:
distribution: "jdkfile"
jdkFile: "${{ runner.temp }}/jdk_setup.tar.gz"
- java-version: "17"
+ java-version: "21"
cache: maven
- name: Cache Maven
uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8
id: cache-maven
with:
- key: apache-maven-3.9.2-bin.tar.gz
+ key: apache-maven-3.9.6-bin.tar.gz
path: |
${{ runner.temp }}/maven_setup.tar.gz
${{ runner.temp }}/maven_setup.sha256
@@ -76,8 +76,8 @@ jobs:
- name: Download Maven and verify its hash
if: steps.cache-maven.outputs.cache-hit != 'true'
run: |
- echo "809ef3220c6d179195c06c324cb9a6d34d8ecba566c5cfd8eb83167bc034117d ${{ runner.temp }}/maven_setup.tar.gz" >> ${{ runner.temp }}/maven_setup.sha256
- curl -L "https://archive.apache.org/dist/maven/maven-3/3.9.2/binaries/apache-maven-3.9.2-bin.tar.gz" -o "${{ runner.temp }}/maven_setup.tar.gz"
+ echo "6eedd2cae3626d6ad3a5c9ee324bd265853d64297f07f033430755bd0e0c3a4b ${{ runner.temp }}/maven_setup.tar.gz" >> ${{ runner.temp }}/maven_setup.sha256
+ curl -L "https://archive.apache.org/dist/maven/maven-3/3.9.6/binaries/apache-maven-3.9.6-bin.tar.gz" -o "${{ runner.temp }}/maven_setup.tar.gz"
sha256sum --check --status "${{ runner.temp }}/maven_setup.sha256"
- name: Setup Maven
diff --git a/.github/workflows/validate-manually.yml b/.github/workflows/validate-manually.yml
deleted file mode 100644
index 9308ec2..0000000
--- a/.github/workflows/validate-manually.yml
+++ /dev/null
@@ -1,66 +0,0 @@
-name: Validate
-
-on:
- workflow_dispatch:
-
-jobs:
- validation:
- runs-on: ubuntu-latest
-
- steps:
- - name: Checkout the source code
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab
- with:
- token: ${{ secrets.GIT_PAT }}
- fetch-depth: 0
-
- - name: Cache JDK
- uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8
- id: cache-jdk
- with:
- key: OpenJDK17U-jdk_x64_linux_hotspot_17.0.7_7.tar.gz
- path: |
- ${{ runner.temp }}/jdk_setup.tar.gz
- ${{ runner.temp }}/jdk_setup.sha256
-
- - name: Download JDK and verify its hash
- if: steps.cache-jdk.outputs.cache-hit != 'true'
- run: |
- echo "e9458b38e97358850902c2936a1bb5f35f6cffc59da9fcd28c63eab8dbbfbc3b ${{ runner.temp }}/jdk_setup.tar.gz" >> ${{ runner.temp }}/jdk_setup.sha256
- curl -L "https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.7%2B7/OpenJDK17U-jdk_x64_linux_hotspot_17.0.7_7.tar.gz" -o "${{ runner.temp }}/jdk_setup.tar.gz"
- sha256sum --check --status "${{ runner.temp }}/jdk_setup.sha256"
-
- - name: Setup JDK
- uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2
- with:
- distribution: "jdkfile"
- jdkFile: "${{ runner.temp }}/jdk_setup.tar.gz"
- java-version: "17"
- cache: maven
-
- - name: Cache Maven
- uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8
- id: cache-maven
- with:
- key: apache-maven-3.9.2-bin.tar.gz
- path: |
- ${{ runner.temp }}/maven_setup.tar.gz
- ${{ runner.temp }}/maven_setup.sha256
-
- - name: Download Maven and verify its hash
- if: steps.cache-maven.outputs.cache-hit != 'true'
- run: |
- echo "809ef3220c6d179195c06c324cb9a6d34d8ecba566c5cfd8eb83167bc034117d ${{ runner.temp }}/maven_setup.tar.gz" >> ${{ runner.temp }}/maven_setup.sha256
- curl -L "https://archive.apache.org/dist/maven/maven-3/3.9.2/binaries/apache-maven-3.9.2-bin.tar.gz" -o "${{ runner.temp }}/maven_setup.tar.gz"
- sha256sum --check --status "${{ runner.temp }}/maven_setup.sha256"
-
- - name: Setup Maven
- run: |
- mkdir ${{ runner.temp }}/maven
- tar -xvf ${{ runner.temp }}/maven_setup.tar.gz -C ${{ runner.temp }}/maven --strip-components=1
- echo "github${{ secrets.GIT_USER }}${{ secrets.GIT_PAT }}" >> ${{ runner.temp }}/settings.xml
-
- - name: Execute unit-test + Calculate test coverage + SCA with Sonar
- env:
- SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
- run: ${{ runner.temp }}/maven/bin/mvn verify -Pvalidate -s ${{ runner.temp }}/settings.xml --no-transfer-progress
diff --git a/dep-sha256-man.json b/dep-sha256-man.json
new file mode 100644
index 0000000..41f4925
--- /dev/null
+++ b/dep-sha256-man.json
@@ -0,0 +1,25 @@
+{
+ "dependencies": [
+ {
+ "id": "com.aayushatharva.brotli4j:native-osx-aarch64:jar:1.16.0",
+ "artifactId": "native-osx-aarch64",
+ "groupId": "com.aayushatharva.brotli4j",
+ "version": "1.16.0",
+ "sha256": "ZwSoHwKsqDvf9N6IJPNp9kvWMSs8efr3KdFN8F4LJR4="
+ },
+ {
+ "id": "com.aayushatharva.brotli4j:native-windows-x86_64:jar:1.16.0",
+ "artifactId": "native-windows-x86_64",
+ "groupId": "com.aayushatharva.brotli4j",
+ "version": "1.16.0",
+ "sha256": "MwHGGIY_iznHx7M6E9R1aKS2UYMvNmFYm8RQ5qr_DxU="
+ },
+ {
+ "id": "com.aayushatharva.brotli4j:native-linux-x86_64:jar:1.16.0",
+ "artifactId": "native-linux-x86_64",
+ "groupId": "com.aayushatharva.brotli4j",
+ "version": "1.16.0",
+ "sha256": "tpM8OJhX4af0AEVQls7AHudr5z1RqfsRZNJwDT0xBU0="
+ }
+ ]
+}
\ No newline at end of file
diff --git a/dep-sha256.json b/dep-sha256.json
index c316b0f..b8b50d0 100644
--- a/dep-sha256.json
+++ b/dep-sha256.json
@@ -1,67 +1,67 @@
{
"dependencies": [
{
- "id": "it.pagopa.swclient.mil:common:jar:2.1.0",
+ "id": "it.pagopa.swclient.mil:common:jar:2.2.1",
"artifactId": "common",
"groupId": "it.pagopa.swclient.mil",
- "version": "2.1.0",
- "sha256": "8SAtPJV3xz7X2T5U5wEBWRDmAND00hNi1DjjsMsSPPM="
+ "version": "2.2.1",
+ "sha256": "PeyFleAZZ_KdPBk47YVNmv6-qLKt-GpwMLusCEKGdF0="
},
{
- "id": "io.quarkus:quarkus-resteasy-reactive-jackson:jar:3.1.1.Final",
- "artifactId": "quarkus-resteasy-reactive-jackson",
+ "id": "io.quarkus:quarkus-rest-jackson:jar:3.10.0",
+ "artifactId": "quarkus-rest-jackson",
"groupId": "io.quarkus",
- "version": "3.1.1.Final",
- "sha256": "wbRfXLgAutSq_cR1Q1VevGTfvHNciIXIkv_7cnULrJA="
+ "version": "3.10.0",
+ "sha256": "CRObU9HICEwOhdMOg4zRAu6JRuGKrk9Vsdy_GguxGQc="
},
{
- "id": "io.quarkus:quarkus-resteasy-reactive-jackson-common:jar:3.1.1.Final",
- "artifactId": "quarkus-resteasy-reactive-jackson-common",
+ "id": "io.quarkus:quarkus-rest-jackson-common:jar:3.10.0",
+ "artifactId": "quarkus-rest-jackson-common",
"groupId": "io.quarkus",
- "version": "3.1.1.Final",
- "sha256": "p-1XPOnrWzXkiEE4Lei0_iHOPlhHTaoQLVEwOnCu52Q="
+ "version": "3.10.0",
+ "sha256": "YY2cZc46eJVKO5jFXh-qSEgbk5gtuI24o6k4HYovEcI="
},
{
- "id": "io.quarkus:quarkus-jackson:jar:3.1.1.Final",
+ "id": "io.quarkus:quarkus-jackson:jar:3.10.0",
"artifactId": "quarkus-jackson",
"groupId": "io.quarkus",
- "version": "3.1.1.Final",
- "sha256": "gYcjcEAN5coFikbxP0rzzAtGPhDg9Irjp_Df-732osQ="
+ "version": "3.10.0",
+ "sha256": "vaaeO-yjszcwgktWAvwJAPgtnCBJf3JQBf1-MluiYPI="
},
{
- "id": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:2.15.2",
+ "id": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:2.17.0",
"artifactId": "jackson-datatype-jsr310",
"groupId": "com.fasterxml.jackson.datatype",
- "version": "2.15.2",
- "sha256": "dXTIGtVwR272qtJvQZKI_UZnM_MxW-4wEvLynJ3ACMg="
+ "version": "2.17.0",
+ "sha256": "lOovIk42YywC2x5mgSfDAYysuFmvwV3fb0xYWRepM5Y="
},
{
- "id": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:jar:2.15.2",
+ "id": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:jar:2.17.0",
"artifactId": "jackson-datatype-jdk8",
"groupId": "com.fasterxml.jackson.datatype",
- "version": "2.15.2",
- "sha256": "W-biBQSx6rekD5jE-YvZLpF31ubiDxg5KOfSB_xmy3g="
+ "version": "2.17.0",
+ "sha256": "sJAjmWigrloXJHL0AU29lxM6-UJtkb9IBaa6X9kNgPE="
},
{
- "id": "com.fasterxml.jackson.module:jackson-module-parameter-names:jar:2.15.2",
+ "id": "com.fasterxml.jackson.module:jackson-module-parameter-names:jar:2.17.0",
"artifactId": "jackson-module-parameter-names",
"groupId": "com.fasterxml.jackson.module",
- "version": "2.15.2",
- "sha256": "L2JOFjc1CPjjoVNfWm6dgChrh6iZ_RKOX97SaGJf6RM="
+ "version": "2.17.0",
+ "sha256": "H9eUIbuVx0zExEwa5JEOklPyVfJI00w_nlsqvrIUW2o="
},
{
- "id": "io.quarkus:quarkus-hibernate-validator:jar:3.1.1.Final",
+ "id": "io.quarkus:quarkus-hibernate-validator:jar:3.10.0",
"artifactId": "quarkus-hibernate-validator",
"groupId": "io.quarkus",
- "version": "3.1.1.Final",
- "sha256": "buz-M94Gf2QmfgVTiHmlzm8xEccAdSibjyMSpnWrNOs="
+ "version": "3.10.0",
+ "sha256": "40W7e_wEKfpXd1-vRf76BNR6lCbX0jcwdoE5claTWto="
},
{
- "id": "io.quarkus:quarkus-core:jar:3.1.1.Final",
+ "id": "io.quarkus:quarkus-core:jar:3.10.0",
"artifactId": "quarkus-core",
"groupId": "io.quarkus",
- "version": "3.1.1.Final",
- "sha256": "M9Y3PDzwZ5yP1UfT5tv-rGGl5RfpVr5ZjkOk0qiSrVY="
+ "version": "3.10.0",
+ "sha256": "tqElcaOaPbpMvJgwYjrj8zlAxtng7fZtT10Pwr3XLLg="
},
{
"id": "jakarta.enterprise:jakarta.enterprise.cdi-api:jar:4.0.1",
@@ -85,81 +85,60 @@
"sha256": "99yYBi_M8UEmq7dRtk-rEsMSVm6MvchINZi__OqTr3w="
},
{
- "id": "io.smallrye.common:smallrye-common-os:jar:2.1.0",
+ "id": "io.smallrye.common:smallrye-common-os:jar:2.3.0",
"artifactId": "smallrye-common-os",
"groupId": "io.smallrye.common",
- "version": "2.1.0",
- "sha256": "zxlEyMicsNEN4f9L4UMpMJ4FzAW0xIx6RBfc2SjO1r4="
+ "version": "2.3.0",
+ "sha256": "EOmk69cFQWhg9WuAmR3PhYdlPnK5MwQC7R1fgD5_9F0="
},
{
- "id": "io.quarkus:quarkus-ide-launcher:jar:3.1.1.Final",
+ "id": "io.quarkus:quarkus-ide-launcher:jar:3.10.0",
"artifactId": "quarkus-ide-launcher",
"groupId": "io.quarkus",
- "version": "3.1.1.Final",
- "sha256": "c0HJG2CxQYsVhPey4etWaw6F55wV_CPU94rDnM_4TkQ="
+ "version": "3.10.0",
+ "sha256": "-mxjG5JZcQC1vWLTPk4Lr9bojJUrB4pk4iAL98we3Vg="
},
{
- "id": "io.quarkus:quarkus-development-mode-spi:jar:3.1.1.Final",
+ "id": "io.quarkus:quarkus-development-mode-spi:jar:3.10.0",
"artifactId": "quarkus-development-mode-spi",
"groupId": "io.quarkus",
- "version": "3.1.1.Final",
- "sha256": "BEnycr53YoEF5gvJZ9UbSsaAq5bCqq2wAzUzGvAyGJg="
+ "version": "3.10.0",
+ "sha256": "f9RsG91c5MCZLtragIkJLWT3-wXXo8GOs0bjyVJD4s8="
},
{
- "id": "io.smallrye.config:smallrye-config:jar:3.2.1",
+ "id": "io.smallrye.config:smallrye-config:jar:3.7.1",
"artifactId": "smallrye-config",
"groupId": "io.smallrye.config",
- "version": "3.2.1",
- "sha256": "OBGFYr_Ptdle7uo6wQ1mMwFNAqcHAeHmIWMco61LzyY="
+ "version": "3.7.1",
+ "sha256": "mz29hMnWFtRlSemu9M2Eivz_4PMvB_CsjxYTmkZqdxs="
},
{
- "id": "io.smallrye.config:smallrye-config-core:jar:3.2.1",
+ "id": "io.smallrye.config:smallrye-config-core:jar:3.7.1",
"artifactId": "smallrye-config-core",
"groupId": "io.smallrye.config",
- "version": "3.2.1",
- "sha256": "5KtGfWXFQTipZXYELXxyEEqcW6D5KvdYAx8ghJAcwGk="
- },
- {
- "id": "io.smallrye.common:smallrye-common-expression:jar:2.1.0",
- "artifactId": "smallrye-common-expression",
- "groupId": "io.smallrye.common",
- "version": "2.1.0",
- "sha256": "h1R7mgBYaYSi6q_E1dBcKUPSHGSUvFMnHzTgdgzGHgU="
- },
- {
- "id": "io.smallrye.common:smallrye-common-function:jar:2.1.0",
- "artifactId": "smallrye-common-function",
- "groupId": "io.smallrye.common",
- "version": "2.1.0",
- "sha256": "fFygFWVh0aWwTwfOwbSgEvjVnXV5CeR0KOE2dugvoNs="
+ "version": "3.7.1",
+ "sha256": "lTZWQ9r2FH5K2OWC5tfEJAFUN733x1nilGDrNqm0O9Q="
},
{
- "id": "io.smallrye.common:smallrye-common-classloader:jar:2.1.0",
+ "id": "io.smallrye.common:smallrye-common-classloader:jar:2.3.0",
"artifactId": "smallrye-common-classloader",
"groupId": "io.smallrye.common",
- "version": "2.1.0",
- "sha256": "Jwb_NxWPio3lezngd1CInHpwuNrtGseXdBSYOW0T9AI="
+ "version": "2.3.0",
+ "sha256": "btST8ATY8R5JRQI3nvi3EHVD55ndHaMCt0olhK6VDdk="
},
{
- "id": "io.smallrye.config:smallrye-config-common:jar:3.2.1",
+ "id": "io.smallrye.config:smallrye-config-common:jar:3.7.1",
"artifactId": "smallrye-config-common",
"groupId": "io.smallrye.config",
- "version": "3.2.1",
- "sha256": "KYr0DmE95RsNSH7hMPALpdXu_ExpsHJVCnbA98cdYm4="
+ "version": "3.7.1",
+ "sha256": "q5zUShgByLiyiIoelay9ApHMYYifiwATsyOmvvuJpnA="
},
{
- "id": "org.jboss.logging:jboss-logging:jar:3.5.0.Final",
+ "id": "org.jboss.logging:jboss-logging:jar:3.5.3.Final",
"artifactId": "jboss-logging",
"groupId": "org.jboss.logging",
- "version": "3.5.0.Final",
- "sha256": "e7E1sIGVL20y2DN0YZrlIBsFyjv4YqKN0REBbOGbLAc="
- },
- {
- "id": "org.jboss.logmanager:jboss-logmanager-embedded:jar:1.1.1",
- "artifactId": "jboss-logmanager-embedded",
- "groupId": "org.jboss.logmanager",
- "version": "1.1.1",
- "sha256": "SDI6QtNWLT8EIOxgvJiO0OoCmCy5M0qI66cEIRNQwpE="
+ "version": "3.5.3.Final",
+ "sha256": "exGUYN4XQZWspBLf7VLKC77w7OJsLXQwG2Fyz630_1k="
},
{
"id": "org.jboss.logging:jboss-logging-annotations:jar:2.2.1.Final",
@@ -169,11 +148,11 @@
"sha256": "8VJPydftOvyH02WrDSgO8mDI3Rg2Q1aJ6DAP1aUe0Xg="
},
{
- "id": "org.jboss.threads:jboss-threads:jar:3.5.0.Final",
+ "id": "org.jboss.threads:jboss-threads:jar:3.6.1.Final",
"artifactId": "jboss-threads",
"groupId": "org.jboss.threads",
- "version": "3.5.0.Final",
- "sha256": "4VC2en9ShSX-aN1ghBUgwi1Z4Kgx6iN8RacE3ki5kLE="
+ "version": "3.6.1.Final",
+ "sha256": "oEMuRth4HuT55DH9Bb47WKv2aLfjxSTr8nbAYh3IGCc="
},
{
"id": "org.jboss.slf4j:slf4j-jboss-logmanager:jar:2.0.0.Final",
@@ -183,39 +162,32 @@
"sha256": "J3iFEEtyeiE-94S6sxSZ0jIhB03tKLBIJ-gJ0vVIlpM="
},
{
- "id": "org.graalvm.sdk:graal-sdk:jar:22.3.2",
- "artifactId": "graal-sdk",
- "groupId": "org.graalvm.sdk",
- "version": "22.3.2",
- "sha256": "gv3rMmA7mxIfO8RVkH1-Pv_LJo6X1y160P0z_dfT6zs="
- },
- {
- "id": "org.wildfly.common:wildfly-common:jar:1.5.4.Final-format-001",
+ "id": "org.wildfly.common:wildfly-common:jar:1.7.0.Final",
"artifactId": "wildfly-common",
"groupId": "org.wildfly.common",
- "version": "1.5.4.Final-format-001",
- "sha256": "mIT3kfgV0P7YxRdxr3EWSv1I-W5iHyYAn56-eRwFPxs="
+ "version": "1.7.0.Final",
+ "sha256": "ArqtQoxKD8L1A3ldCGRHUqFXMftRw9oa3RCNXmrF0oM="
},
{
- "id": "io.quarkus:quarkus-bootstrap-runner:jar:3.1.1.Final",
+ "id": "io.quarkus:quarkus-bootstrap-runner:jar:3.10.0",
"artifactId": "quarkus-bootstrap-runner",
"groupId": "io.quarkus",
- "version": "3.1.1.Final",
- "sha256": "odFjM9fZKwlnGgT-lmD6z--wnE6zvsOIvYHUcmTlBPg="
+ "version": "3.10.0",
+ "sha256": "_rZxmdJmW-uzuV_iXmnxk_HUHnXAL1fpKo3QiR70kYw="
},
{
- "id": "io.quarkus:quarkus-fs-util:jar:0.0.9",
+ "id": "io.quarkus:quarkus-fs-util:jar:0.0.10",
"artifactId": "quarkus-fs-util",
"groupId": "io.quarkus",
- "version": "0.0.9",
- "sha256": "6go6O0a6DWDu4xhpH22d2k0M1H0ghRK5DYOmLU7NyjY="
+ "version": "0.0.10",
+ "sha256": "zWY0DYWi2qctwa3t_n7krA0djqLkM0kiFpEU9oe1TQg="
},
{
- "id": "org.hibernate.validator:hibernate-validator:jar:8.0.0.Final",
+ "id": "org.hibernate.validator:hibernate-validator:jar:8.0.1.Final",
"artifactId": "hibernate-validator",
"groupId": "org.hibernate.validator",
- "version": "8.0.0.Final",
- "sha256": "V6Ms2gWDREsZ0C_XbHtPIwNc24d-C2xz6DQ4AJTiIUU="
+ "version": "8.0.1.Final",
+ "sha256": "jBJEpJgjEJH-cj2WZqk0RO6fk2ByRcaymCncX-V6M1w="
},
{
"id": "jakarta.validation:jakarta.validation-api:jar:3.0.2",
@@ -225,11 +197,11 @@
"sha256": "KRwl5pEMxqfr2W1Ma66_bXw3Z2xUgsLZYUbpAbYsH8k="
},
{
- "id": "com.fasterxml:classmate:jar:1.5.1",
+ "id": "com.fasterxml:classmate:jar:1.7.0",
"artifactId": "classmate",
"groupId": "com.fasterxml",
- "version": "1.5.1",
- "sha256": "qrTeMAaAjAnSXdT_SjYRz7Y8lUY8_ZnnPS4WgNIpozs="
+ "version": "1.7.0",
+ "sha256": "y4aPIxxczrideV6gDm4bepO49Kwc4di-dt3jIt_0oEY="
},
{
"id": "org.glassfish.expressly:expressly:jar:5.0.0",
@@ -246,11 +218,11 @@
"sha256": "kEMtGCgXF7NjuBmXjGoXJDOiZUt364fIY8IvwZwg7O0="
},
{
- "id": "io.smallrye.config:smallrye-config-validator:jar:3.2.1",
+ "id": "io.smallrye.config:smallrye-config-validator:jar:3.7.1",
"artifactId": "smallrye-config-validator",
"groupId": "io.smallrye.config",
- "version": "3.2.1",
- "sha256": "PzK_I5gjhBkVpxLwanPVbLuQ3hipXNrdQrWXSNLTxig="
+ "version": "3.7.1",
+ "sha256": "lmDOIdLExrRG6hbwUInowLkZbqCZ78v8Ntn4a_f4aqc="
},
{
"id": "jakarta.ws.rs:jakarta.ws.rs-api:jar:3.1.0",
@@ -260,18 +232,18 @@
"sha256": "azs2KLi0rt2g0kwzVDNemFSX2O88UQuPMCjpINW4Zj0="
},
{
- "id": "io.quarkus:quarkus-smallrye-health:jar:3.1.1.Final",
+ "id": "io.quarkus:quarkus-smallrye-health:jar:3.10.0",
"artifactId": "quarkus-smallrye-health",
"groupId": "io.quarkus",
- "version": "3.1.1.Final",
- "sha256": "OTK-TuipTes-s38j6veBkF1jM-t_FtrrtAWN6w5GSFo="
+ "version": "3.10.0",
+ "sha256": "YewPTKbZPPdFshA_U5vLqy9Z330fPKL2yf0uTttJkPU="
},
{
- "id": "io.smallrye:smallrye-health:jar:4.0.1",
+ "id": "io.smallrye:smallrye-health:jar:4.1.0",
"artifactId": "smallrye-health",
"groupId": "io.smallrye",
- "version": "4.0.1",
- "sha256": "SyPcEyJs1loRZNH5VhllXzCcWOq951Jkc1NVDE28JBA="
+ "version": "4.1.0",
+ "sha256": "ahk1ZRigIsSj9FziM8mAPSQ11dGg4jhSYrEvPm5SWVw="
},
{
"id": "org.eclipse.microprofile.health:microprofile-health-api:jar:4.0.1",
@@ -281,312 +253,116 @@
"sha256": "uJyktsT3oEQlDTHAZz9rwiHkD9Zp_Fhx261eWgdpykc="
},
{
- "id": "io.smallrye:smallrye-health-api:jar:4.0.1",
+ "id": "io.smallrye:smallrye-health-api:jar:4.1.0",
"artifactId": "smallrye-health-api",
"groupId": "io.smallrye",
- "version": "4.0.1",
- "sha256": "76nYih3yhmgIi6-z04ZkjruBsT1weshDtlVKfF6ZJJ4="
+ "version": "4.1.0",
+ "sha256": "gPcWfuQvorD1h9MIow5QJLWq8UtlFnNQrxhSz5_64Jw="
},
{
- "id": "jakarta.json:jakarta.json-api:jar:2.1.1",
+ "id": "jakarta.json:jakarta.json-api:jar:2.1.3",
"artifactId": "jakarta.json-api",
"groupId": "jakarta.json",
- "version": "2.1.1",
- "sha256": "w8D_55ZVOS9_9APc-b8B5xApm1oEBvboSJ6fJKCPgyc="
+ "version": "2.1.3",
+ "sha256": "vJNBQoBeodeU8UQFY5ZaOGGiqft0FOzT_kTyZQBzRBQ="
},
{
- "id": "io.smallrye:smallrye-health-provided-checks:jar:4.0.1",
+ "id": "io.smallrye:smallrye-health-provided-checks:jar:4.1.0",
"artifactId": "smallrye-health-provided-checks",
"groupId": "io.smallrye",
- "version": "4.0.1",
- "sha256": "RSfC9buC6Sx2qrv79jKUflVSNUus0cjIm22nYKMqOmQ="
+ "version": "4.1.0",
+ "sha256": "B-W5cMNWebjKBSV7VOSb3-uKLiIKTSdTYcOgrN0TgIk="
},
{
- "id": "io.quarkus:quarkus-vertx-http:jar:3.1.1.Final",
+ "id": "io.quarkus:quarkus-vertx-http:jar:3.10.0",
"artifactId": "quarkus-vertx-http",
"groupId": "io.quarkus",
- "version": "3.1.1.Final",
- "sha256": "VjGQy_456Rg15darReMNLLJr9ARL_D_koLnkvvgyzNw="
- },
- {
- "id": "io.quarkus:quarkus-security-runtime-spi:jar:3.1.1.Final",
- "artifactId": "quarkus-security-runtime-spi",
- "groupId": "io.quarkus",
- "version": "3.1.1.Final",
- "sha256": "DPA1Zn897aG8W9_BEtD1CaSwwESZS3unSZjx3Oxti3k="
+ "version": "3.10.0",
+ "sha256": "fEjkJJxKYvwRqerXk76uJh6HeB5G-3LCzDsz-_r6tkg="
},
{
- "id": "io.quarkus:quarkus-credentials:jar:3.1.1.Final",
+ "id": "io.quarkus:quarkus-credentials:jar:3.10.0",
"artifactId": "quarkus-credentials",
"groupId": "io.quarkus",
- "version": "3.1.1.Final",
- "sha256": "lZFIAS-VagJPPQ1VnTj71tkOkNtBSPRQo0uVPe5ZWwU="
- },
- {
- "id": "io.smallrye.common:smallrye-common-vertx-context:jar:2.1.0",
- "artifactId": "smallrye-common-vertx-context",
- "groupId": "io.smallrye.common",
- "version": "2.1.0",
- "sha256": "FGtrg-XDonRrOC6Sng_ng9WsT3NfNkUYdTxI5thGbKE="
- },
- {
- "id": "io.vertx:vertx-core:jar:4.4.2",
- "artifactId": "vertx-core",
- "groupId": "io.vertx",
- "version": "4.4.2",
- "sha256": "UzKuUoA_mmpjaSE434BH5k2ommo8jZVVrZ-HjKni3Jc="
- },
- {
- "id": "io.netty:netty-common:jar:4.1.92.Final",
- "artifactId": "netty-common",
- "groupId": "io.netty",
- "version": "4.1.92.Final",
- "sha256": "r4xXdB-1RgbekJCxM7XA-C8qWpQIwa48LY-tuayhVA4="
- },
- {
- "id": "io.netty:netty-buffer:jar:4.1.92.Final",
- "artifactId": "netty-buffer",
- "groupId": "io.netty",
- "version": "4.1.92.Final",
- "sha256": "XOvv4hlfpFMYNDY0VMecdnVVFRjKI2tkCJxAPaeWd3A="
- },
- {
- "id": "io.netty:netty-transport:jar:4.1.92.Final",
- "artifactId": "netty-transport",
- "groupId": "io.netty",
- "version": "4.1.92.Final",
- "sha256": "dHTl4npPkIoAOs5JZZZMzbb4zKICsYDqIPzK_r5Xypk="
- },
- {
- "id": "io.netty:netty-handler:jar:4.1.92.Final",
- "artifactId": "netty-handler",
- "groupId": "io.netty",
- "version": "4.1.92.Final",
- "sha256": "0sPBeHnzYZohYwdkSxDa7t2rGwShKH3_UGdKh9oUQ7I="
- },
- {
- "id": "io.netty:netty-transport-native-unix-common:jar:4.1.92.Final",
- "artifactId": "netty-transport-native-unix-common",
- "groupId": "io.netty",
- "version": "4.1.92.Final",
- "sha256": "s3ubG371z1Ym2S05HeVCLV_VoYFhk0R-57thxwqi2zE="
- },
- {
- "id": "io.netty:netty-handler-proxy:jar:4.1.92.Final",
- "artifactId": "netty-handler-proxy",
- "groupId": "io.netty",
- "version": "4.1.92.Final",
- "sha256": "q0Agm9pa4lVmfaaXjrf4tig0JPiSiWtkYeJWSZrQy_o="
- },
- {
- "id": "io.netty:netty-codec-socks:jar:4.1.92.Final",
- "artifactId": "netty-codec-socks",
- "groupId": "io.netty",
- "version": "4.1.92.Final",
- "sha256": "hXSAtt6lJUOFHWONZcycK6hbhbzShieXpzCZDVcLTHU="
- },
- {
- "id": "io.netty:netty-codec-http:jar:4.1.92.Final",
- "artifactId": "netty-codec-http",
- "groupId": "io.netty",
- "version": "4.1.92.Final",
- "sha256": "qwUch9RsMrXp5IbmESQDWNLfpemvhUG2y0dqCd3F5Ug="
- },
- {
- "id": "io.netty:netty-codec-http2:jar:4.1.92.Final",
- "artifactId": "netty-codec-http2",
- "groupId": "io.netty",
- "version": "4.1.92.Final",
- "sha256": "7MTQhhDyimhI7OSnirpjfghU66bpXbjiCZve8WZ3H8M="
- },
- {
- "id": "io.netty:netty-resolver:jar:4.1.92.Final",
- "artifactId": "netty-resolver",
- "groupId": "io.netty",
- "version": "4.1.92.Final",
- "sha256": "SUF3OFjz_duEx8bSzGfPDEyZH8PrimCJFtmYLmmXrU0="
- },
- {
- "id": "io.netty:netty-resolver-dns:jar:4.1.92.Final",
- "artifactId": "netty-resolver-dns",
- "groupId": "io.netty",
- "version": "4.1.92.Final",
- "sha256": "mbZewhWt4pA34x1_iEo_lxL5hssexcGIv-ElHLdTGZ0="
- },
- {
- "id": "io.netty:netty-codec-dns:jar:4.1.92.Final",
- "artifactId": "netty-codec-dns",
- "groupId": "io.netty",
- "version": "4.1.92.Final",
- "sha256": "PCsL12Eyz8-cP6mpOIIXkOF0vDBRmkRHkwJMrArdTnM="
- },
- {
- "id": "io.smallrye.common:smallrye-common-constraint:jar:2.1.0",
- "artifactId": "smallrye-common-constraint",
- "groupId": "io.smallrye.common",
- "version": "2.1.0",
- "sha256": "Fp3rJq6MT9Ae11u619ktSjDSnXxemjynE_DgjfYoh6Y="
- },
- {
- "id": "io.quarkus:quarkus-vertx-http-dev-console-runtime-spi:jar:3.1.1.Final",
- "artifactId": "quarkus-vertx-http-dev-console-runtime-spi",
- "groupId": "io.quarkus",
- "version": "3.1.1.Final",
- "sha256": "tNdsDRpyWTOo2Cw_1ZbgMKwDkAfFM2oUkjBEJwQjtko="
+ "version": "3.10.0",
+ "sha256": "3en9Dx_J5qT2Tixrb24aPa6wVYyIkxKoMa73lLuvA6U="
},
{
- "id": "io.quarkus.security:quarkus-security:jar:2.0.2.Final",
+ "id": "io.quarkus.security:quarkus-security:jar:2.0.3.Final",
"artifactId": "quarkus-security",
"groupId": "io.quarkus.security",
- "version": "2.0.2.Final",
- "sha256": "-7Nfls8Zn0EMx5xmVOQFjo3VrqiwtSRxIYRHpTXNJdQ="
- },
- {
- "id": "io.quarkus:quarkus-vertx:jar:3.1.1.Final",
- "artifactId": "quarkus-vertx",
- "groupId": "io.quarkus",
- "version": "3.1.1.Final",
- "sha256": "RbARBZ7sS-fdG64ep3BhBxYUM7zTLFQE_XtFinIdgDg="
- },
- {
- "id": "io.quarkus:quarkus-netty:jar:3.1.1.Final",
- "artifactId": "quarkus-netty",
- "groupId": "io.quarkus",
- "version": "3.1.1.Final",
- "sha256": "QNkUyKYnpNsZ4Q8SeWC_afVd0JAo9mnVxWTxnpSl6vE="
- },
- {
- "id": "io.netty:netty-codec:jar:4.1.92.Final",
- "artifactId": "netty-codec",
- "groupId": "io.netty",
- "version": "4.1.92.Final",
- "sha256": "_IqakUDaAcfpGT88-FBAtFMwWfFRoEjUF11EdlWfZ1E="
- },
- {
- "id": "com.aayushatharva.brotli4j:brotli4j:jar:1.11.0",
- "artifactId": "brotli4j",
- "groupId": "com.aayushatharva.brotli4j",
- "version": "1.11.0",
- "sha256": "XvoDngc9wW0wVKQ7OF1CXBdHzwH1Jn4aSlFO7DqXrD8="
- },
- {
- "id": "com.aayushatharva.brotli4j:service:jar:1.11.0",
- "artifactId": "service",
- "groupId": "com.aayushatharva.brotli4j",
- "version": "1.11.0",
- "sha256": "8XkfMr5OWeFX_srCcjXP9HIu5iWL4qMZM78JwfN_nTI="
- },
- {
- "id": "com.aayushatharva.brotli4j:native-windows-x86_64:jar:1.11.0",
- "artifactId": "native-windows-x86_64",
- "groupId": "com.aayushatharva.brotli4j",
- "version": "1.11.0",
- "sha256": "PU-CzdPdMiuS6YdnM73pgqMvNy5f78OnhfqDWjmVoTU="
- },
- {
- "id": "com.aayushatharva.brotli4j:native-osx-aarch64:jar:1.11.0",
- "artifactId": "native-osx-aarch64",
- "groupId": "com.aayushatharva.brotli4j",
- "version": "1.11.0",
- "sha256": "LCxbfByd8uYohfSWydvcfO63dqxSJsJG51luCsRnPgE="
- },
- {
- "id": "com.aayushatharva.brotli4j:native-linux-x86_64:jar:1.11.0",
- "artifactId": "native-linux-x86_64",
- "groupId": "com.aayushatharva.brotli4j",
- "version": "1.11.0",
- "sha256": "bD-neL_jA9OBHsi6E-qQisZH9ymMf_HGOptXgpF18m0="
- },
- {
- "id": "io.netty:netty-codec-haproxy:jar:4.1.92.Final",
- "artifactId": "netty-codec-haproxy",
- "groupId": "io.netty",
- "version": "4.1.92.Final",
- "sha256": "Xnm3j6tFiMQE2qZ9Jo7m5F9OMA0ymOAQ5zRZXonLmp0="
- },
- {
- "id": "io.quarkus:quarkus-vertx-latebound-mdc-provider:jar:3.1.1.Final",
- "artifactId": "quarkus-vertx-latebound-mdc-provider",
- "groupId": "io.quarkus",
- "version": "3.1.1.Final",
- "sha256": "kheKEcKPjQShPGRqgtYsdYbotnQDT4FRPccB-cHqQ9E="
- },
- {
- "id": "io.smallrye:smallrye-fault-tolerance-vertx:jar:6.2.3",
- "artifactId": "smallrye-fault-tolerance-vertx",
- "groupId": "io.smallrye",
- "version": "6.2.3",
- "sha256": "e4hibD66O9-b5RGj_JMU9PWD80MuBC3Jvr6Ga87pkF8="
+ "version": "2.0.3.Final",
+ "sha256": "GaEphdy7dcRfUU0EZzeJkRJkG7VxXYynRx0BvBo3OgY="
},
{
- "id": "io.smallrye.reactive:smallrye-mutiny-vertx-web:jar:3.4.1",
+ "id": "io.smallrye.reactive:smallrye-mutiny-vertx-web:jar:3.12.0",
"artifactId": "smallrye-mutiny-vertx-web",
"groupId": "io.smallrye.reactive",
- "version": "3.4.1",
- "sha256": "RdSWliwNMAjpAh6nfq7N5n9qunYcsoeVUiRPkqRJT3I="
+ "version": "3.12.0",
+ "sha256": "tIpVsLENawA1GwhRvewG0NocCv7FYilKtEf2Jx0p_cc="
},
{
- "id": "io.smallrye.reactive:smallrye-mutiny-vertx-web-common:jar:3.4.1",
+ "id": "io.smallrye.reactive:smallrye-mutiny-vertx-web-common:jar:3.12.0",
"artifactId": "smallrye-mutiny-vertx-web-common",
"groupId": "io.smallrye.reactive",
- "version": "3.4.1",
- "sha256": "MSzxOGE6K8oowM5-kNnMadQJmhjQF9Kk3ZIOLEQmVSE="
+ "version": "3.12.0",
+ "sha256": "0ek5hrQxEi9b8uhIj7Ppe8dO_6UkO_ED5sA6LpM-BKc="
},
{
- "id": "io.smallrye.reactive:smallrye-mutiny-vertx-auth-common:jar:3.4.1",
+ "id": "io.smallrye.reactive:smallrye-mutiny-vertx-auth-common:jar:3.12.0",
"artifactId": "smallrye-mutiny-vertx-auth-common",
"groupId": "io.smallrye.reactive",
- "version": "3.4.1",
- "sha256": "n8HNNo1u98czxp8V7aaxQbN3K5BiOvYA8T__1unylmE="
+ "version": "3.12.0",
+ "sha256": "nUgONrm9W18fDDk-gUb3aulA58zAbhqxXWbA-zP-vpc="
},
{
- "id": "io.smallrye.reactive:smallrye-mutiny-vertx-bridge-common:jar:3.4.1",
+ "id": "io.smallrye.reactive:smallrye-mutiny-vertx-bridge-common:jar:3.12.0",
"artifactId": "smallrye-mutiny-vertx-bridge-common",
"groupId": "io.smallrye.reactive",
- "version": "3.4.1",
- "sha256": "7KCVfwQdTOT8xiEvuYVWe2DGa9Y0tI61iTzJ41gHFN4="
+ "version": "3.12.0",
+ "sha256": "91Q8-PfjPPW-2YfEq8vUusI6PnU_Bc1qhUxZbYgTO_k="
},
{
- "id": "io.smallrye.reactive:smallrye-mutiny-vertx-uri-template:jar:3.4.1",
+ "id": "io.smallrye.reactive:smallrye-mutiny-vertx-uri-template:jar:3.12.0",
"artifactId": "smallrye-mutiny-vertx-uri-template",
"groupId": "io.smallrye.reactive",
- "version": "3.4.1",
- "sha256": "BBxwRTYQ_Jf9eDUiiKRBvloocQB_xvCTjZ9osibHPY0="
+ "version": "3.12.0",
+ "sha256": "QBWkeB2ZugI_4fe1pW9_6qY26s3kKyXtaTPV4wfYFqU="
},
{
- "id": "io.vertx:vertx-uri-template:jar:4.4.2",
+ "id": "io.vertx:vertx-uri-template:jar:4.5.7",
"artifactId": "vertx-uri-template",
"groupId": "io.vertx",
- "version": "4.4.2",
- "sha256": "k37tXZko0urphBlCOESHRu2xLlR-fJczUUNCSIb5PUA="
+ "version": "4.5.7",
+ "sha256": "FuNxB3E_JcbWhofv5GU8MxjTLN3RVUIyMnEgn-BB4r8="
},
{
- "id": "io.vertx:vertx-web:jar:4.4.2",
+ "id": "io.vertx:vertx-web:jar:4.5.7",
"artifactId": "vertx-web",
"groupId": "io.vertx",
- "version": "4.4.2",
- "sha256": "meYbrlFjcZCwCrqdpQNFXYLFWfzR5Kj6cV0RvOOoln0="
+ "version": "4.5.7",
+ "sha256": "5u1CSfPgUlwr_fWNb8ExRw_MtRlv7CXI72266vpM87Q="
},
{
- "id": "io.vertx:vertx-web-common:jar:4.4.2",
+ "id": "io.vertx:vertx-web-common:jar:4.5.7",
"artifactId": "vertx-web-common",
"groupId": "io.vertx",
- "version": "4.4.2",
- "sha256": "uyCJRNiOSRN0jSA4xGBsgswBRvF3ytUZkMoWypI11q8="
+ "version": "4.5.7",
+ "sha256": "zde33Fp10vL1_1QNkwWzrXAb9y4F1qygngJKWpjkbew="
},
{
- "id": "io.vertx:vertx-auth-common:jar:4.4.2",
+ "id": "io.vertx:vertx-auth-common:jar:4.5.7",
"artifactId": "vertx-auth-common",
"groupId": "io.vertx",
- "version": "4.4.2",
- "sha256": "vFqd0P-vhCQlRZnMHKCuLwOVJ_5Zhh-urpL61S2RYwk="
+ "version": "4.5.7",
+ "sha256": "NQ2u50xaIsPSwjQfCVQYzqkAA2A9Zo0tSwZv7Cpjx0Q="
},
{
- "id": "io.vertx:vertx-bridge-common:jar:4.4.2",
+ "id": "io.vertx:vertx-bridge-common:jar:4.5.7",
"artifactId": "vertx-bridge-common",
"groupId": "io.vertx",
- "version": "4.4.2",
- "sha256": "TofB79Az9V2SLeFgE7SwvfzNyZj89y5wcCXy1E0Dn84="
+ "version": "4.5.7",
+ "sha256": "u1-U_E_oGXt5mKwi30BPuNd8_683KHB4bGwSB00TKAM="
},
{
"id": "io.github.crac:org-crac:jar:0.1.3",
@@ -596,32 +372,32 @@
"sha256": "13oMYo0Tme5oJziFHcoT0GD-9RYBrtrW0e_NMYX5rwk="
},
{
- "id": "io.quarkus:quarkus-jsonp:jar:3.1.1.Final",
+ "id": "io.quarkus:quarkus-jsonp:jar:3.10.0",
"artifactId": "quarkus-jsonp",
"groupId": "io.quarkus",
- "version": "3.1.1.Final",
- "sha256": "8T-tVa_vAd8tyQhJvsuAlPDQb9EmnBZ8L7PX_hvPF1I="
+ "version": "3.10.0",
+ "sha256": "g5N0WrdqVahT-eVCTvEe4DVNo3Kkr6WWoMzOKt9Oqog="
},
{
- "id": "org.eclipse.parsson:parsson:jar:1.1.1",
+ "id": "org.eclipse.parsson:parsson:jar:1.1.5",
"artifactId": "parsson",
"groupId": "org.eclipse.parsson",
- "version": "1.1.1",
- "sha256": "TWNoZrAQ7DCv2AEQLqwM1wqzOm5OxtOaYZrgE-pf_9M="
+ "version": "1.1.5",
+ "sha256": "FiEikQSBuo7kG0c6xUaLERf-gtJcutaYR-bWC1EgGsE="
},
{
- "id": "io.quarkus:quarkus-arc:jar:3.1.1.Final",
+ "id": "io.quarkus:quarkus-arc:jar:3.10.0",
"artifactId": "quarkus-arc",
"groupId": "io.quarkus",
- "version": "3.1.1.Final",
- "sha256": "5-X8LNw8FH-T3EYt7_O8wc3UzxdAoZFyq2MmYTRM7xw="
+ "version": "3.10.0",
+ "sha256": "hvgpVPPXnxnEsLjnQ4J8IJKoqEhQ29NAyFr75DG8AvA="
},
{
- "id": "io.quarkus.arc:arc:jar:3.1.1.Final",
+ "id": "io.quarkus.arc:arc:jar:3.10.0",
"artifactId": "arc",
"groupId": "io.quarkus.arc",
- "version": "3.1.1.Final",
- "sha256": "vIpvfO7sKjY1QoVVpG8CP416nuoyZAANHEPxIJ0_inw="
+ "version": "3.10.0",
+ "sha256": "Y51aJq1t6AqX7_hAGJN9wWEQ1aQHYAY2C3dD5Ds7cho="
},
{
"id": "jakarta.transaction:jakarta.transaction-api:jar:2.0.1",
@@ -631,11 +407,18 @@
"sha256": "UMCnx2DBOubAQqzxgrKPAEdBPblbRjb7iHm8_6tbqHU="
},
{
- "id": "io.smallrye.reactive:mutiny:jar:2.1.0",
+ "id": "io.smallrye.reactive:mutiny:jar:2.6.0",
"artifactId": "mutiny",
"groupId": "io.smallrye.reactive",
- "version": "2.1.0",
- "sha256": "UnxMJd0bD1xsEQB0u97UKq20qNsXokro0hhCRuSD36A="
+ "version": "2.6.0",
+ "sha256": "CmZBqbaDUaYcjgtkQEFyGSVBxeCgpCWpoUQZ9RcD9Wk="
+ },
+ {
+ "id": "org.jctools:jctools-core:jar:4.0.3",
+ "artifactId": "jctools-core",
+ "groupId": "org.jctools",
+ "version": "4.0.3",
+ "sha256": "HGWPUQfjqKK6YSYMoluF9HsMMj_RTwslqNfr4FGeAXo="
},
{
"id": "org.eclipse.microprofile.context-propagation:microprofile-context-propagation-api:jar:1.3",
@@ -645,32 +428,32 @@
"sha256": "aczARIfod3nUlwqlDGc8w0qd8IDBwOjY6rLotG-CXPQ="
},
{
- "id": "io.quarkus:quarkus-resteasy-reactive:jar:3.1.1.Final",
- "artifactId": "quarkus-resteasy-reactive",
+ "id": "io.quarkus:quarkus-rest:jar:3.10.0",
+ "artifactId": "quarkus-rest",
"groupId": "io.quarkus",
- "version": "3.1.1.Final",
- "sha256": "EzqubYk-hNTeEMQ4UPUXE1ktr-UVj4nrmQzHAkmrrbI="
+ "version": "3.10.0",
+ "sha256": "UHBzMecvYIr11G70n0qqTfRJq2w6bkL626gAKa9C6MY="
},
{
- "id": "io.quarkus:quarkus-resteasy-reactive-common:jar:3.1.1.Final",
- "artifactId": "quarkus-resteasy-reactive-common",
+ "id": "io.quarkus:quarkus-rest-common:jar:3.10.0",
+ "artifactId": "quarkus-rest-common",
"groupId": "io.quarkus",
- "version": "3.1.1.Final",
- "sha256": "6wmaXWRQEciWfx93zj6-LX1Gy3Z_Amk65G_Xo_rx-5U="
+ "version": "3.10.0",
+ "sha256": "gz0Yw8PyXgjDxdGEyvqDsxRmzsbAjfK-ti6cytxd3dM="
},
{
- "id": "io.quarkus.resteasy.reactive:resteasy-reactive-common:jar:3.1.1.Final",
+ "id": "io.quarkus.resteasy.reactive:resteasy-reactive-common:jar:3.10.0",
"artifactId": "resteasy-reactive-common",
"groupId": "io.quarkus.resteasy.reactive",
- "version": "3.1.1.Final",
- "sha256": "fswjpAxQPkiEzCrVTG22bEAMlHMhhrG34e84kan4WZU="
+ "version": "3.10.0",
+ "sha256": "99t5-JsVpdPv3rR_M50M1DCyGOjkQZhmuPol-4nFpRo="
},
{
- "id": "io.quarkus.resteasy.reactive:resteasy-reactive-common-types:jar:3.1.1.Final",
+ "id": "io.quarkus.resteasy.reactive:resteasy-reactive-common-types:jar:3.10.0",
"artifactId": "resteasy-reactive-common-types",
"groupId": "io.quarkus.resteasy.reactive",
- "version": "3.1.1.Final",
- "sha256": "LIajqYqRlQo_DoRTbrrl3GlBVW-ueIPoDKEQ3t7H4hc="
+ "version": "3.10.0",
+ "sha256": "JvS3kuAflAH5MCo3yWbzQFjG0iwhwJHXth9zAKfG1Xc="
},
{
"id": "org.reactivestreams:reactive-streams:jar:1.0.4",
@@ -680,53 +463,53 @@
"sha256": "91yll3ibPaxY9hhXuawuEDSmj6Zy2zUFWo-0UJ4yXyg="
},
{
- "id": "io.smallrye.reactive:mutiny-zero-flow-adapters:jar:1.0.0",
+ "id": "io.smallrye.reactive:mutiny-zero-flow-adapters:jar:1.1.0",
"artifactId": "mutiny-zero-flow-adapters",
"groupId": "io.smallrye.reactive",
- "version": "1.0.0",
- "sha256": "tcTuAhmpyCYpGEYkZRN2C9kAHUkpJm8VRPGoSUZmalI="
+ "version": "1.1.0",
+ "sha256": "iSFg510nP6mrzprx8nZ6vwDjwn6L_neTdXZKRnFhSNo="
},
{
- "id": "io.quarkus.resteasy.reactive:resteasy-reactive-vertx:jar:3.1.1.Final",
+ "id": "io.quarkus.resteasy.reactive:resteasy-reactive-vertx:jar:3.10.0",
"artifactId": "resteasy-reactive-vertx",
"groupId": "io.quarkus.resteasy.reactive",
- "version": "3.1.1.Final",
- "sha256": "YF4X6AiAvXdZ2wtMiNRjj44XHARgbYUDGeAtqVoTOyA="
+ "version": "3.10.0",
+ "sha256": "KRWj6rhfXysYxz-FNYjWL0xS499oU2enAm6JLwFr2rA="
},
{
- "id": "io.smallrye.reactive:smallrye-mutiny-vertx-core:jar:3.4.1",
+ "id": "io.smallrye.reactive:smallrye-mutiny-vertx-core:jar:3.12.0",
"artifactId": "smallrye-mutiny-vertx-core",
"groupId": "io.smallrye.reactive",
- "version": "3.4.1",
- "sha256": "vZoF3ttW1S5xPApm-E64yV2ZU2XfRV51PoRQsBd9kwE="
+ "version": "3.12.0",
+ "sha256": "WczBmlk7xZAorqfS3kjoRxjM5SYok_aqHl6LtqlIXz0="
},
{
- "id": "io.smallrye.reactive:smallrye-mutiny-vertx-runtime:jar:3.4.1",
+ "id": "io.smallrye.reactive:smallrye-mutiny-vertx-runtime:jar:3.12.0",
"artifactId": "smallrye-mutiny-vertx-runtime",
"groupId": "io.smallrye.reactive",
- "version": "3.4.1",
- "sha256": "ZjjBREmOmlY9jdAJ_lZCfl6-C1LolYXf8dqxItLyL98="
+ "version": "3.12.0",
+ "sha256": "R6cnEnsh1PKVSkaxmRZgfFM6u1ZgaFF7HcSWufwohgM="
},
{
- "id": "io.smallrye.reactive:vertx-mutiny-generator:jar:3.4.1",
+ "id": "io.smallrye.reactive:vertx-mutiny-generator:jar:3.12.0",
"artifactId": "vertx-mutiny-generator",
"groupId": "io.smallrye.reactive",
- "version": "3.4.1",
- "sha256": "P3XPCXOIhtulEZoP2P8TahMyqiYqf1_4esYfGullGf8="
+ "version": "3.12.0",
+ "sha256": "6YgzLtW69H-aURLxlh9XhbToFYBKB4eYYZT77RGtMLo="
},
{
- "id": "io.vertx:vertx-codegen:jar:4.4.2",
+ "id": "io.vertx:vertx-codegen:jar:4.5.7",
"artifactId": "vertx-codegen",
"groupId": "io.vertx",
- "version": "4.4.2",
- "sha256": "B3GAnHPcg-0IjuBU0UL3GWhFvcVwQ_uzqWZs1zijr3g="
+ "version": "4.5.7",
+ "sha256": "AHYpToNSLZt7HeKDhR9LF_zYFrEu5B2hn5WzUSNRxlk="
},
{
- "id": "io.quarkus.resteasy.reactive:resteasy-reactive:jar:3.1.1.Final",
+ "id": "io.quarkus.resteasy.reactive:resteasy-reactive:jar:3.10.0",
"artifactId": "resteasy-reactive",
"groupId": "io.quarkus.resteasy.reactive",
- "version": "3.1.1.Final",
- "sha256": "U3-5qnGK70_6GaqoACx-Ltyp9w8Jf-9D4fDw5UELFjw="
+ "version": "3.10.0",
+ "sha256": "kopYGfBzARhURDO8HKkYyVJzoXNSjxeE8_qkj90pu5U="
},
{
"id": "org.jboss.logging:commons-logging-jboss-logging:jar:1.0.0.Final",
@@ -736,81 +519,207 @@
"sha256": "8SF2Jj6iX054u0-ks20zWilzjd5qgSPhttqJplXRUP8="
},
{
- "id": "jakarta.xml.bind:jakarta.xml.bind-api:jar:4.0.0",
+ "id": "jakarta.xml.bind:jakarta.xml.bind-api:jar:4.0.2",
"artifactId": "jakarta.xml.bind-api",
"groupId": "jakarta.xml.bind",
- "version": "4.0.0",
- "sha256": "V-N5atV1NkAIj1-dPFPBg_LCULfa2QUp6j4ZpVFaoSI="
+ "version": "4.0.2",
+ "sha256": "DWvP5Hdj6FBHrPfDmDNtyE_4XrytCny287nT6YEkVAY="
},
{
- "id": "jakarta.activation:jakarta.activation-api:jar:2.1.2",
+ "id": "jakarta.activation:jakarta.activation-api:jar:2.1.3",
"artifactId": "jakarta.activation-api",
"groupId": "jakarta.activation",
- "version": "2.1.2",
- "sha256": "9T9XjdDrQXDBlaTiFcWaOKv7QSPcuV3ZAv75KHZJn7s="
+ "version": "2.1.3",
+ "sha256": "AbF21xihaSY-eCkGkfxHmXcYa8xrMzSHMlCE1lhvRic="
+ },
+ {
+ "id": "io.quarkus:quarkus-virtual-threads:jar:3.10.0",
+ "artifactId": "quarkus-virtual-threads",
+ "groupId": "io.quarkus",
+ "version": "3.10.0",
+ "sha256": "52MhRf24lTh-_R50pKMOYO64iI1VNF7a6h-4PkAOkPs="
+ },
+ {
+ "id": "io.vertx:vertx-core:jar:4.5.7",
+ "artifactId": "vertx-core",
+ "groupId": "io.vertx",
+ "version": "4.5.7",
+ "sha256": "nLbU9cWpowXnOjwxypwBqLl7ySsvro7NoihcKDG_XWQ="
+ },
+ {
+ "id": "io.netty:netty-common:jar:4.1.108.Final",
+ "artifactId": "netty-common",
+ "groupId": "io.netty",
+ "version": "4.1.108.Final",
+ "sha256": "jjZJ_GurhKiK1Hr4Ljj5w2qzcl3keGMsilnkvXTRbgg="
+ },
+ {
+ "id": "io.netty:netty-buffer:jar:4.1.108.Final",
+ "artifactId": "netty-buffer",
+ "groupId": "io.netty",
+ "version": "4.1.108.Final",
+ "sha256": "NI4_9kxxKcpmG8CdS92gnIJEdM_R9ZGDaL3Fb17hf3k="
+ },
+ {
+ "id": "io.netty:netty-transport:jar:4.1.108.Final",
+ "artifactId": "netty-transport",
+ "groupId": "io.netty",
+ "version": "4.1.108.Final",
+ "sha256": "_vLsZv4BqolzTbQPKSZ2cZ2jmFeGUS_DGp7-HKTS4P8="
+ },
+ {
+ "id": "io.netty:netty-handler:jar:4.1.108.Final",
+ "artifactId": "netty-handler",
+ "groupId": "io.netty",
+ "version": "4.1.108.Final",
+ "sha256": "VbJFgBFSfZSryGgIav0DnNAMw6VH5zIlaeD7T5BtnYA="
+ },
+ {
+ "id": "io.netty:netty-transport-native-unix-common:jar:4.1.108.Final",
+ "artifactId": "netty-transport-native-unix-common",
+ "groupId": "io.netty",
+ "version": "4.1.108.Final",
+ "sha256": "w_MkpvUmMT5DIjW_GjoS49soPjuGaeAvJvVpxCEDa8s="
+ },
+ {
+ "id": "io.netty:netty-handler-proxy:jar:4.1.108.Final",
+ "artifactId": "netty-handler-proxy",
+ "groupId": "io.netty",
+ "version": "4.1.108.Final",
+ "sha256": "DhFoO1fnU5PW6nEODGqOvLXAkT55OKsqioZnunQCGdo="
+ },
+ {
+ "id": "io.netty:netty-codec-socks:jar:4.1.108.Final",
+ "artifactId": "netty-codec-socks",
+ "groupId": "io.netty",
+ "version": "4.1.108.Final",
+ "sha256": "ahNAU18kq5l-Hl_si_JkkQhVCggW7o43KMFMLlWSG9g="
+ },
+ {
+ "id": "io.netty:netty-codec-http:jar:4.1.108.Final",
+ "artifactId": "netty-codec-http",
+ "groupId": "io.netty",
+ "version": "4.1.108.Final",
+ "sha256": "K9snbUDCKTAUY4p-Blvql3tXT7apeOEZf1FPLhO2laY="
+ },
+ {
+ "id": "io.netty:netty-codec-http2:jar:4.1.108.Final",
+ "artifactId": "netty-codec-http2",
+ "groupId": "io.netty",
+ "version": "4.1.108.Final",
+ "sha256": "qBPhgQ98GVm5D8fyIeA84V5mAF7lbinNDWgxK5Z5x3I="
+ },
+ {
+ "id": "io.netty:netty-resolver:jar:4.1.108.Final",
+ "artifactId": "netty-resolver",
+ "groupId": "io.netty",
+ "version": "4.1.108.Final",
+ "sha256": "VSef3PbA4YGbZWHMcLDrLeGxzx71Y1_EYzTX4G-qndk="
+ },
+ {
+ "id": "io.netty:netty-resolver-dns:jar:4.1.108.Final",
+ "artifactId": "netty-resolver-dns",
+ "groupId": "io.netty",
+ "version": "4.1.108.Final",
+ "sha256": "ejxsZhM0WTNJBMdtueTMyh5SADm4T7ALLPw82cHoM8Y="
+ },
+ {
+ "id": "io.netty:netty-codec-dns:jar:4.1.108.Final",
+ "artifactId": "netty-codec-dns",
+ "groupId": "io.netty",
+ "version": "4.1.108.Final",
+ "sha256": "wXQ9F70u7SuXivxn2SrjFcq4jCcyEUUa3w5JBP4bm8k="
+ },
+ {
+ "id": "com.fasterxml.jackson.core:jackson-core:jar:2.17.0",
+ "artifactId": "jackson-core",
+ "groupId": "com.fasterxml.jackson.core",
+ "version": "2.17.0",
+ "sha256": "Vb4TD2poA4CIomGFbE44POeZV6D8GinsshOp79bvQ4k="
+ },
+ {
+ "id": "io.quarkus:quarkus-rest-client-jackson:jar:3.10.0",
+ "artifactId": "quarkus-rest-client-jackson",
+ "groupId": "io.quarkus",
+ "version": "3.10.0",
+ "sha256": "iczeUBe57ltUuIudaTTa6KGDztIgtZu2Pkt9VNO7qrA="
+ },
+ {
+ "id": "io.quarkus.resteasy.reactive:resteasy-reactive-jackson:jar:3.10.0",
+ "artifactId": "resteasy-reactive-jackson",
+ "groupId": "io.quarkus.resteasy.reactive",
+ "version": "3.10.0",
+ "sha256": "7Uyn_Vc1QmaTWc0kre9DPQ-eLWN_K7qX_lJvtjzyBhQ="
+ },
+ {
+ "id": "com.fasterxml.jackson.core:jackson-databind:jar:2.17.0",
+ "artifactId": "jackson-databind",
+ "groupId": "com.fasterxml.jackson.core",
+ "version": "2.17.0",
+ "sha256": "0O1bVMsbC7sIKOJM51KkOgBtwYizTjpK4yOKzHtjdBg="
+ },
+ {
+ "id": "net.bytebuddy:byte-buddy:jar:1.14.11",
+ "artifactId": "byte-buddy",
+ "groupId": "net.bytebuddy",
+ "version": "1.14.11",
+ "sha256": "Yq4oGH7SsGKBPaap1We_7nM8NBWCaZti3ZgCMHKaAxM="
},
{
- "id": "io.quarkus:quarkus-rest-client-reactive:jar:3.1.1.Final",
- "artifactId": "quarkus-rest-client-reactive",
+ "id": "io.quarkus:quarkus-rest-client:jar:3.10.0",
+ "artifactId": "quarkus-rest-client",
"groupId": "io.quarkus",
- "version": "3.1.1.Final",
- "sha256": "x-P5X3yNspksxzlzlt4RQMwaPc_xjVdOP87EGDLw2NM="
+ "version": "3.10.0",
+ "sha256": "I1Y7jpyPnFSWYwL57syEaunR_YwKV7dEVpU6sCbMefQ="
},
{
- "id": "io.quarkus:quarkus-jaxrs-client-reactive:jar:3.1.1.Final",
- "artifactId": "quarkus-jaxrs-client-reactive",
+ "id": "io.quarkus:quarkus-rest-client-jaxrs:jar:3.10.0",
+ "artifactId": "quarkus-rest-client-jaxrs",
"groupId": "io.quarkus",
- "version": "3.1.1.Final",
- "sha256": "uQnVm5Fg_M-A9n5ZfUD3zOjxLq9HlHOrCl4ynzSZ_m0="
+ "version": "3.10.0",
+ "sha256": "pyeB4a8vennwIOHrEEttsr-6lkFGdHb6wFKUtcOMsjU="
},
{
- "id": "io.quarkus.resteasy.reactive:resteasy-reactive-client:jar:3.1.1.Final",
+ "id": "io.quarkus.resteasy.reactive:resteasy-reactive-client:jar:3.10.0",
"artifactId": "resteasy-reactive-client",
"groupId": "io.quarkus.resteasy.reactive",
- "version": "3.1.1.Final",
- "sha256": "Rplds-tNTK7AmIm7SJMHL8hUuMFABa7bCbPjRqR3Cvc="
+ "version": "3.10.0",
+ "sha256": "b3DFZlptlSM_dBakhOhpabpLDlYQdnw1eJWwb3FuRBc="
},
{
- "id": "io.vertx:vertx-web-client:jar:4.4.2",
+ "id": "io.vertx:vertx-web-client:jar:4.5.7",
"artifactId": "vertx-web-client",
"groupId": "io.vertx",
- "version": "4.4.2",
- "sha256": "yutnhBLYsB-tO1eNK13rDiz3Hy-Crxvf22y2pMfBHFU="
+ "version": "4.5.7",
+ "sha256": "Ib1sctwu4sIzMCxgbhG0X2pmQfhvdXbpVKexIjwqPvs="
},
{
- "id": "io.quarkus:quarkus-smallrye-stork:jar:3.1.1.Final",
+ "id": "io.quarkus:quarkus-smallrye-stork:jar:3.10.0",
"artifactId": "quarkus-smallrye-stork",
"groupId": "io.quarkus",
- "version": "3.1.1.Final",
- "sha256": "oYqKUT6ZaQKxC5WIacOLw9tFdMqDIhHxxMgWNRWRfTs="
+ "version": "3.10.0",
+ "sha256": "J53qaAh0HFiPWXa2CSEygN27-pGBHcJ9FlfIQVc7M_k="
},
{
- "id": "io.quarkus:quarkus-rest-client-config:jar:3.1.1.Final",
+ "id": "io.quarkus:quarkus-rest-client-config:jar:3.10.0",
"artifactId": "quarkus-rest-client-config",
"groupId": "io.quarkus",
- "version": "3.1.1.Final",
- "sha256": "cynOTsMLswHflUZCgNjJR6NfzMuDLdjXkd6EFnKK5tk="
- },
- {
- "id": "io.smallrye:jandex:jar:3.1.1",
- "artifactId": "jandex",
- "groupId": "io.smallrye",
- "version": "3.1.1",
- "sha256": "FP3vJDxsU0EA1CCc9P8ORZtRIBHGrPesN0wDPnk2VJ8="
+ "version": "3.10.0",
+ "sha256": "tOJtjcUhdLeKDPB9fT6RfdQUBBxvjnOxifWoOIC6r7o="
},
{
- "id": "io.smallrye.stork:stork-api:jar:2.2.0",
+ "id": "io.smallrye.stork:stork-api:jar:2.6.0",
"artifactId": "stork-api",
"groupId": "io.smallrye.stork",
- "version": "2.2.0",
- "sha256": "BMYAdNq7xXhGLidjDIkUOE_Qxce6Ir9kTEisNXzHljA="
+ "version": "2.6.0",
+ "sha256": "T-mRsWK7Qkln55Nk5p5aqgDhSAXHQ7r-yZWT0rD15jI="
},
{
- "id": "io.smallrye.stork:stork-core:jar:2.2.0",
+ "id": "io.smallrye.stork:stork-core:jar:2.6.0",
"artifactId": "stork-core",
"groupId": "io.smallrye.stork",
- "version": "2.2.0",
- "sha256": "9SEzjWk-426yyc5QAwC2wrgAeHRyXfjxKp-7DlIDOiw="
+ "version": "2.6.0",
+ "sha256": "T_aqyApgFPtHcDSW7xcXwslWIioP1kR1dop6mryDLIw="
},
{
"id": "org.eclipse.microprofile.rest.client:microprofile-rest-client-api:jar:3.0.1",
@@ -820,74 +729,74 @@
"sha256": "K3Fpi5XIksxlkjX0_-ZjteLxFRzrTncmiyP_KwxjIcs="
},
{
- "id": "io.quarkus:quarkus-container-image-docker:jar:3.1.1.Final",
+ "id": "io.quarkus:quarkus-container-image-docker:jar:3.10.0",
"artifactId": "quarkus-container-image-docker",
"groupId": "io.quarkus",
- "version": "3.1.1.Final",
- "sha256": "ANhdwmxghQAIsXaSoXvsFBuG3sViU5f2nGPxOwVNODM="
+ "version": "3.10.0",
+ "sha256": "aURX5nuKzFcF5AFed8ewVX3VJPBCr6vdtXwyY4xrzrM="
},
{
- "id": "io.quarkus:quarkus-container-image:jar:3.1.1.Final",
+ "id": "io.quarkus:quarkus-container-image:jar:3.10.0",
"artifactId": "quarkus-container-image",
"groupId": "io.quarkus",
- "version": "3.1.1.Final",
- "sha256": "cOrFgdw_IZm_Yxp9NkORPM_0tAQI0x0_Y-rCaPlgV5g="
+ "version": "3.10.0",
+ "sha256": "lTAyeGe6EzQSErDUoEIgBfgEuQqCMYrd0HluLeu9c3A="
},
{
- "id": "org.apache.commons:commons-lang3:jar:3.12.0",
+ "id": "org.apache.commons:commons-lang3:jar:3.14.0",
"artifactId": "commons-lang3",
"groupId": "org.apache.commons",
- "version": "3.12.0",
- "sha256": "2RnZBEhsA3-NGTQS2gyS4iqfokIwudZ6V4VcXDHH6U4="
+ "version": "3.14.0",
+ "sha256": "e5a_PuaJSau1vEZVWawnDgVRWW-jRSP934kOxBjd4Tw="
},
{
- "id": "io.quarkus:quarkus-junit5:jar:3.1.1.Final",
+ "id": "io.quarkus:quarkus-junit5:jar:3.10.0",
"artifactId": "quarkus-junit5",
"groupId": "io.quarkus",
- "version": "3.1.1.Final",
- "sha256": "QDXMPaX1KvCrXSnk2U_OZWKZSbXtUOU5XSWEsA6kcCw="
+ "version": "3.10.0",
+ "sha256": "yfdC_5lb3LxGeoyY_DMb1E4BrTeLZUQiRxk801Bi3Rs="
},
{
- "id": "io.quarkus:quarkus-bootstrap-core:jar:3.1.1.Final",
+ "id": "io.quarkus:quarkus-bootstrap-core:jar:3.10.0",
"artifactId": "quarkus-bootstrap-core",
"groupId": "io.quarkus",
- "version": "3.1.1.Final",
- "sha256": "Zuq1elaqb9pS0rImqyQIp5PuoKV6kOHFXi5v_aeXiCg="
+ "version": "3.10.0",
+ "sha256": "IyAe7te31gP0-yxDmYT3rwcCajVpggTrPP6JxoTVVQQ="
},
{
- "id": "io.quarkus:quarkus-bootstrap-app-model:jar:3.1.1.Final",
+ "id": "io.quarkus:quarkus-bootstrap-app-model:jar:3.10.0",
"artifactId": "quarkus-bootstrap-app-model",
"groupId": "io.quarkus",
- "version": "3.1.1.Final",
- "sha256": "G40szUn4p06yC6Jgl5fWL_8Dz5DMRDWuuvz40VKURMk="
+ "version": "3.10.0",
+ "sha256": "-BFME0DDgAS4lOdeAIdg5_KJ32Nwny-Qey_tC0YRyOY="
},
{
- "id": "io.smallrye.common:smallrye-common-io:jar:2.1.0",
+ "id": "io.smallrye.common:smallrye-common-io:jar:2.3.0",
"artifactId": "smallrye-common-io",
"groupId": "io.smallrye.common",
- "version": "2.1.0",
- "sha256": "0bM8h_DqyHX6lYENhksCbf6s5UZS8HUtDzNVbPsJv1Q="
+ "version": "2.3.0",
+ "sha256": "2erPube3ZaeVvpi49fjWfehRG-9h3cIOt1JC7DkqRB0="
},
{
- "id": "org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.3.5",
+ "id": "org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.9.0.M2",
"artifactId": "org.eclipse.sisu.inject",
"groupId": "org.eclipse.sisu",
- "version": "0.3.5",
- "sha256": "xZlAELzc4dK9YDpNUMRxkd29eHXRFXsjqqJtM8gv2hM="
+ "version": "0.9.0.M2",
+ "sha256": "m2K8_DUqLsh9qLAeN8lSpU01i7sa8_ISZIrq_nqy27U="
},
{
- "id": "io.quarkus:quarkus-test-common:jar:3.1.1.Final",
+ "id": "io.quarkus:quarkus-test-common:jar:3.10.0",
"artifactId": "quarkus-test-common",
"groupId": "io.quarkus",
- "version": "3.1.1.Final",
- "sha256": "CpoPcpxgVsD4mQF26t_mMct6zKEWObZiEuavGJaI2N0="
+ "version": "3.10.0",
+ "sha256": "q5np9cvkR4OWlONB1JyzfYXR1BCpeg4qynQP_rV8e1Y="
},
{
- "id": "io.quarkus:quarkus-core-deployment:jar:3.1.1.Final",
+ "id": "io.quarkus:quarkus-core-deployment:jar:3.10.0",
"artifactId": "quarkus-core-deployment",
"groupId": "io.quarkus",
- "version": "3.1.1.Final",
- "sha256": "1xTvq_-ncPeGl1cD0rEb0Js0tYmEqB-CWG0-1IXDqqA="
+ "version": "3.10.0",
+ "sha256": "mk6ASN7deVEnhfPIHZvQfDGp2ceiZRb3nlO0TNudv6s="
},
{
"id": "org.aesh:readline:jar:2.4",
@@ -911,81 +820,95 @@
"sha256": "NNtAwroutEG4Y09fOscw_1fYJWyVATbzGV8Mx6XGIeM="
},
{
- "id": "io.quarkus.gizmo:gizmo:jar:1.6.1.Final",
+ "id": "io.quarkus.gizmo:gizmo:jar:1.8.0",
"artifactId": "gizmo",
"groupId": "io.quarkus.gizmo",
- "version": "1.6.1.Final",
- "sha256": "PSqXTZ-3C1O07_u_DAHAyQasl8oSJjqa7x4CMNoq7kw="
+ "version": "1.8.0",
+ "sha256": "tMkD5AWVMTaFrT_vV6Qp5xX-9aJUxlNwO6sZ7lDuwHc="
},
{
- "id": "org.ow2.asm:asm-util:jar:9.5",
+ "id": "org.ow2.asm:asm-util:jar:9.7",
"artifactId": "asm-util",
"groupId": "org.ow2.asm",
- "version": "9.5",
- "sha256": "xGfxuzwIiI9HJD4tR1IJs0p3LWJ-RPygZ1Lhi7A4vXQ="
+ "version": "9.7",
+ "sha256": "N6ZBTTZkGXPxrxBJN8ldbZIbLdtNYSxmxanysT_BQhE="
},
{
- "id": "org.ow2.asm:asm-analysis:jar:9.5",
+ "id": "org.ow2.asm:asm-analysis:jar:9.7",
"artifactId": "asm-analysis",
"groupId": "org.ow2.asm",
- "version": "9.5",
- "sha256": "OfHPF5EzVwHDsCyueyvCEFfsmlWyJAeJy21VKyssYvo="
+ "version": "9.7",
+ "sha256": "e8a8vCE3mUigyMRn-w-GQgbluBj2vAtUaHL1yflBVW8="
},
{
- "id": "io.quarkus:quarkus-class-change-agent:jar:3.1.1.Final",
+ "id": "io.quarkus:quarkus-class-change-agent:jar:3.10.0",
"artifactId": "quarkus-class-change-agent",
"groupId": "io.quarkus",
- "version": "3.1.1.Final",
- "sha256": "nWYuyZhhe-lGdReUiUUpeVH3sn6Tilt71llBuUXF57Y="
+ "version": "3.10.0",
+ "sha256": "TE8p8k7oxVmUZNSF94Ab0W_ULTGlHNJU8L9ATFMfQnY="
},
{
- "id": "io.quarkus:quarkus-devtools-utilities:jar:3.1.1.Final",
+ "id": "io.quarkus:quarkus-devtools-utilities:jar:3.10.0",
"artifactId": "quarkus-devtools-utilities",
"groupId": "io.quarkus",
- "version": "3.1.1.Final",
- "sha256": "L3NC7hr5GfTTtP91u67mlQawZkOW8f2ws8j1ua2MwHc="
+ "version": "3.10.0",
+ "sha256": "TzhxQjnj4QncGunOdzda4Jopic5autRpciSFzURHhbM="
},
{
- "id": "io.quarkus:quarkus-builder:jar:3.1.1.Final",
+ "id": "io.quarkus:quarkus-builder:jar:3.10.0",
"artifactId": "quarkus-builder",
"groupId": "io.quarkus",
- "version": "3.1.1.Final",
- "sha256": "nFt-4afiWdt4XdPwH6QNMuqw_sX1JmbOzhxauBgF68c="
+ "version": "3.10.0",
+ "sha256": "0x3YC4FEFhHVcjUmBXn8baafcLtFJjohJdweiQA-l1I="
+ },
+ {
+ "id": "org.graalvm.sdk:nativeimage:jar:23.1.2",
+ "artifactId": "nativeimage",
+ "groupId": "org.graalvm.sdk",
+ "version": "23.1.2",
+ "sha256": "sgwAgjwZTK3K_I6FO5aldU5kG0Z9xWY05zjXVrMIrZo="
+ },
+ {
+ "id": "org.graalvm.sdk:word:jar:23.1.2",
+ "artifactId": "word",
+ "groupId": "org.graalvm.sdk",
+ "version": "23.1.2",
+ "sha256": "KuenH_P1P2HR1zYKYVL2fOOQKuhsoiswtwII3Az04Dk="
},
{
- "id": "org.junit.platform:junit-platform-launcher:jar:1.9.3",
+ "id": "org.junit.platform:junit-platform-launcher:jar:1.10.2",
"artifactId": "junit-platform-launcher",
"groupId": "org.junit.platform",
- "version": "1.9.3",
- "sha256": "hRXpGAignIya9eNZGFtZkbXna4rc8YW5o9q07I5bqP8="
+ "version": "1.10.2",
+ "sha256": "rtT0L7kK2ps0fCMfE2VvwJEhuiDattxkamvZ1Nox5Ko="
},
{
- "id": "io.quarkus:quarkus-bootstrap-maven-resolver:jar:3.1.1.Final",
+ "id": "io.quarkus:quarkus-bootstrap-maven-resolver:jar:3.10.0",
"artifactId": "quarkus-bootstrap-maven-resolver",
"groupId": "io.quarkus",
- "version": "3.1.1.Final",
- "sha256": "D2l9LNXr_5zvXB35UKbLnYpazDOih9trOMf-plwchxE="
+ "version": "3.10.0",
+ "sha256": "Gi2-KEcAscQzViOO71z9Kfh4c1BHYcWSamvn9-aKDDs="
},
{
- "id": "io.smallrye.beanbag:smallrye-beanbag-maven:jar:1.1.0",
+ "id": "io.smallrye.beanbag:smallrye-beanbag-maven:jar:1.4.1",
"artifactId": "smallrye-beanbag-maven",
"groupId": "io.smallrye.beanbag",
- "version": "1.1.0",
- "sha256": "9srzaK-4FCXyliCQ6T05cSEaMOm4prykDXaAuV2HgUk="
+ "version": "1.4.1",
+ "sha256": "G6qao60IcQbRzd4AlutX5V4l_vDudNHf_JGf0udM_Xc="
},
{
- "id": "io.smallrye.beanbag:smallrye-beanbag-sisu:jar:1.1.0",
+ "id": "io.smallrye.beanbag:smallrye-beanbag-sisu:jar:1.4.1",
"artifactId": "smallrye-beanbag-sisu",
"groupId": "io.smallrye.beanbag",
- "version": "1.1.0",
- "sha256": "FT2rLdCrWFq-OKRcpoyJthXWgADqlKSuCKNawA-Hf00="
+ "version": "1.4.1",
+ "sha256": "lcmQDAlzAzSsKko6u4kE3jpAsk-r07opKXrNVwN6Mso="
},
{
- "id": "io.smallrye.beanbag:smallrye-beanbag:jar:1.1.0",
+ "id": "io.smallrye.beanbag:smallrye-beanbag:jar:1.4.1",
"artifactId": "smallrye-beanbag",
"groupId": "io.smallrye.beanbag",
- "version": "1.1.0",
- "sha256": "mt8a7XJGt35rq94C8MgN6DjQk0Dvp-5pwV17d5s73MY="
+ "version": "1.4.1",
+ "sha256": "nxYl8xB-fywCWrclaFJjzg1C_Qb5YYdAZxtSE7CQVkw="
},
{
"id": "javax.inject:javax.inject:jar:1",
@@ -995,81 +918,88 @@
"sha256": "kcdwRKUMSBY2wy2Rb9ickRinIZU5BFLIEGUID5V95_8="
},
{
- "id": "org.apache.maven:maven-artifact:jar:3.9.1",
+ "id": "org.apache.maven:maven-artifact:jar:3.9.6",
"artifactId": "maven-artifact",
"groupId": "org.apache.maven",
- "version": "3.9.1",
- "sha256": "G2c9ds-HdzRMY1DViFM-o5Tdk_6aGyv_MZ2Wyw3edPI="
+ "version": "3.9.6",
+ "sha256": "rXoPtAj45HWFzMDQAR4LUB2Tv8mIjTabvUoEPRlHUHM="
},
{
- "id": "org.apache.maven:maven-builder-support:jar:3.9.1",
+ "id": "org.apache.maven:maven-builder-support:jar:3.9.6",
"artifactId": "maven-builder-support",
"groupId": "org.apache.maven",
- "version": "3.9.1",
- "sha256": "_-UV0667ouXb5Vgbjv_sQcsDT0CePcF4T9poC9xGAxs="
+ "version": "3.9.6",
+ "sha256": "4fTSeERZzoo0udrhgpoZmbVp5IPiHun6pzaGkecpKW4="
},
{
- "id": "org.apache.maven:maven-model:jar:3.9.1",
+ "id": "org.apache.maven:maven-model:jar:3.9.6",
"artifactId": "maven-model",
"groupId": "org.apache.maven",
- "version": "3.9.1",
- "sha256": "daSBALi0BXpbGpMFam4yk6cwha2SrQ98QUi28mfd8Hg="
+ "version": "3.9.6",
+ "sha256": "T48H_ba4cB-omiOi7fgwgI_WWJLZDM5AwObffI8vy2I="
},
{
- "id": "org.apache.maven:maven-model-builder:jar:3.9.1",
+ "id": "org.apache.maven:maven-model-builder:jar:3.9.6",
"artifactId": "maven-model-builder",
"groupId": "org.apache.maven",
- "version": "3.9.1",
- "sha256": "ODiFpM8aGwz5QbtNLcPTvN0lG0a2jAScJ3Ma9QszIpA="
+ "version": "3.9.6",
+ "sha256": "X5ba-8QR7ksehCY2jQ0x0Fq1pNrOaYCBQxQqABdZhyE="
},
{
- "id": "org.apache.maven:maven-repository-metadata:jar:3.9.1",
+ "id": "org.apache.maven:maven-repository-metadata:jar:3.9.6",
"artifactId": "maven-repository-metadata",
"groupId": "org.apache.maven",
- "version": "3.9.1",
- "sha256": "_kZQXv0VA7pIufdfJU2Z_pCv8mfBP4qq7f3kydg4VNc="
+ "version": "3.9.6",
+ "sha256": "4EemeyBMQ0mUJT4qtb3_X-jLetqTFqw-dUw5-QDqhHs="
},
{
- "id": "org.apache.maven:maven-settings:jar:3.9.1",
+ "id": "org.apache.maven:maven-settings:jar:3.9.6",
"artifactId": "maven-settings",
"groupId": "org.apache.maven",
- "version": "3.9.1",
- "sha256": "Jhf0vPV7ewabkzW76AC-mnDznQxGnj_RrGLk-veK2G4="
+ "version": "3.9.6",
+ "sha256": "DSAP07NU1lPSoCzbpqObbcJ0SoU5_zbqQj_mLKxzZ5k="
},
{
- "id": "org.apache.maven.resolver:maven-resolver-api:jar:1.9.7",
+ "id": "org.apache.maven.resolver:maven-resolver-api:jar:1.9.18",
"artifactId": "maven-resolver-api",
"groupId": "org.apache.maven.resolver",
- "version": "1.9.7",
- "sha256": "iU6wfqeV83SjA33-6Vg-LSUp1SxkoqH92tiscXSewlI="
+ "version": "1.9.18",
+ "sha256": "6_ueHf7qPCAXkFGEWB4AeHS06qydKL__z-UTPXCsYzk="
},
{
- "id": "org.apache.maven.resolver:maven-resolver-impl:jar:1.9.7",
+ "id": "org.apache.maven.resolver:maven-resolver-impl:jar:1.9.18",
"artifactId": "maven-resolver-impl",
"groupId": "org.apache.maven.resolver",
- "version": "1.9.7",
- "sha256": "6dlbsg2tDt7WXo3ilDBlH_8SGOPhH859AqK9IzcuY4s="
+ "version": "1.9.18",
+ "sha256": "a7nJDQBwmABHSchn2i6vV4X8ETmQdxh0nBCXvbKSm_g="
},
{
- "id": "org.apache.maven.resolver:maven-resolver-named-locks:jar:1.9.7",
+ "id": "org.apache.maven.resolver:maven-resolver-named-locks:jar:1.9.18",
"artifactId": "maven-resolver-named-locks",
"groupId": "org.apache.maven.resolver",
- "version": "1.9.7",
- "sha256": "ZFsfbFnTJTXhGEh5yj-dRumDUiX738T1lfHymRwkHnU="
+ "version": "1.9.18",
+ "sha256": "CY3nu8Wwsmw-_3SsMP-6ZoD9q5v0rrq5XD9eL-nq7qg="
},
{
- "id": "org.apache.maven.resolver:maven-resolver-spi:jar:1.9.7",
+ "id": "org.apache.maven.resolver:maven-resolver-spi:jar:1.9.18",
"artifactId": "maven-resolver-spi",
"groupId": "org.apache.maven.resolver",
- "version": "1.9.7",
- "sha256": "ddn8IobI5C2r1HLql28QZDLnrnPFtg8EDCuP-7oEN20="
+ "version": "1.9.18",
+ "sha256": "02T86aF7DgsHPCbvqSr5WynADEKUPc7UoRaKeSP9P-E="
},
{
- "id": "org.apache.maven.resolver:maven-resolver-util:jar:1.9.7",
+ "id": "org.apache.maven.resolver:maven-resolver-util:jar:1.9.18",
"artifactId": "maven-resolver-util",
"groupId": "org.apache.maven.resolver",
- "version": "1.9.7",
- "sha256": "VRFq5uED5nCv92GqfUfbjTnoVwirY6ddx2QB5g_vPxw="
+ "version": "1.9.18",
+ "sha256": "LrDqZnvEiThEeCMd2nUWQH1LWyKhOAdyKYcd6TYqeuI="
+ },
+ {
+ "id": "org.apache.maven.resolver:maven-resolver-transport-http:jar:1.9.18",
+ "artifactId": "maven-resolver-transport-http",
+ "groupId": "org.apache.maven.resolver",
+ "version": "1.9.18",
+ "sha256": "H6Aictp6YEcY8i4ryXdfFDUEh1SP_DCi_6rhwtHRpYo="
},
{
"id": "org.apache.maven.wagon:wagon-provider-api:jar:3.5.3",
@@ -1078,13 +1008,6 @@
"version": "3.5.3",
"sha256": "XnIAAziUXtPpb45PV40dBnLhr34ZwOkBQZeuWzGvPvQ="
},
- {
- "id": "org.apache.maven.wagon:wagon-http-lightweight:jar:3.5.3",
- "artifactId": "wagon-http-lightweight",
- "groupId": "org.apache.maven.wagon",
- "version": "3.5.3",
- "sha256": "mi9pIwcYuGIxG7LUeOC055mr_wB2eSr3wmt5i5kWnCM="
- },
{
"id": "org.apache.maven.wagon:wagon-http-shared:jar:3.5.3",
"artifactId": "wagon-http-shared",
@@ -1107,46 +1030,74 @@
"sha256": "huAlXUyHnGG0gz7X8TEk6LtnnfR967EnMm59t91JoHs="
},
{
- "id": "org.sonatype.plexus:plexus-cipher:jar:1.7",
- "artifactId": "plexus-cipher",
- "groupId": "org.sonatype.plexus",
- "version": "1.7",
- "sha256": "EUhZhh_xD5h7iA1vNOMhUnSvPMkrOnODHITVluN8ZRE="
+ "id": "org.codehaus.plexus:plexus-xml:jar:4.0.0",
+ "artifactId": "plexus-xml",
+ "groupId": "org.codehaus.plexus",
+ "version": "4.0.0",
+ "sha256": "OEPevd7tK_f5Jk-MidAXvEkw6EMqouZl_eWUmAXgUcc="
},
{
- "id": "org.sonatype.plexus:plexus-sec-dispatcher:jar:1.4",
- "artifactId": "plexus-sec-dispatcher",
- "groupId": "org.sonatype.plexus",
- "version": "1.4",
- "sha256": "2nPjK1gTLmTa8SJp_Z0BHAswPyNIQPF5kIclpjK2tXw="
+ "id": "org.apache.maven:maven-xml-impl:jar:4.0.0-alpha-5",
+ "artifactId": "maven-xml-impl",
+ "groupId": "org.apache.maven",
+ "version": "4.0.0-alpha-5",
+ "sha256": "-n0NBaJil2lH6V9yx-KjMAuO6-Kmsz60CABDzdqhOFQ="
},
{
- "id": "org.apache.maven:maven-embedder:jar:3.9.1",
- "artifactId": "maven-embedder",
+ "id": "org.apache.maven:maven-api-xml:jar:4.0.0-alpha-5",
+ "artifactId": "maven-api-xml",
"groupId": "org.apache.maven",
- "version": "3.9.1",
- "sha256": "4fWlcTtwMsUF7NmhlljA6BSKY81tO6XYZBHW8QpUsYo="
+ "version": "4.0.0-alpha-5",
+ "sha256": "40VWp6viUJGUlCzOubolWH8W9ZZP8WAQL-SSb2fjiVE="
},
{
- "id": "org.apache.maven:maven-core:jar:3.9.1",
- "artifactId": "maven-core",
+ "id": "org.apache.maven:maven-api-meta:jar:4.0.0-alpha-5",
+ "artifactId": "maven-api-meta",
"groupId": "org.apache.maven",
- "version": "3.9.1",
- "sha256": "eUlEmkNRQ6idMWSJf3P718IAoMPIuVoK9oyB3T6Peug="
+ "version": "4.0.0-alpha-5",
+ "sha256": "doiV4RrTeryOksHc9u5SrIGvgNR6PWCMzVhj19TdFLI="
},
{
- "id": "org.codehaus.plexus:plexus-component-annotations:jar:2.1.0",
- "artifactId": "plexus-component-annotations",
- "groupId": "org.codehaus.plexus",
+ "id": "org.codehaus.plexus:plexus-cipher:jar:2.0",
+ "artifactId": "plexus-cipher",
+ "groupId": "org.codehaus.plexus",
+ "version": "2.0",
+ "sha256": "mn8bXFqe_9Yerf2HMUUqL3ao55ER-sOR73XqgBvqIDo="
+ },
+ {
+ "id": "org.codehaus.plexus:plexus-sec-dispatcher:jar:2.0",
+ "artifactId": "plexus-sec-dispatcher",
+ "groupId": "org.codehaus.plexus",
+ "version": "2.0",
+ "sha256": "hzE5lgxMeAF23aWAsAOixL-CGIvc5buZI04iTves_Os="
+ },
+ {
+ "id": "org.apache.maven:maven-embedder:jar:3.9.6",
+ "artifactId": "maven-embedder",
+ "groupId": "org.apache.maven",
+ "version": "3.9.6",
+ "sha256": "5tV5Jgjs8xSF-5dbyxY40MuAl33u0QaLc1sLXrc5o8c="
+ },
+ {
+ "id": "org.apache.maven:maven-core:jar:3.9.6",
+ "artifactId": "maven-core",
+ "groupId": "org.apache.maven",
+ "version": "3.9.6",
+ "sha256": "wTJ1kDmHWdoZGNvzVuttY_j85xkqgFyzyOM2-7EVXcA="
+ },
+ {
+ "id": "org.codehaus.plexus:plexus-component-annotations:jar:2.1.0",
+ "artifactId": "plexus-component-annotations",
+ "groupId": "org.codehaus.plexus",
"version": "2.1.0",
"sha256": "veNhfOm1vPlYQSYEYIAEOvaks7rqQKOxU_Aue7wyrKw="
},
{
- "id": "org.apache.maven:maven-plugin-api:jar:3.9.1",
+ "id": "org.apache.maven:maven-plugin-api:jar:3.9.6",
"artifactId": "maven-plugin-api",
"groupId": "org.apache.maven",
- "version": "3.9.1",
- "sha256": "3mGFwQojTCGeCpXotnAsjLsocn_VfAmX2Kl-24n56KM="
+ "version": "3.9.6",
+ "sha256": "P9Zk9-URRjVhvDQ4IjR2GLjKCVLbhdp4WAkWbwp2JBE="
},
{
"id": "org.apache.maven.shared:maven-shared-utils:jar:3.3.4",
@@ -1169,13 +1120,6 @@
"version": "1.0",
"sha256": "Ct3sZw_tzT8RPFyAkdeDKA0j9146y4QbYanNsHk3agg="
},
- {
- "id": "com.google.guava:guava:jar:31.1-jre",
- "artifactId": "guava",
- "groupId": "com.google.guava",
- "version": "31.1-jre",
- "sha256": "pC7cnKt5Ljn-ObuU8_ymVe0Vf_h6iveOHWulsHxKAKs="
- },
{
"id": "com.google.guava:failureaccess:jar:1.0.1",
"artifactId": "failureaccess",
@@ -1198,60 +1142,46 @@
"sha256": "Uvd8XsSfeHycQX6-1dbv2ZIvRKIC8hc3bk-UwNdPNUk="
},
{
- "id": "org.codehaus.plexus:plexus-sec-dispatcher:jar:2.0",
- "artifactId": "plexus-sec-dispatcher",
- "groupId": "org.codehaus.plexus",
- "version": "2.0",
- "sha256": "hzE5lgxMeAF23aWAsAOixL-CGIvc5buZI04iTves_Os="
- },
- {
- "id": "org.codehaus.plexus:plexus-cipher:jar:2.0",
- "artifactId": "plexus-cipher",
- "groupId": "org.codehaus.plexus",
- "version": "2.0",
- "sha256": "mn8bXFqe_9Yerf2HMUUqL3ao55ER-sOR73XqgBvqIDo="
- },
- {
- "id": "commons-cli:commons-cli:jar:1.4",
+ "id": "commons-cli:commons-cli:jar:1.5.0",
"artifactId": "commons-cli",
"groupId": "commons-cli",
- "version": "1.4",
- "sha256": "_Tx8lUWpzbIFHR-RVcT3ax5KxaVzBEBKbu21eP-6cyg="
+ "version": "1.5.0",
+ "sha256": "vIuwH8D60lA4VwbiD5J93P9hc_Yzmzh9yHkjd1JWesY="
},
{
- "id": "org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.3.5",
+ "id": "org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.9.0.M2",
"artifactId": "org.eclipse.sisu.plexus",
"groupId": "org.eclipse.sisu",
- "version": "0.3.5",
- "sha256": "fkxhCW1wgm8g96fVXFmlUo56pa0kfuLf5UTk3SX2p4Q="
+ "version": "0.9.0.M2",
+ "sha256": "lQDTA85GfibRKd2oVZw_OpEnfUGrSdLEtKV3lTamL8E="
},
{
- "id": "org.apache.maven:maven-settings-builder:jar:3.9.1",
+ "id": "org.apache.maven:maven-settings-builder:jar:3.9.6",
"artifactId": "maven-settings-builder",
"groupId": "org.apache.maven",
- "version": "3.9.1",
- "sha256": "8_gkH_fwkfttwLNG69FyyCD1gliri5YCRp4OMTd_7lU="
+ "version": "3.9.6",
+ "sha256": "6XzCReTvgzxYn84LWopNd-Og4B5hnFe1NCxeFtN6eR0="
},
{
- "id": "org.apache.maven:maven-resolver-provider:jar:3.9.1",
+ "id": "org.apache.maven:maven-resolver-provider:jar:3.9.6",
"artifactId": "maven-resolver-provider",
"groupId": "org.apache.maven",
- "version": "3.9.1",
- "sha256": "disdXelEKYX8zDivgJPM9TUaY90N9MH_Y3rK3KNPXrM="
+ "version": "3.9.6",
+ "sha256": "c7ALJEt7nihWVKRedliSv102nad9QrW0tUKRIu0ZijM="
},
{
- "id": "org.apache.maven.resolver:maven-resolver-connector-basic:jar:1.9.7",
+ "id": "org.apache.maven.resolver:maven-resolver-connector-basic:jar:1.9.18",
"artifactId": "maven-resolver-connector-basic",
"groupId": "org.apache.maven.resolver",
- "version": "1.9.7",
- "sha256": "untePGywve-5xOSYcc0w3LWex0m85Z-OFXHN9cKPOWM="
+ "version": "1.9.18",
+ "sha256": "-I2X0PGFcaZ15ztF1qk4SwAyLJ-uUUrWdh1ltymk6Co="
},
{
- "id": "org.apache.maven.resolver:maven-resolver-transport-wagon:jar:1.9.7",
+ "id": "org.apache.maven.resolver:maven-resolver-transport-wagon:jar:1.9.18",
"artifactId": "maven-resolver-transport-wagon",
"groupId": "org.apache.maven.resolver",
- "version": "1.9.7",
- "sha256": "S-wOg7vnvx6N-IsxyMIyTOArnj6YdQgoT4lTBGgieAs="
+ "version": "1.9.18",
+ "sha256": "WkrrJOIAuAe4wAcEoWRFE-8QO523oYBVW5cav4ApCnM="
},
{
"id": "org.apache.maven.wagon:wagon-http:jar:3.5.3",
@@ -1268,53 +1198,60 @@
"sha256": "r8khb6l7eNrSJ7So1NZ7mJe_ETpX-AWY1imThBET4QM="
},
{
- "id": "io.quarkus:quarkus-bootstrap-gradle-resolver:jar:3.1.1.Final",
+ "id": "io.quarkus:quarkus-bootstrap-gradle-resolver:jar:3.10.0",
"artifactId": "quarkus-bootstrap-gradle-resolver",
"groupId": "io.quarkus",
- "version": "3.1.1.Final",
- "sha256": "LQlyBtnlqP2y1Fl-Q3stF76605PyE4X77i2pwJSvIxs="
+ "version": "3.10.0",
+ "sha256": "Thdx05-HpLmlJJzMxmWONsRZni8AMzqLEgZtCRXGVqY="
+ },
+ {
+ "id": "io.smallrye:jandex:jar:3.1.7",
+ "artifactId": "jandex",
+ "groupId": "io.smallrye",
+ "version": "3.1.7",
+ "sha256": "U7o1cV8M5_IdyPVdYFuk6IbVUCrYslvIsTV5_JMqUkE="
},
{
- "id": "commons-io:commons-io:jar:2.11.0",
+ "id": "commons-io:commons-io:jar:2.16.0",
"artifactId": "commons-io",
"groupId": "commons-io",
- "version": "2.11.0",
- "sha256": "lhsvbYfbrMXVSr9Fq3puJJX4m3VZiWLYxyPOqbwhCQg="
+ "version": "2.16.0",
+ "sha256": "0eQXkBI1-uOqDLlza66vW3Tec0mBfRxyOQ2C49g9Opc="
},
{
- "id": "io.quarkus:quarkus-junit5-properties:jar:3.1.1.Final",
+ "id": "io.quarkus:quarkus-junit5-properties:jar:3.10.0",
"artifactId": "quarkus-junit5-properties",
"groupId": "io.quarkus",
- "version": "3.1.1.Final",
- "sha256": "XJxfc8gsMqA6UxmcFrRelNeFtC4X4Bs-4QxlSv5s9cw="
+ "version": "3.10.0",
+ "sha256": "pBMWZr81boNvtv3LZ-d6wucYi0C9HmnoIagaFCoWip4="
},
{
- "id": "org.junit.jupiter:junit-jupiter:jar:5.9.3",
+ "id": "org.junit.jupiter:junit-jupiter:jar:5.10.2",
"artifactId": "junit-jupiter",
"groupId": "org.junit.jupiter",
- "version": "5.9.3",
- "sha256": "Zy4XmLfVM3i_QIy2NPyFbP78F9dB5V8m1ohjg4Y-IYo="
+ "version": "5.10.2",
+ "sha256": "Jj5DRH9LQPEmrWsdy9ffN5RIQTve244NJAxby7p8ek8="
},
{
- "id": "org.junit.jupiter:junit-jupiter-api:jar:5.9.3",
+ "id": "org.junit.jupiter:junit-jupiter-api:jar:5.10.2",
"artifactId": "junit-jupiter-api",
"groupId": "org.junit.jupiter",
- "version": "5.9.3",
- "sha256": "2JXj7t9PobEN4xqRvlWjAbswe_GO8yWz-l2z-A7pLRw="
+ "version": "5.10.2",
+ "sha256": "r_93wYbNMXJ1gDhy-lEzqoAf1qxAvZHHimz4AJtLF8w="
},
{
- "id": "org.opentest4j:opentest4j:jar:1.2.0",
+ "id": "org.opentest4j:opentest4j:jar:1.3.0",
"artifactId": "opentest4j",
"groupId": "org.opentest4j",
- "version": "1.2.0",
- "sha256": "WIEt5giY2Xb7ge87YtoFxmBMGP1KJJ9QRCgkefwoavI="
+ "version": "1.3.0",
+ "sha256": "SOLfY2yrZWPO1k3N_4q7I1VifLI27wvzdZhoLd90Lxs="
},
{
- "id": "org.junit.platform:junit-platform-commons:jar:1.9.3",
+ "id": "org.junit.platform:junit-platform-commons:jar:1.10.2",
"artifactId": "junit-platform-commons",
"groupId": "org.junit.platform",
- "version": "1.9.3",
- "sha256": "hRkVffgTwhDoX8FBS3QQnj2F9D1wklY-1wTEPEjw1eY="
+ "version": "1.10.2",
+ "sha256": "tWpewACked9Jc7GLuiTJj-Dbj6oUyJB9PvRR2Mcf2K4="
},
{
"id": "org.apiguardian:apiguardian-api:jar:1.1.2",
@@ -1324,25 +1261,25 @@
"sha256": "tQlEisUG1gcxnxglN_CzXXEAdYLsdBgyofER5bW3Czg="
},
{
- "id": "org.junit.jupiter:junit-jupiter-params:jar:5.9.3",
+ "id": "org.junit.jupiter:junit-jupiter-params:jar:5.10.2",
"artifactId": "junit-jupiter-params",
"groupId": "org.junit.jupiter",
- "version": "5.9.3",
- "sha256": "KvKC_pHlZJXAO4TpyucC6qIS_C9qMf2deeMcy2TNgf0="
+ "version": "5.10.2",
+ "sha256": "7bHkP_C4BnYm_7VeXp7sodmrJHgUGnx_JT0RWynMfPI="
},
{
- "id": "org.junit.jupiter:junit-jupiter-engine:jar:5.9.3",
+ "id": "org.junit.jupiter:junit-jupiter-engine:jar:5.10.2",
"artifactId": "junit-jupiter-engine",
"groupId": "org.junit.jupiter",
- "version": "5.9.3",
- "sha256": "tV4wSxzS6PEWwat3pdw-yoxNm0amnghLY6ylHN61Xw8="
+ "version": "5.10.2",
+ "sha256": "tt812nUKVGrpMjdvEbPA34QfDJDHyylEzTmttDKIbks="
},
{
- "id": "org.junit.platform:junit-platform-engine:jar:1.9.3",
+ "id": "org.junit.platform:junit-platform-engine:jar:1.10.2",
"artifactId": "junit-platform-engine",
"groupId": "org.junit.platform",
- "version": "1.9.3",
- "sha256": "DDlVPZoDUQdXIn9aHGzGUwKHsaMh7WJYRQZkh0qioWo="
+ "version": "1.10.2",
+ "sha256": "kFy6m0mYzMKdEjkIWn-x_g4oAk11JhUjVtgQ7ewKSaM="
},
{
"id": "com.thoughtworks.xstream:xstream:jar:1.4.20",
@@ -1366,25 +1303,25 @@
"sha256": "NOCO5iEWBxy7acDtcNFaelsgjWJ5jFnyEgu4kpMky2M="
},
{
- "id": "io.rest-assured:rest-assured:jar:5.3.0",
+ "id": "io.rest-assured:rest-assured:jar:5.4.0",
"artifactId": "rest-assured",
"groupId": "io.rest-assured",
- "version": "5.3.0",
- "sha256": "4VmnWMCH6gISGmoR2AbK1i_-NE7N72GDiGDoYPPlCW4="
+ "version": "5.4.0",
+ "sha256": "2BPh8EpSu-KORHmkEQ5JdfR5xP46dx5a4FYKMkBIOl0="
},
{
- "id": "org.apache.groovy:groovy:jar:4.0.6",
+ "id": "org.apache.groovy:groovy:jar:4.0.16",
"artifactId": "groovy",
"groupId": "org.apache.groovy",
- "version": "4.0.6",
- "sha256": "lZHPVTfKvV04czilbcS3btHQJg-_S2kRYJirVEGcbx8="
+ "version": "4.0.16",
+ "sha256": "Nu69el7kF7dX9WTb9P4_yw9BUplA8Id-aL-latsKFpg="
},
{
- "id": "org.apache.groovy:groovy-xml:jar:4.0.6",
+ "id": "org.apache.groovy:groovy-xml:jar:4.0.16",
"artifactId": "groovy-xml",
"groupId": "org.apache.groovy",
- "version": "4.0.6",
- "sha256": "IvN6adrRk_9xYY3F84cNM05wJxq74HeyYmURO04sRuc="
+ "version": "4.0.16",
+ "sha256": "K56VGB3J8DmYpynfxkAQ4KoKIUvtPojKpTfifcruKFU="
},
{
"id": "org.apache.httpcomponents:httpclient:jar:4.5.14",
@@ -1401,11 +1338,11 @@
"sha256": "bJs90UKgncRo4jrTmq1vdaDyuFElEERp8CblKkdORk8="
},
{
- "id": "commons-codec:commons-codec:jar:1.15",
+ "id": "commons-codec:commons-codec:jar:1.16.1",
"artifactId": "commons-codec",
"groupId": "commons-codec",
- "version": "1.15",
- "sha256": "s-n21jp5AQm_DQVmEfvtHPaQVYJt7-uYlKcTadJG7WM="
+ "version": "1.16.1",
+ "sha256": "7Ie_tV8iy9GyHiGQ7toosrMS7SpDHuSfvcwBgS0EpeQ="
},
{
"id": "org.apache.httpcomponents:httpmime:jar:4.5.14",
@@ -1415,11 +1352,11 @@
"sha256": "1AEkPVxurpKKNxIbboGRWMjDLqBYR5PnKFu0iasqPRc="
},
{
- "id": "org.hamcrest:hamcrest:jar:2.1",
+ "id": "org.hamcrest:hamcrest:jar:2.2",
"artifactId": "hamcrest",
"groupId": "org.hamcrest",
- "version": "2.1",
- "sha256": "upOy46ViMiukMvChtTrdzFXLGIJTMZoCDtd_gk5pIFA="
+ "version": "2.2",
+ "sha256": "XmKEaonwXNeM2cGlU_NA0AJFg4DDIEVd0fj8VJeoocE="
},
{
"id": "org.ccil.cowan.tagsoup:tagsoup:jar:1.2.1",
@@ -1429,67 +1366,60 @@
"sha256": "rJf3tLHY6TN-36DjQET40O_nIj9q2POoXVTMEBjqLgQ="
},
{
- "id": "io.rest-assured:json-path:jar:5.3.0",
+ "id": "io.rest-assured:json-path:jar:5.4.0",
"artifactId": "json-path",
"groupId": "io.rest-assured",
- "version": "5.3.0",
- "sha256": "4zbLjZ20HIzkILDXbTNWxa72HKycahGMJKwMz-MN9qk="
+ "version": "5.4.0",
+ "sha256": "MzDaGigkT42QUmMGEYHHyCMJQ071Lbg7AU50ORTjeCQ="
},
{
- "id": "org.apache.groovy:groovy-json:jar:4.0.6",
+ "id": "org.apache.groovy:groovy-json:jar:4.0.16",
"artifactId": "groovy-json",
"groupId": "org.apache.groovy",
- "version": "4.0.6",
- "sha256": "myTBLoRJhMPXn-TU_iUG5XFJ5DPARb4T80TYEtLDNe8="
+ "version": "4.0.16",
+ "sha256": "EqUuhaMy0QF-JFOl9SPZvbwu759FosLzMplJYGB2thk="
},
{
- "id": "io.rest-assured:rest-assured-common:jar:5.3.0",
+ "id": "io.rest-assured:rest-assured-common:jar:5.4.0",
"artifactId": "rest-assured-common",
"groupId": "io.rest-assured",
- "version": "5.3.0",
- "sha256": "CnfHX353_wGexnusYTJb_0ulcC2Bp9azk-opvQYi3vw="
+ "version": "5.4.0",
+ "sha256": "ENbTG9bHvEoesZpPvXkDaJwNfQfPqqdABp8lSaG1Fj0="
},
{
- "id": "io.rest-assured:xml-path:jar:5.3.0",
+ "id": "io.rest-assured:xml-path:jar:5.4.0",
"artifactId": "xml-path",
"groupId": "io.rest-assured",
- "version": "5.3.0",
- "sha256": "pFZuPS2t-0-iPb8N8TwwIQ9KxBPzn-rBxmiGkaIWaw4="
+ "version": "5.4.0",
+ "sha256": "idzuH31n7Mx2eFayMDuegbkNrxnYA-qzXxyBQPUZhKA="
},
{
- "id": "io.quarkus:quarkus-junit5-mockito:jar:3.1.1.Final",
+ "id": "io.quarkus:quarkus-junit5-mockito:jar:3.10.0",
"artifactId": "quarkus-junit5-mockito",
"groupId": "io.quarkus",
- "version": "3.1.1.Final",
- "sha256": "ujGRveWdiD1Nz8O8wSHXH0Qe5F1jeIdpF80W86vuf_o="
+ "version": "3.10.0",
+ "sha256": "JcPzLZG4oMFks_YaqAgIB0r5QudQR2qGUBuK60JOEhg="
},
{
- "id": "io.quarkus:quarkus-junit5-mockito-config:jar:3.1.1.Final",
- "artifactId": "quarkus-junit5-mockito-config",
- "groupId": "io.quarkus",
- "version": "3.1.1.Final",
- "sha256": "1W_M6kPoO6EIau6hAs5ih50pt7j_kj1hJfh4p8qKj4Q="
+ "id": "org.mockito:mockito-junit-jupiter:jar:5.11.0",
+ "artifactId": "mockito-junit-jupiter",
+ "groupId": "org.mockito",
+ "version": "5.11.0",
+ "sha256": "ow6k_gSE5U9kzcFSaabG_xvYm8JqDUHkwny5HLeNxUg="
},
{
- "id": "org.mockito:mockito-core:jar:5.3.1",
+ "id": "org.mockito:mockito-core:jar:5.11.0",
"artifactId": "mockito-core",
"groupId": "org.mockito",
- "version": "5.3.1",
- "sha256": "N_TbrtJf-mve2rp4dGxEniJLEF1W_O3uh1WTZkLZkqg="
- },
- {
- "id": "net.bytebuddy:byte-buddy:jar:1.12.18",
- "artifactId": "byte-buddy",
- "groupId": "net.bytebuddy",
- "version": "1.12.18",
- "sha256": "OSAME6craj9OxDx7bS-3jsvrJcKemG9O-lcmNrOddQ4="
+ "version": "5.11.0",
+ "sha256": "8HbJax9JuNm8QuRrCWmq9WhMQMi1tnnUAOXYgAc6DgA="
},
{
- "id": "net.bytebuddy:byte-buddy-agent:jar:1.14.4",
+ "id": "net.bytebuddy:byte-buddy-agent:jar:1.14.12",
"artifactId": "byte-buddy-agent",
"groupId": "net.bytebuddy",
- "version": "1.14.4",
- "sha256": "-9GrPbQ8bHi4gEkIy5W2VlF_XILn_ejSVdi9zu9BLXA="
+ "version": "1.14.12",
+ "sha256": "KzCakwAJLgtpb3xHH9UdmWkAHfeEyKufB5l0N9dXrW0="
},
{
"id": "org.objenesis:objenesis:jar:3.3",
@@ -1499,60 +1429,67 @@
"sha256": "At_QsEOaVZHjW3CO0vVHTrCUj1Or90Y36Vm45O9pv-s="
},
{
- "id": "io.quarkus:quarkus-arc-deployment:jar:3.1.1.Final",
- "artifactId": "quarkus-arc-deployment",
+ "id": "io.quarkus:quarkus-junit5-mockito-config:jar:3.10.0",
+ "artifactId": "quarkus-junit5-mockito-config",
"groupId": "io.quarkus",
- "version": "3.1.1.Final",
- "sha256": "fas_Sggb4hUvuaO34yeT9MrmdSRBqNs6wnKch9RY_Sg="
+ "version": "3.10.0",
+ "sha256": "RxQj6JPp5-fpbUqEAVXneZKTdWRPOw7mkrBdCFG7UM0="
},
{
- "id": "io.quarkus:quarkus-smallrye-context-propagation-spi:jar:3.1.1.Final",
- "artifactId": "quarkus-smallrye-context-propagation-spi",
+ "id": "io.quarkus:quarkus-arc-deployment:jar:3.10.0",
+ "artifactId": "quarkus-arc-deployment",
"groupId": "io.quarkus",
- "version": "3.1.1.Final",
- "sha256": "dQ71WXvpKVRir__EUyzxMcMbVgr_rWlL2SIEr9jzvNI="
+ "version": "3.10.0",
+ "sha256": "TYgldfmg5e7eJZqxyjgJyXn3_xQqHkgPx9Oybm0iDiA="
},
{
- "id": "io.quarkus:quarkus-vertx-http-dev-console-spi:jar:3.1.1.Final",
- "artifactId": "quarkus-vertx-http-dev-console-spi",
+ "id": "io.quarkus:quarkus-smallrye-context-propagation-spi:jar:3.10.0",
+ "artifactId": "quarkus-smallrye-context-propagation-spi",
"groupId": "io.quarkus",
- "version": "3.1.1.Final",
- "sha256": "FNFZajQZKPgxcSlLVbQmUGko6ymgp9KXq0830twg2L8="
+ "version": "3.10.0",
+ "sha256": "NEslwbh-ut4D0N-1LpHc3yOyv_vHXlHeTwRqstrYTIw="
},
{
- "id": "io.quarkus:quarkus-vertx-http-dev-ui-spi:jar:3.1.1.Final",
+ "id": "io.quarkus:quarkus-vertx-http-dev-ui-spi:jar:3.10.0",
"artifactId": "quarkus-vertx-http-dev-ui-spi",
"groupId": "io.quarkus",
- "version": "3.1.1.Final",
- "sha256": "EwUdIMKTJLKD5eaph7fOKp3ytMVchv0yZbgoC-y7P4c="
+ "version": "3.10.0",
+ "sha256": "_n7mm4_S2pN5PQYgizB5eEqZ9oRbbvTbkM-9_KNj9lw="
},
{
- "id": "io.quarkus.arc:arc-processor:jar:3.1.1.Final",
+ "id": "io.quarkus.arc:arc-processor:jar:3.10.0",
"artifactId": "arc-processor",
"groupId": "io.quarkus.arc",
- "version": "3.1.1.Final",
- "sha256": "s566nTU9By9k69aQsv8FGjBKR-wnsIK3oJ36ZPhrYOY="
+ "version": "3.10.0",
+ "sha256": "qK_kVwHVHqfV8L8f_X7HljjZhs3hpAE0cIrAR6hwtKA="
},
{
- "id": "org.mockito:mockito-subclass:jar:5.3.1",
+ "id": "io.quarkus:quarkus-arc-test-supplement:jar:3.10.0",
+ "artifactId": "quarkus-arc-test-supplement",
+ "groupId": "io.quarkus",
+ "version": "3.10.0",
+ "sha256": "-FBB726hoYzy3-NRWIGhd33RJJi9kwJjVoon7DjN_tw="
+ },
+ {
+ "id": "org.mockito:mockito-subclass:jar:5.11.0",
"artifactId": "mockito-subclass",
"groupId": "org.mockito",
- "version": "5.3.1",
- "sha256": "fhxMciD8O89i4H5Aq8rn3DHQF8Rc_qiKxsg2lfLlGEo="
+ "version": "5.11.0",
+ "sha256": "YeZRFr9heM06XxzswNc9aDlefBddB6f5R4ZQ9Vs2-x0="
},
{
- "id": "io.quarkus:quarkus-mutiny:jar:3.1.1.Final",
+ "id": "io.quarkus:quarkus-mutiny:jar:3.10.0",
"artifactId": "quarkus-mutiny",
"groupId": "io.quarkus",
- "version": "3.1.1.Final",
- "sha256": "yKQ5OHPsAmyXvMKIyhw0jzIyUAwJTv8YLT7XSAGX1M4="
+ "version": "3.10.0",
+ "sha256": "ZIF03xmps6pM7rLxOGOL9-CLHRiKlSIH6IQSTIrEidU="
},
{
- "id": "io.quarkus:quarkus-smallrye-context-propagation:jar:3.1.1.Final",
+ "id": "io.quarkus:quarkus-smallrye-context-propagation:jar:3.10.0",
"artifactId": "quarkus-smallrye-context-propagation",
"groupId": "io.quarkus",
- "version": "3.1.1.Final",
- "sha256": "0RHYQQB43PoEILiNQCh1q2tupF_opp8AbFiSlxg3ZYE="
+ "version": "3.10.0",
+ "sha256": "zEDNajJHTRX8Rd_1CI907hv9qqceE7nZIbAsX0EFDxs="
},
{
"id": "io.smallrye:smallrye-context-propagation:jar:2.1.0",
@@ -1576,74 +1513,74 @@
"sha256": "BaFJvAxKV73abzKF5Flz1kxg86MCYdYD0a8hLy_Gd1s="
},
{
- "id": "io.smallrye.reactive:mutiny-smallrye-context-propagation:jar:2.1.0",
+ "id": "io.smallrye.reactive:mutiny-smallrye-context-propagation:jar:2.6.0",
"artifactId": "mutiny-smallrye-context-propagation",
"groupId": "io.smallrye.reactive",
- "version": "2.1.0",
- "sha256": "NO4pU_LvoHyBulXKRDwiP3DiNYaJi4q_4eV11oXF82A="
+ "version": "2.6.0",
+ "sha256": "P3cpjBF_rZPwh-QLo30x0DlYfWRFrYUVXc8iZY2aYWM="
},
{
- "id": "io.quarkus:quarkus-jacoco:jar:3.1.1.Final",
+ "id": "io.quarkus:quarkus-jacoco:jar:3.10.0",
"artifactId": "quarkus-jacoco",
"groupId": "io.quarkus",
- "version": "3.1.1.Final",
- "sha256": "6z6YD5i0PxkZFrbnAe_pVSdDAh5rTpanIVh_R1SExcw="
+ "version": "3.10.0",
+ "sha256": "4ToDm2dqXnfUxRYQCm1kKv_79N7EOTJfGSbZrUVfksg="
},
{
- "id": "org.jacoco:org.jacoco.core:jar:0.8.10",
+ "id": "org.jacoco:org.jacoco.core:jar:0.8.12",
"artifactId": "org.jacoco.core",
"groupId": "org.jacoco",
- "version": "0.8.10",
- "sha256": "54lmfZOnUDk47peK5Pu8mhvM2jtUYpmyTYVQ2BbYDgg="
+ "version": "0.8.12",
+ "sha256": "_KJts3wMX71dxJhSN-uChm35eZ1Qgq-JlHWnP5H1sDU="
},
{
- "id": "org.ow2.asm:asm:jar:9.5",
+ "id": "org.ow2.asm:asm:jar:9.7",
"artifactId": "asm",
"groupId": "org.ow2.asm",
- "version": "9.5",
- "sha256": "ti6EtZgHKXUbBFjFNM8TZvcnVCu40VhiEzVoKkYPA1M="
+ "version": "9.7",
+ "sha256": "rfRtXjSUC98Ujs3Sap7o7qlElqcgNP9xQQZrPupcTp0="
},
{
- "id": "org.ow2.asm:asm-tree:jar:9.5",
+ "id": "org.ow2.asm:asm-tree:jar:9.7",
"artifactId": "asm-tree",
"groupId": "org.ow2.asm",
- "version": "9.5",
- "sha256": "PDOmSBkQea6urrfBmkmxU5UvnkD-hvusUgVVTd2azZQ="
+ "version": "9.7",
+ "sha256": "YvSzvENgRcGstcO6LY7FVuwzaQk9f10Gx0frBLVtUrE="
},
{
- "id": "org.jacoco:org.jacoco.report:jar:0.8.10",
+ "id": "org.jacoco:org.jacoco.report:jar:0.8.12",
"artifactId": "org.jacoco.report",
"groupId": "org.jacoco",
- "version": "0.8.10",
- "sha256": "PjXBT3hTx8iNvgTPCG7gU6Vzn0GemACZCbvt7N3d1Qw="
+ "version": "0.8.12",
+ "sha256": "-cea1mpmoDN8V4Sa0Sh6KrI7myMtNTFEQ-XsSebj0g8="
},
{
- "id": "org.jacoco:org.jacoco.agent:jar:0.8.10",
+ "id": "org.jacoco:org.jacoco.agent:jar:0.8.12",
"artifactId": "org.jacoco.agent",
"groupId": "org.jacoco",
- "version": "0.8.10",
- "sha256": "MtYiEcCjI_UIIqdQpkfBIrKxtVn2NTPqLjJMAyQ4E3A="
+ "version": "0.8.12",
+ "sha256": "qylQe3UNMlu69-oJSGD_8m0nFwA42O5fAMMHRInxRjc="
},
{
- "id": "org.jacoco:org.jacoco.agent:jar:runtime:0.8.10",
+ "id": "org.jacoco:org.jacoco.agent:jar:runtime:0.8.12",
"artifactId": "org.jacoco.agent",
"groupId": "org.jacoco",
- "version": "0.8.10",
- "sha256": "QNJZl95MYldpv10Sg-uFW4fJyu9MofoDuO8LdSuktUo="
+ "version": "0.8.12",
+ "sha256": "EV6ObmWTyjqYkt_vaV301IfHBuWeceZNwKuVcW7gJiI="
},
{
- "id": "org.ow2.asm:asm-commons:jar:9.5",
+ "id": "org.ow2.asm:asm-commons:jar:9.7",
"artifactId": "asm-commons",
"groupId": "org.ow2.asm",
- "version": "9.5",
- "sha256": "cu7p-6-53o2UY_IN1YSkjO635RUq1MmHv74X3UgRya4="
+ "version": "9.7",
+ "sha256": "OJvCR5WOBJ_JoECNOYySxtNwwYA1EgOV1Muh2dkwS3o="
},
{
- "id": "org.testcontainers:testcontainers:jar:1.18.1",
+ "id": "org.testcontainers:testcontainers:jar:1.19.7",
"artifactId": "testcontainers",
"groupId": "org.testcontainers",
- "version": "1.18.1",
- "sha256": "mTH2juAaZzLzZvgZafJlB6ei5og9iBz6Jsecnr-ZoRk="
+ "version": "1.19.7",
+ "sha256": "xjfgJnjOvRKjAZqw_QWu9actBCkfC3OPGASZciMSgGw="
},
{
"id": "junit:junit:jar:4.13.2",
@@ -1660,11 +1597,11 @@
"sha256": "LyqS1BCyaBOdfWO3XtJeIZlc_kEAwZvyNXfP28gHe9o="
},
{
- "id": "org.apache.commons:commons-compress:jar:1.23.0",
+ "id": "org.apache.commons:commons-compress:jar:1.26.1",
"artifactId": "commons-compress",
"groupId": "org.apache.commons",
- "version": "1.23.0",
- "sha256": "wmfxcWDp72YrTXi38p3KfIKxXFz_LLaphl70qz3Vt4c="
+ "version": "1.26.1",
+ "sha256": "J7tdQPN8O7cgW0oFQCR98FdxXp9su9l9Ymq4tQMYuwQ="
},
{
"id": "org.rnorth.duct-tape:duct-tape:jar:1.0.8",
@@ -1674,39 +1611,39 @@
"sha256": "Mc7xLd7JedH4bXz3CMQaF9pSPQXGhf1mQunQsq3bckA="
},
{
- "id": "org.jetbrains:annotations:jar:24.0.1",
+ "id": "org.jetbrains:annotations:jar:24.1.0",
"artifactId": "annotations",
"groupId": "org.jetbrains",
- "version": "24.0.1",
- "sha256": "YWZtvOfkLmyFtDwE_PuCk6Idy1WzyA6GknDOQsAaazU="
+ "version": "24.1.0",
+ "sha256": "J6dw3HzlBQCRi7jDwGYMmCkGMOx5a1489rkPQDswM8Y="
},
{
- "id": "com.github.docker-java:docker-java-api:jar:3.3.0",
+ "id": "com.github.docker-java:docker-java-api:jar:3.3.5",
"artifactId": "docker-java-api",
"groupId": "com.github.docker-java",
- "version": "3.3.0",
- "sha256": "JZWi-XaCZOGYeCmdx3OQJH5QCd_IykiLiU6kaI0dzE4="
+ "version": "3.3.5",
+ "sha256": "pb0vZ0CtOsYERBP7biPXiWlVpn_vD-2jUI3V3g9A1sU="
},
{
- "id": "com.fasterxml.jackson.core:jackson-annotations:jar:2.15.2",
+ "id": "com.fasterxml.jackson.core:jackson-annotations:jar:2.17.0",
"artifactId": "jackson-annotations",
"groupId": "com.fasterxml.jackson.core",
- "version": "2.15.2",
- "sha256": "BOIflNz-5LB4-lpfUwR7eFqrpp0Z3jkvYW56f-XTiC8="
+ "version": "2.17.0",
+ "sha256": "hWJWmgAdRuhOojgCJX4zyPaLJOtHweDv0TOgNyxRKVk="
},
{
- "id": "com.github.docker-java:docker-java-transport-zerodep:jar:3.3.0",
+ "id": "com.github.docker-java:docker-java-transport-zerodep:jar:3.3.5",
"artifactId": "docker-java-transport-zerodep",
"groupId": "com.github.docker-java",
- "version": "3.3.0",
- "sha256": "_6-vkFntNZKAZVayrUjD_VuWjDs50mgBIyYKprc7wy8="
+ "version": "3.3.5",
+ "sha256": "DGXDLC80fTB8S6-_oHGmI217SW9CiSYzwZHWcuHvGkc="
},
{
- "id": "com.github.docker-java:docker-java-transport:jar:3.3.0",
+ "id": "com.github.docker-java:docker-java-transport:jar:3.3.5",
"artifactId": "docker-java-transport",
"groupId": "com.github.docker-java",
- "version": "3.3.0",
- "sha256": "JR7QpLExzfeLlRMm1GkEpPgxjjNR-kd0SeNMlw9jxKg="
+ "version": "3.3.5",
+ "sha256": "O6-99pHHkdePsuhBbCucuO6l4f0YQjImhTuPXJeaHws="
},
{
"id": "net.java.dev.jna:jna:jar:5.8.0",
@@ -1716,46 +1653,18 @@
"sha256": "kwJzzBxJLyVmHqYkE6baP9f24BvxxNzAgX_IaWp7B6w="
},
{
- "id": "io.quarkus:quarkus-rest-client-reactive-jackson:jar:3.1.1.Final",
- "artifactId": "quarkus-rest-client-reactive-jackson",
- "groupId": "io.quarkus",
- "version": "3.1.1.Final",
- "sha256": "Sa86Tph-JHNS7brCeJZkcib2WkroSitos12b_NjTZOg="
- },
- {
- "id": "io.quarkus.resteasy.reactive:resteasy-reactive-jackson:jar:3.1.1.Final",
- "artifactId": "resteasy-reactive-jackson",
- "groupId": "io.quarkus.resteasy.reactive",
- "version": "3.1.1.Final",
- "sha256": "9RbnmpcQTl3rmJ2NcXu9RBps_gTZAWh_pl66_xu-kvk="
- },
- {
- "id": "com.fasterxml.jackson.core:jackson-databind:jar:2.15.2",
- "artifactId": "jackson-databind",
- "groupId": "com.fasterxml.jackson.core",
- "version": "2.15.2",
- "sha256": "DrL9rW5Aq4gyp4ybIvWBlt2XBZTo09Wibq2HhHxPOpY="
- },
- {
- "id": "com.fasterxml.jackson.core:jackson-core:jar:2.15.2",
- "artifactId": "jackson-core",
- "groupId": "com.fasterxml.jackson.core",
- "version": "2.15.2",
- "sha256": "MDyZ6CsfqpGguuXY--tW9-Kt-bUmqQDdcjvxQNYr1LQ="
- },
- {
- "id": "io.quarkus:quarkus-smallrye-jwt:jar:3.1.1.Final",
+ "id": "io.quarkus:quarkus-smallrye-jwt:jar:3.10.0",
"artifactId": "quarkus-smallrye-jwt",
"groupId": "io.quarkus",
- "version": "3.1.1.Final",
- "sha256": "p6KJZSnQzVGHJlA6e_ImaFMrkizEMoHO5waHB2NIpNI="
+ "version": "3.10.0",
+ "sha256": "G9zyvePzXYDsP6_2kgXx7Rcam--ukvqRIfAmqccSSXk="
},
{
- "id": "io.smallrye:smallrye-jwt:jar:4.2.1",
+ "id": "io.smallrye:smallrye-jwt:jar:4.5.1",
"artifactId": "smallrye-jwt",
"groupId": "io.smallrye",
- "version": "4.2.1",
- "sha256": "x0dyv64q2HK7l48ZSqo9KShcORJ2GuOriH-bbtK3vVs="
+ "version": "4.5.1",
+ "sha256": "IY_6CFvJHrKjNxcQV62MdDdUXebs5yA8BUEpUmO1_NA="
},
{
"id": "org.eclipse.microprofile.config:microprofile-config-api:jar:3.0.3",
@@ -1765,18 +1674,18 @@
"sha256": "bJe41cNkmp0D5z2DAMqc6RKjny4V5qNg9STn2ZZiojw="
},
{
- "id": "org.bitbucket.b_c:jose4j:jar:0.9.3",
+ "id": "org.bitbucket.b_c:jose4j:jar:0.9.6",
"artifactId": "jose4j",
"groupId": "org.bitbucket.b_c",
- "version": "0.9.3",
- "sha256": "YmWtPiiosCrDqfmLnvzteWcd-OClVumFGtZf--pRoSo="
+ "version": "0.9.6",
+ "sha256": "cxSvUM3pyZ6Or0Pu5heiPtzGu0MDYiEGQ1UJSZnYN-8="
},
{
- "id": "io.smallrye:smallrye-jwt-common:jar:4.2.1",
+ "id": "io.smallrye:smallrye-jwt-common:jar:4.5.1",
"artifactId": "smallrye-jwt-common",
"groupId": "io.smallrye",
- "version": "4.2.1",
- "sha256": "gd9_hXQQpyuNHplkGEMfcmMA2rGhr8Aki26_iV2RA-E="
+ "version": "4.5.1",
+ "sha256": "g6kSWb89Voi4vIFuKqPbrbbysvAjKZzHVRQL9rsYKik="
},
{
"id": "jakarta.annotation:jakarta.annotation-api:jar:2.1.1",
@@ -1786,25 +1695,11 @@
"sha256": "X2X9r0JO7itV4diCupuzdr6T-wmze4CL5uIuiFHJCf4="
},
{
- "id": "io.quarkus:quarkus-reactive-routes:jar:3.1.1.Final",
- "artifactId": "quarkus-reactive-routes",
- "groupId": "io.quarkus",
- "version": "3.1.1.Final",
- "sha256": "KAyRvVfs781A8tkcIelBRrwpzeAeAaeLKno5IY3G4is="
- },
- {
- "id": "io.smallrye.common:smallrye-common-annotation:jar:2.1.0",
- "artifactId": "smallrye-common-annotation",
- "groupId": "io.smallrye.common",
- "version": "2.1.0",
- "sha256": "ucbZrBiH9kUlnY0Nb_R1W8F9lh4uAug-rW9pmuPW-Mc="
- },
- {
- "id": "io.quarkus:quarkus-security:jar:3.1.1.Final",
+ "id": "io.quarkus:quarkus-security:jar:3.10.0",
"artifactId": "quarkus-security",
"groupId": "io.quarkus",
- "version": "3.1.1.Final",
- "sha256": "cENg8k0dJyiTPxD_ckjpCQdVS52ZMA6EvAUHkfO2Ows="
+ "version": "3.10.0",
+ "sha256": "BwXsUIsOf0S6ecv6ro-Tun1nF4MUIarzy_Ix_Olvr_I="
},
{
"id": "jakarta.interceptor:jakarta.interceptor-api:jar:2.1.0",
@@ -1814,32 +1709,32 @@
"sha256": "73h9P3E_xv9PAs1LDb7Qj5PYrzQAyQy7Q_tLXAWDcQs="
},
{
- "id": "io.quarkus:quarkus-smallrye-jwt-build:jar:3.1.1.Final",
+ "id": "io.quarkus:quarkus-smallrye-jwt-build:jar:3.10.0",
"artifactId": "quarkus-smallrye-jwt-build",
"groupId": "io.quarkus",
- "version": "3.1.1.Final",
- "sha256": "AFWPnmpw9Krv12CAoBgayDn9rlBHc61_6GDQ-BVP_Hg="
+ "version": "3.10.0",
+ "sha256": "6ItPtobyO0toVDE_UCGa8wE4THxzwez0h5bXL1A8Gqk="
},
{
- "id": "io.smallrye:smallrye-jwt-build:jar:4.2.1",
+ "id": "io.smallrye:smallrye-jwt-build:jar:4.5.1",
"artifactId": "smallrye-jwt-build",
"groupId": "io.smallrye",
- "version": "4.2.1",
- "sha256": "blX0tcPQj6Wa51S8b7WMQu2uCtvf90wQXiJoGHN37xo="
+ "version": "4.5.1",
+ "sha256": "9Qot6g-j5lCBw12p3VPWTeCPWX-E5i9qBngSmXHJrnI="
},
{
- "id": "io.quarkus:quarkus-test-security-jwt:jar:3.1.1.Final",
+ "id": "io.quarkus:quarkus-test-security-jwt:jar:3.10.0",
"artifactId": "quarkus-test-security-jwt",
"groupId": "io.quarkus",
- "version": "3.1.1.Final",
- "sha256": "uVHFdX0UpwCMEimr_wlHQwT7D-ujSx-GO4CbedrlttA="
+ "version": "3.10.0",
+ "sha256": "6vSISY_IbsshKfiBOmO-J_tcNza09aRDIoeZLP10jVM="
},
{
- "id": "io.quarkus:quarkus-test-security:jar:3.1.1.Final",
+ "id": "io.quarkus:quarkus-test-security:jar:3.10.0",
"artifactId": "quarkus-test-security",
"groupId": "io.quarkus",
- "version": "3.1.1.Final",
- "sha256": "WxMwWa9HZJQRY7STAvHmiELcEXABL4UVC-0XbrMOuXM="
+ "version": "3.10.0",
+ "sha256": "8Og5zHN2OLRBBy8hiK4QxesFB1b8-4e-2APFqAAiqpA="
},
{
"id": "org.eclipse.microprofile.jwt:microprofile-jwt-auth-api:jar:2.1",
@@ -1849,18 +1744,18 @@
"sha256": "6BojfsuB5PNg7V55KNQr8-7dHXP-OjQ9Ze0VePUWm60="
},
{
- "id": "io.quarkus:quarkus-cache:jar:3.1.1.Final",
+ "id": "io.quarkus:quarkus-cache:jar:3.10.0",
"artifactId": "quarkus-cache",
"groupId": "io.quarkus",
- "version": "3.1.1.Final",
- "sha256": "o9C-ZFc7lW6nid2tnJxzhRRkXtk5dZS7UTOWqaKt7CA="
+ "version": "3.10.0",
+ "sha256": "VgMWUxbR-wDp9Rpz3YEtXm5v-gap-cmpgAoEmgMWSp4="
},
{
- "id": "io.quarkus:quarkus-caffeine:jar:3.1.1.Final",
+ "id": "io.quarkus:quarkus-caffeine:jar:3.10.0",
"artifactId": "quarkus-caffeine",
"groupId": "io.quarkus",
- "version": "3.1.1.Final",
- "sha256": "_MU7QlbjSm9YsTra_J15z6dNjE5GTpW_uy4pve7G2bs="
+ "version": "3.10.0",
+ "sha256": "XBrM7qcFJ0h8VOJIYAM8_MZu-otSpME_G6Cx5kENzr4="
},
{
"id": "com.github.ben-manes.caffeine:caffeine:jar:3.1.5",
@@ -1870,25 +1765,95 @@
"sha256": "AsNP0rp4sZVu9uXemskVrum_pJhYmWb6hyVfuttlNJk="
},
{
- "id": "com.google.errorprone:error_prone_annotations:jar:2.19.1",
+ "id": "com.google.errorprone:error_prone_annotations:jar:2.26.1",
"artifactId": "error_prone_annotations",
"groupId": "com.google.errorprone",
- "version": "2.19.1",
- "sha256": "rdOZAphQH9y27Fj_8mYIwdKY-13-L4DXSGe_D1xTlmg="
+ "version": "2.26.1",
+ "sha256": "3iXy2aIVZSm9dl9R2O_fwN-nMB4E77nMdbfxDPXQ4Ps="
+ },
+ {
+ "id": "io.quarkus:quarkus-vertx:jar:3.10.0",
+ "artifactId": "quarkus-vertx",
+ "groupId": "io.quarkus",
+ "version": "3.10.0",
+ "sha256": "dnLFKK6WrN5WN-bqUq-qO9YxXQVYmiNQe14W3G-wyC4="
+ },
+ {
+ "id": "io.quarkus:quarkus-netty:jar:3.10.0",
+ "artifactId": "quarkus-netty",
+ "groupId": "io.quarkus",
+ "version": "3.10.0",
+ "sha256": "X1CPpVGHWnx1RbbMc4scE2ASHYYZBZYdASR638Nmtbs="
+ },
+ {
+ "id": "io.netty:netty-codec:jar:4.1.108.Final",
+ "artifactId": "netty-codec",
+ "groupId": "io.netty",
+ "version": "4.1.108.Final",
+ "sha256": "MsIg3qk3Vvuij5MCSBvGV3OMxA0HRA2qmForoh3yJvE="
+ },
+ {
+ "id": "com.aayushatharva.brotli4j:brotli4j:jar:1.16.0",
+ "artifactId": "brotli4j",
+ "groupId": "com.aayushatharva.brotli4j",
+ "version": "1.16.0",
+ "sha256": "KFoLlhUGSdtv2digoi6pj8K4pVj8kkshg2pZVQl1SF4="
+ },
+ {
+ "id": "com.aayushatharva.brotli4j:service:jar:1.16.0",
+ "artifactId": "service",
+ "groupId": "com.aayushatharva.brotli4j",
+ "version": "1.16.0",
+ "sha256": "jiM4I5NqYNALnUQ05zO9YK6qrBwUmuXZyeeknK7K-i0="
+ },
+ {
+ "id": "com.aayushatharva.brotli4j:native-osx-aarch64:jar:1.16.0",
+ "artifactId": "native-osx-aarch64",
+ "groupId": "com.aayushatharva.brotli4j",
+ "version": "1.16.0",
+ "sha256": "ZwSoHwKsqDvf9N6IJPNp9kvWMSs8efr3KdFN8F4LJR4="
+ },
+ {
+ "id": "io.netty:netty-codec-haproxy:jar:4.1.108.Final",
+ "artifactId": "netty-codec-haproxy",
+ "groupId": "io.netty",
+ "version": "4.1.108.Final",
+ "sha256": "BeTBYJrXZRHTErWaVsIYK2PylPyRMiYcFXMJNXFA0Yk="
+ },
+ {
+ "id": "io.smallrye.common:smallrye-common-annotation:jar:2.3.0",
+ "artifactId": "smallrye-common-annotation",
+ "groupId": "io.smallrye.common",
+ "version": "2.3.0",
+ "sha256": "qnaIMF5eGkPyALKIN7d6yLilTbC_s93TIsL0wV89_hk="
},
{
- "id": "io.quarkus:quarkus-cache-runtime-spi:jar:3.1.1.Final",
+ "id": "io.quarkus:quarkus-vertx-latebound-mdc-provider:jar:3.10.0",
+ "artifactId": "quarkus-vertx-latebound-mdc-provider",
+ "groupId": "io.quarkus",
+ "version": "3.10.0",
+ "sha256": "Xmgs9AoQo0TZln-oZE0T6C4-hWKNmnMoEOxUFSEdFVE="
+ },
+ {
+ "id": "io.smallrye:smallrye-fault-tolerance-vertx:jar:6.3.0",
+ "artifactId": "smallrye-fault-tolerance-vertx",
+ "groupId": "io.smallrye",
+ "version": "6.3.0",
+ "sha256": "lpHULcnS0Q93_vv5tRuSHCCbkcY4a1xYGZI4uVPsXpE="
+ },
+ {
+ "id": "io.quarkus:quarkus-cache-runtime-spi:jar:3.10.0",
"artifactId": "quarkus-cache-runtime-spi",
"groupId": "io.quarkus",
- "version": "3.1.1.Final",
- "sha256": "83Za5jTx1zl9ahyhiwS44gQIBCYSjbxHMSJSzyt6XPk="
+ "version": "3.10.0",
+ "sha256": "J1xM3bN4GbqQyU_6lr4imKo54YwNa1uREf3VlnGtuh4="
},
{
- "id": "com.nimbusds:nimbus-jose-jwt:jar:9.31",
+ "id": "com.nimbusds:nimbus-jose-jwt:jar:9.37.3",
"artifactId": "nimbus-jose-jwt",
"groupId": "com.nimbusds",
- "version": "9.31",
- "sha256": "4NHZvq_efr1GtpJGv_1z3LM0CepKt7kaxWIrHmdm804="
+ "version": "9.37.3",
+ "sha256": "Eq5KOiYAldeuuirep645bouVcNuLe0CeCagkwhnMBEQ="
},
{
"id": "com.github.stephenc.jcip:jcip-annotations:jar:1.0-1",
@@ -1896,6 +1861,559 @@
"groupId": "com.github.stephenc.jcip",
"version": "1.0-1",
"sha256": "T8z_g4Kq_FiZYsTtsmL2qlleNPHhHmEFfRxqluj8cyM="
+ },
+ {
+ "id": "io.quarkus:quarkus-logging-json:jar:3.10.0",
+ "artifactId": "quarkus-logging-json",
+ "groupId": "io.quarkus",
+ "version": "3.10.0",
+ "sha256": "G4d6sV_eg80W0AuSw4XU7UC_GRvI3WumGpU4Eud11L4="
+ },
+ {
+ "id": "org.jboss.logmanager:jboss-logmanager:jar:3.0.4.Final",
+ "artifactId": "jboss-logmanager",
+ "groupId": "org.jboss.logmanager",
+ "version": "3.0.4.Final",
+ "sha256": "Vecnt8QjthKlqGnEj0uPiyss2jkGLhi_NzH91SkmTSQ="
+ },
+ {
+ "id": "io.smallrye.common:smallrye-common-constraint:jar:2.3.0",
+ "artifactId": "smallrye-common-constraint",
+ "groupId": "io.smallrye.common",
+ "version": "2.3.0",
+ "sha256": "TD8UdShLPUTesYyo9Uk8jYUPEHKKfYViMSwTKk_ilU0="
+ },
+ {
+ "id": "io.smallrye.common:smallrye-common-cpu:jar:2.3.0",
+ "artifactId": "smallrye-common-cpu",
+ "groupId": "io.smallrye.common",
+ "version": "2.3.0",
+ "sha256": "NBbRJzDwRP1uGXUwbH8q9ro_K88gaEvlJt_yBHqgFSw="
+ },
+ {
+ "id": "io.smallrye.common:smallrye-common-expression:jar:2.3.0",
+ "artifactId": "smallrye-common-expression",
+ "groupId": "io.smallrye.common",
+ "version": "2.3.0",
+ "sha256": "64jYhTmUGBUqKdl2TAeG20zw9gCvZulmYGMmttHKbD8="
+ },
+ {
+ "id": "io.smallrye.common:smallrye-common-function:jar:2.3.0",
+ "artifactId": "smallrye-common-function",
+ "groupId": "io.smallrye.common",
+ "version": "2.3.0",
+ "sha256": "Jl2Qkt4BopYt7kUaFH8lvOoUtbISW7gTCvkauaNwco8="
+ },
+ {
+ "id": "io.smallrye.common:smallrye-common-net:jar:2.3.0",
+ "artifactId": "smallrye-common-net",
+ "groupId": "io.smallrye.common",
+ "version": "2.3.0",
+ "sha256": "Wmtt3SdajmG68j-_RGlZnGqDerEFEJIpesas04tV71Y="
+ },
+ {
+ "id": "io.smallrye.common:smallrye-common-ref:jar:2.3.0",
+ "artifactId": "smallrye-common-ref",
+ "groupId": "io.smallrye.common",
+ "version": "2.3.0",
+ "sha256": "sXrSsH-dFA8iW9JXN188FiTQaOyua-iPf4z0VtG_H78="
+ },
+ {
+ "id": "io.quarkus:quarkus-opentelemetry:jar:3.10.0",
+ "artifactId": "quarkus-opentelemetry",
+ "groupId": "io.quarkus",
+ "version": "3.10.0",
+ "sha256": "rv_TKYszU50G-cvSVjSXizYvmJP1vCjvc-lGN6Ol9-c="
+ },
+ {
+ "id": "io.quarkus:quarkus-security-runtime-spi:jar:3.10.0",
+ "artifactId": "quarkus-security-runtime-spi",
+ "groupId": "io.quarkus",
+ "version": "3.10.0",
+ "sha256": "DAuxbcUolB6HnX5r4aQlvVhg1AfHKNYC8Vr8qtvwivY="
+ },
+ {
+ "id": "io.quarkus:quarkus-grpc-common:jar:3.10.0",
+ "artifactId": "quarkus-grpc-common",
+ "groupId": "io.quarkus",
+ "version": "3.10.0",
+ "sha256": "X6dXyJm7O3RwF0MKJd9LkZO_SXfQYoXf4yfsMKGzMZc="
+ },
+ {
+ "id": "com.google.code.findbugs:jsr305:jar:3.0.2",
+ "artifactId": "jsr305",
+ "groupId": "com.google.code.findbugs",
+ "version": "3.0.2",
+ "sha256": "dmrSoHg_JoeWLIrXTO7MOKKLn3Ki0IXuQ4t4E-ko0Mc="
+ },
+ {
+ "id": "io.vertx:vertx-grpc:jar:4.5.7",
+ "artifactId": "vertx-grpc",
+ "groupId": "io.vertx",
+ "version": "4.5.7",
+ "sha256": "KWPF47HxXsVwbLgzPWgTdldt2otG0ZPwUb61h-4iYq8="
+ },
+ {
+ "id": "io.grpc:grpc-netty:jar:1.62.2",
+ "artifactId": "grpc-netty",
+ "groupId": "io.grpc",
+ "version": "1.62.2",
+ "sha256": "YGAhf-Jqn4stiZ0C2VybUlE753QjMybuQ6a4Qz7bA8g="
+ },
+ {
+ "id": "io.grpc:grpc-util:jar:1.62.2",
+ "artifactId": "grpc-util",
+ "groupId": "io.grpc",
+ "version": "1.62.2",
+ "sha256": "PHED5vNzhXHjrtpCD-KmrGjjVFNNi2b0GJe2dVtItzU="
+ },
+ {
+ "id": "io.grpc:grpc-protobuf:jar:1.62.2",
+ "artifactId": "grpc-protobuf",
+ "groupId": "io.grpc",
+ "version": "1.62.2",
+ "sha256": "ZqCxljGL39gX2WXS2Cucgd_O2OsIwPdRD8tyjSmUI3o="
+ },
+ {
+ "id": "com.google.protobuf:protobuf-java:jar:3.25.0",
+ "artifactId": "protobuf-java",
+ "groupId": "com.google.protobuf",
+ "version": "3.25.0",
+ "sha256": "CSRSlk1rBmD6wkK5IS8WUvDbCgJXvcnbVmPOwgRtSas="
+ },
+ {
+ "id": "com.google.api.grpc:proto-google-common-protos:jar:2.36.0",
+ "artifactId": "proto-google-common-protos",
+ "groupId": "com.google.api.grpc",
+ "version": "2.36.0",
+ "sha256": "x0KSWe4nPthM0N_JZunMNwxfZgE2S7mY-eidZspfjfY="
+ },
+ {
+ "id": "io.grpc:grpc-protobuf-lite:jar:1.62.2",
+ "artifactId": "grpc-protobuf-lite",
+ "groupId": "io.grpc",
+ "version": "1.62.2",
+ "sha256": "eZl5iajCtb9N0YGCot8uL2aHA9aLp8MX56B4CdM_kfQ="
+ },
+ {
+ "id": "com.google.guava:guava:jar:33.1.0-jre",
+ "artifactId": "guava",
+ "groupId": "com.google.guava",
+ "version": "33.1.0-jre",
+ "sha256": "NGrsDrjImHNgyKJk5w_xDC-6dgRG6yfoqwfnjnh6df4="
+ },
+ {
+ "id": "com.google.j2objc:j2objc-annotations:jar:2.8",
+ "artifactId": "j2objc-annotations",
+ "groupId": "com.google.j2objc",
+ "version": "2.8",
+ "sha256": "8CqV-hpele2z7YWf0Pt99wnRIaNSkO_4t03OKrf01u0="
+ },
+ {
+ "id": "io.vertx:vertx-grpc-server:jar:4.5.7",
+ "artifactId": "vertx-grpc-server",
+ "groupId": "io.vertx",
+ "version": "4.5.7",
+ "sha256": "WUmdjLPNKB4tpSEmDvPtIyU25jSixeX2FMBWOdVbcuc="
+ },
+ {
+ "id": "io.grpc:grpc-core:jar:1.62.2",
+ "artifactId": "grpc-core",
+ "groupId": "io.grpc",
+ "version": "1.62.2",
+ "sha256": "GEOZAsRzosFRHlF9E7iueWN4hQqO2kN4fGunePqQ_MU="
+ },
+ {
+ "id": "com.google.code.gson:gson:jar:2.10.1",
+ "artifactId": "gson",
+ "groupId": "com.google.code.gson",
+ "version": "2.10.1",
+ "sha256": "QkHBSncnw0_uplB-yAExij1KkPBw5FJWgQefuU7kxZM="
+ },
+ {
+ "id": "io.perfmark:perfmark-api:jar:0.26.0",
+ "artifactId": "perfmark-api",
+ "groupId": "io.perfmark",
+ "version": "0.26.0",
+ "sha256": "t9I-k6NFN84zJwgmmg0UBHiKW14ZSegvVTX85Rs-qVs="
+ },
+ {
+ "id": "io.grpc:grpc-context:jar:1.62.2",
+ "artifactId": "grpc-context",
+ "groupId": "io.grpc",
+ "version": "1.62.2",
+ "sha256": "mVl0ffanUxGeHBo9_wGqdm0kVfXkhgrKowU1nh1TOgU="
+ },
+ {
+ "id": "io.smallrye.common:smallrye-common-vertx-context:jar:2.3.0",
+ "artifactId": "smallrye-common-vertx-context",
+ "groupId": "io.smallrye.common",
+ "version": "2.3.0",
+ "sha256": "NzbEJixXxMRFlPYPNqM80CRcHuv6LF30gfaInaDRDhk="
+ },
+ {
+ "id": "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure:jar:1.32.0",
+ "artifactId": "opentelemetry-sdk-extension-autoconfigure",
+ "groupId": "io.opentelemetry",
+ "version": "1.32.0",
+ "sha256": "JOB1XahyjytbDkcaORFzIiurM5bqZ5v1rulSEQOZlno="
+ },
+ {
+ "id": "io.opentelemetry:opentelemetry-sdk:jar:1.32.0",
+ "artifactId": "opentelemetry-sdk",
+ "groupId": "io.opentelemetry",
+ "version": "1.32.0",
+ "sha256": "fwpgf0z-J3Os7-LhfErab7184uURlnRWh8ijCvY6MeY="
+ },
+ {
+ "id": "io.opentelemetry:opentelemetry-api:jar:1.32.0",
+ "artifactId": "opentelemetry-api",
+ "groupId": "io.opentelemetry",
+ "version": "1.32.0",
+ "sha256": "h-oTZiMM9YzCIjj3yQpehNPcRBMwWWjwfgbFQOj96mo="
+ },
+ {
+ "id": "io.opentelemetry:opentelemetry-context:jar:1.32.0",
+ "artifactId": "opentelemetry-context",
+ "groupId": "io.opentelemetry",
+ "version": "1.32.0",
+ "sha256": "wD1JBHgAM9T1JekB4Y0LnkDnoLiCiwXlgOKtr-FFUUI="
+ },
+ {
+ "id": "io.opentelemetry:opentelemetry-sdk-common:jar:1.32.0",
+ "artifactId": "opentelemetry-sdk-common",
+ "groupId": "io.opentelemetry",
+ "version": "1.32.0",
+ "sha256": "x1dcmZ1RHEtDyilm_7sSPcHHWB2Ci7dIcGLKzvQMILI="
+ },
+ {
+ "id": "io.opentelemetry:opentelemetry-sdk-trace:jar:1.32.0",
+ "artifactId": "opentelemetry-sdk-trace",
+ "groupId": "io.opentelemetry",
+ "version": "1.32.0",
+ "sha256": "Z3QrWQcKvAGLIgR1arPfc_Fzbod3HUOvckASCFDH5s4="
+ },
+ {
+ "id": "io.opentelemetry:opentelemetry-sdk-metrics:jar:1.32.0",
+ "artifactId": "opentelemetry-sdk-metrics",
+ "groupId": "io.opentelemetry",
+ "version": "1.32.0",
+ "sha256": "kVwXlNFY7r3g_OeB5EZQhI21mDoQ0YEJEzvPsXeNTb8="
+ },
+ {
+ "id": "io.opentelemetry:opentelemetry-sdk-logs:jar:1.32.0",
+ "artifactId": "opentelemetry-sdk-logs",
+ "groupId": "io.opentelemetry",
+ "version": "1.32.0",
+ "sha256": "edDtp7BWIO2tK09lezViouNotlxsxLd3x7A05EUwr6s="
+ },
+ {
+ "id": "io.opentelemetry:opentelemetry-extension-annotations:jar:1.18.0",
+ "artifactId": "opentelemetry-extension-annotations",
+ "groupId": "io.opentelemetry",
+ "version": "1.18.0",
+ "sha256": "z6VlFyJdARIvpCQiN4A3b8Zy50YEzjGFQdW5R1Ehybs="
+ },
+ {
+ "id": "io.opentelemetry:opentelemetry-sdk-extension-autoconfigure-spi:jar:1.32.0",
+ "artifactId": "opentelemetry-sdk-extension-autoconfigure-spi",
+ "groupId": "io.opentelemetry",
+ "version": "1.32.0",
+ "sha256": "tNilFmTu1V4ff18F_knFvAUSUrCEOabEoxQaWf15ryE="
+ },
+ {
+ "id": "io.opentelemetry.semconv:opentelemetry-semconv:jar:1.21.0-alpha",
+ "artifactId": "opentelemetry-semconv",
+ "groupId": "io.opentelemetry.semconv",
+ "version": "1.21.0-alpha",
+ "sha256": "8Qp-pGWZjA7-qHMHlE_SOy90FerOUGceFAlo9IX4vfw="
+ },
+ {
+ "id": "io.opentelemetry:opentelemetry-api-events:jar:1.32.0-alpha",
+ "artifactId": "opentelemetry-api-events",
+ "groupId": "io.opentelemetry",
+ "version": "1.32.0-alpha",
+ "sha256": "LzOojAvL7d5yH7V-4eX_Z18laEGdhquGNFy5Xw5sP3U="
+ },
+ {
+ "id": "io.opentelemetry.instrumentation:opentelemetry-instrumentation-api:jar:1.32.0",
+ "artifactId": "opentelemetry-instrumentation-api",
+ "groupId": "io.opentelemetry.instrumentation",
+ "version": "1.32.0",
+ "sha256": "qCFgN-xnbQ1laIIumc24WhklnI_bw6IE9KzIGqYylI8="
+ },
+ {
+ "id": "io.opentelemetry:opentelemetry-extension-incubator:jar:1.32.0-alpha",
+ "artifactId": "opentelemetry-extension-incubator",
+ "groupId": "io.opentelemetry",
+ "version": "1.32.0-alpha",
+ "sha256": "i6OFQftSOK_Dbcdr5DKRC7vh9Mss3DzEiX6UO3c2poY="
+ },
+ {
+ "id": "io.opentelemetry.instrumentation:opentelemetry-instrumentation-annotations:jar:1.32.0",
+ "artifactId": "opentelemetry-instrumentation-annotations",
+ "groupId": "io.opentelemetry.instrumentation",
+ "version": "1.32.0",
+ "sha256": "B2ZsGMS503LkJaXCZpDKtMr796YvDQ3zonrwu42pRtk="
+ },
+ {
+ "id": "io.opentelemetry.instrumentation:opentelemetry-instrumentation-annotations-support:jar:1.32.0-alpha",
+ "artifactId": "opentelemetry-instrumentation-annotations-support",
+ "groupId": "io.opentelemetry.instrumentation",
+ "version": "1.32.0-alpha",
+ "sha256": "0iJ9rSk3WrkvaULnHkxpnNjBaqi3NjODSbUEqQ6OmJE="
+ },
+ {
+ "id": "io.opentelemetry.instrumentation:opentelemetry-instrumentation-api-semconv:jar:1.32.0-alpha",
+ "artifactId": "opentelemetry-instrumentation-api-semconv",
+ "groupId": "io.opentelemetry.instrumentation",
+ "version": "1.32.0-alpha",
+ "sha256": "aabyyaakorFa1pST2nZn8xx6uFYGgn61s6vG0YCdb4g="
+ },
+ {
+ "id": "io.opentelemetry:opentelemetry-exporter-otlp-common:jar:1.32.0",
+ "artifactId": "opentelemetry-exporter-otlp-common",
+ "groupId": "io.opentelemetry",
+ "version": "1.32.0",
+ "sha256": "1OCwr2K98_5LqGvyRTINS6p4mKOs3gka09telJrz6Gg="
+ },
+ {
+ "id": "io.opentelemetry:opentelemetry-exporter-common:jar:1.32.0",
+ "artifactId": "opentelemetry-exporter-common",
+ "groupId": "io.opentelemetry",
+ "version": "1.32.0",
+ "sha256": "ZFGFnt_pIZXA89DJOjtmtx_169190AMLzVJuKDaiRdI="
+ },
+ {
+ "id": "io.opentelemetry:opentelemetry-exporter-otlp:jar:1.32.0",
+ "artifactId": "opentelemetry-exporter-otlp",
+ "groupId": "io.opentelemetry",
+ "version": "1.32.0",
+ "sha256": "Eat9wmhD7pvkW-AJC3-pn2EHUsM2hx-oucnrOqcYnss="
+ },
+ {
+ "id": "io.opentelemetry:opentelemetry-exporter-sender-okhttp:jar:1.32.0",
+ "artifactId": "opentelemetry-exporter-sender-okhttp",
+ "groupId": "io.opentelemetry",
+ "version": "1.32.0",
+ "sha256": "0uqxFqhWIq163g6z8FZb5RlOh32LYDfLJ_0ITmTfv0s="
+ },
+ {
+ "id": "io.vertx:vertx-grpc-client:jar:4.5.7",
+ "artifactId": "vertx-grpc-client",
+ "groupId": "io.vertx",
+ "version": "4.5.7",
+ "sha256": "K8hnsQgUNUvR8lj2C_nXOSdp55ZMjMPku7VkPXChDVc="
+ },
+ {
+ "id": "io.vertx:vertx-grpc-common:jar:4.5.7",
+ "artifactId": "vertx-grpc-common",
+ "groupId": "io.vertx",
+ "version": "4.5.7",
+ "sha256": "h-aIm9YA39bjI7g5TGwuxQnWsctb9APGZ84iSnyQ6lQ="
+ },
+ {
+ "id": "io.grpc:grpc-stub:jar:1.62.2",
+ "artifactId": "grpc-stub",
+ "groupId": "io.grpc",
+ "version": "1.62.2",
+ "sha256": "-0ymeaQhQUNAbGWsQWeyteLuLKsfwQFWa7HEaV0QXjY="
+ },
+ {
+ "id": "io.grpc:grpc-api:jar:1.62.2",
+ "artifactId": "grpc-api",
+ "groupId": "io.grpc",
+ "version": "1.62.2",
+ "sha256": "LolpRM9RPg5c_TK81yyJYBonxspWkW-Esg86E7rPGx8="
+ },
+ {
+ "id": "io.quarkiverse.opentelemetry.exporter:quarkus-opentelemetry-exporter-azure:jar:3.8.3.0",
+ "artifactId": "quarkus-opentelemetry-exporter-azure",
+ "groupId": "io.quarkiverse.opentelemetry.exporter",
+ "version": "3.8.3.0",
+ "sha256": "zXg8PGdYXA0HWGdhdtfw-dOGV90P3wsjJnEeJGyxJ-s="
+ },
+ {
+ "id": "io.quarkiverse.opentelemetry.exporter:quarkus-opentelemetry-exporter-common:jar:3.8.3.0",
+ "artifactId": "quarkus-opentelemetry-exporter-common",
+ "groupId": "io.quarkiverse.opentelemetry.exporter",
+ "version": "3.8.3.0",
+ "sha256": "kYITtdlW51ntA3XFfHMGovcWnlJ0BJ3r1YcPlSg1A2M="
+ },
+ {
+ "id": "com.azure:azure-monitor-opentelemetry-exporter:jar:1.0.0-beta.21",
+ "artifactId": "azure-monitor-opentelemetry-exporter",
+ "groupId": "com.azure",
+ "version": "1.0.0-beta.21",
+ "sha256": "YXFlTVZenQr0qlntRR4d24_49f-wmYvcVNgPMPQucPE="
+ },
+ {
+ "id": "com.azure:azure-core:jar:1.47.0",
+ "artifactId": "azure-core",
+ "groupId": "com.azure",
+ "version": "1.47.0",
+ "sha256": "uDhbi8468m0oK33i3FMN24OCnKVSERckSOHR3qZLrHA="
+ },
+ {
+ "id": "com.azure:azure-json:jar:1.1.0",
+ "artifactId": "azure-json",
+ "groupId": "com.azure",
+ "version": "1.1.0",
+ "sha256": "EUr5sUWcnJMZCyqC9CfA6T-7soiW_FfyWFqbghJ1ylY="
+ },
+ {
+ "id": "io.projectreactor:reactor-core:jar:3.4.34",
+ "artifactId": "reactor-core",
+ "groupId": "io.projectreactor",
+ "version": "3.4.34",
+ "sha256": "syTAkh-XvXOprr_79ZrEXutI2eq5vOZ8I60LyDtRPYc="
+ },
+ {
+ "id": "io.quarkiverse.azureservices:quarkus-azure-http-client-vertx:jar:1.0.2",
+ "artifactId": "quarkus-azure-http-client-vertx",
+ "groupId": "io.quarkiverse.azureservices",
+ "version": "1.0.2",
+ "sha256": "vbaLxtpDE347sUixyXAWlc4Twl1BhEgqEV4eWW9fke4="
+ },
+ {
+ "id": "com.azure:azure-core-http-vertx:jar:1.0.0-beta.14",
+ "artifactId": "azure-core-http-vertx",
+ "groupId": "com.azure",
+ "version": "1.0.0-beta.14",
+ "sha256": "iAxsAnJsTEy7DjKtWtq2In5wEUerP5a9FfOkHysgIiI="
+ },
+ {
+ "id": "io.quarkiverse.azureservices:quarkus-azure-core:jar:1.0.2",
+ "artifactId": "quarkus-azure-core",
+ "groupId": "io.quarkiverse.azureservices",
+ "version": "1.0.2",
+ "sha256": "jKMC9Kuu4Z8kf3jiGmL82P0zHylqkvPKZqRs1glvPjY="
+ },
+ {
+ "id": "io.quarkiverse.azureservices:quarkus-azure-jackson-dataformat-xml:jar:1.0.2",
+ "artifactId": "quarkus-azure-jackson-dataformat-xml",
+ "groupId": "io.quarkiverse.azureservices",
+ "version": "1.0.2",
+ "sha256": "A-QrcsmeaKQ2miEXunP_aOptovVDxZr2Tg4ZtzYgY-4="
+ },
+ {
+ "id": "io.quarkus:quarkus-jaxb:jar:3.10.0",
+ "artifactId": "quarkus-jaxb",
+ "groupId": "io.quarkus",
+ "version": "3.10.0",
+ "sha256": "kWXyoPAnLvC9FpQIkqRplEEtuJDGHQ1nOOKTqKxtwG8="
+ },
+ {
+ "id": "io.quarkus:quarkus-jaxp:jar:3.10.0",
+ "artifactId": "quarkus-jaxp",
+ "groupId": "io.quarkus",
+ "version": "3.10.0",
+ "sha256": "XGjyS8PZyJ6WF-XXu5i5k9yT1Vw4Du52p_E8Opuvcq8="
+ },
+ {
+ "id": "org.glassfish.jaxb:jaxb-runtime:jar:4.0.5",
+ "artifactId": "jaxb-runtime",
+ "groupId": "org.glassfish.jaxb",
+ "version": "4.0.5",
+ "sha256": "SF2JQOdjc6fzAIFepVBL9bcmwjRCWtMJcQGdEzEkzKQ="
+ },
+ {
+ "id": "org.glassfish.jaxb:jaxb-core:jar:4.0.5",
+ "artifactId": "jaxb-core",
+ "groupId": "org.glassfish.jaxb",
+ "version": "4.0.5",
+ "sha256": "rT_ZvwDePtqYWfcLbPsBHi_pkEgE4WomZQkoiOzg_co="
+ },
+ {
+ "id": "org.eclipse.angus:angus-activation:jar:2.0.2",
+ "artifactId": "angus-activation",
+ "groupId": "org.eclipse.angus",
+ "version": "2.0.2",
+ "sha256": "bdO8_8IrzoOwc3ag4uCU5JZKMZXUEY-0PjgO81Q2zB4="
+ },
+ {
+ "id": "org.glassfish.jaxb:txw2:jar:4.0.5",
+ "artifactId": "txw2",
+ "groupId": "org.glassfish.jaxb",
+ "version": "4.0.5",
+ "sha256": "kXNVvEUUgfMNBDsk0SMRBReWavNDg5AXc4goENykgOU="
+ },
+ {
+ "id": "com.sun.istack:istack-commons-runtime:jar:4.1.2",
+ "artifactId": "istack-commons-runtime",
+ "groupId": "com.sun.istack",
+ "version": "4.1.2",
+ "sha256": "f9Z5I2H03QD4xWr0ogzswAZt7qSo897Dg0ivI_wilu4="
+ },
+ {
+ "id": "com.fasterxml.jackson.dataformat:jackson-dataformat-xml:jar:2.17.0",
+ "artifactId": "jackson-dataformat-xml",
+ "groupId": "com.fasterxml.jackson.dataformat",
+ "version": "2.17.0",
+ "sha256": "N14OHFz1MKwGhY1MnmdLA0mGRMLn7lnxYWBwLuAqq84="
+ },
+ {
+ "id": "org.codehaus.woodstox:stax2-api:jar:4.2.2",
+ "artifactId": "stax2-api",
+ "groupId": "org.codehaus.woodstox",
+ "version": "4.2.2",
+ "sha256": "phxI1VPvrXi8Af_8SsUovruuZMuuwXCypeOc9h61Gr4="
+ },
+ {
+ "id": "com.fasterxml.woodstox:woodstox-core:jar:6.6.1",
+ "artifactId": "woodstox-core",
+ "groupId": "com.fasterxml.woodstox",
+ "version": "6.6.1",
+ "sha256": "VlXFboILAUDBgU7UvdszUu_viOM8OC86C1Gq1--JlWw="
+ },
+ {
+ "id": "io.netty:netty-tcnative-boringssl-static:jar:2.0.65.Final",
+ "artifactId": "netty-tcnative-boringssl-static",
+ "groupId": "io.netty",
+ "version": "2.0.65.Final",
+ "sha256": "u4NJvaO6BDwJ9ccyxbLUfxisTa_OJIy4UM-9BZnlugE="
+ },
+ {
+ "id": "io.netty:netty-tcnative-classes:jar:2.0.65.Final",
+ "artifactId": "netty-tcnative-classes",
+ "groupId": "io.netty",
+ "version": "2.0.65.Final",
+ "sha256": "hO8CQa2htO2SeF4QwW7b6wYzSJWaOw73QHErrdCfoSg="
+ },
+ {
+ "id": "io.netty:netty-tcnative-boringssl-static:jar:linux-x86_64:2.0.65.Final",
+ "artifactId": "netty-tcnative-boringssl-static",
+ "groupId": "io.netty",
+ "version": "2.0.65.Final",
+ "sha256": "Rc5VtJ9MFt5lJ42fRgip8GRg8pDx47T8PyRShmUZ1hg="
+ },
+ {
+ "id": "io.netty:netty-tcnative-boringssl-static:jar:linux-aarch_64:2.0.65.Final",
+ "artifactId": "netty-tcnative-boringssl-static",
+ "groupId": "io.netty",
+ "version": "2.0.65.Final",
+ "sha256": "n9b5BbzoRyyp4k-HKJYrkbkxnIT8u2GKuH9rl3TAY-0="
+ },
+ {
+ "id": "io.netty:netty-tcnative-boringssl-static:jar:osx-x86_64:2.0.65.Final",
+ "artifactId": "netty-tcnative-boringssl-static",
+ "groupId": "io.netty",
+ "version": "2.0.65.Final",
+ "sha256": "Oha3yk6JH5rVHprp6xZ8XoHX9VoAAe3yRxtpP0-MEuE="
+ },
+ {
+ "id": "io.netty:netty-tcnative-boringssl-static:jar:osx-aarch_64:2.0.65.Final",
+ "artifactId": "netty-tcnative-boringssl-static",
+ "groupId": "io.netty",
+ "version": "2.0.65.Final",
+ "sha256": "g0098vnrOqCNSTJkCcRU4vnHWknD8EVLfKtkYZsWFNw="
+ },
+ {
+ "id": "io.netty:netty-tcnative-boringssl-static:jar:windows-x86_64:2.0.65.Final",
+ "artifactId": "netty-tcnative-boringssl-static",
+ "groupId": "io.netty",
+ "version": "2.0.65.Final",
+ "sha256": "hV2TA2b66b7DhyVpl1lZ4eMd11Lf_J-SXq6ENvkz4Ro="
}
]
}
\ No newline at end of file
diff --git a/pom.xml b/pom.xml
index fdd7522..748670f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -7,21 +7,22 @@
1.2.1
Fee Calculator Microservice for Multi-channel Integration Layer of SW Client Project
- 17
+ 21
${java.version}
${java.version}
${java.version}
- 3.11.0
- 3.0.0
- 3.9.1.2184
+ 3.12.1
+ 3.2.5
+ 3.11.0.3922
UTF-8
UTF-8
quarkus-bom
io.quarkus.platform
- 3.1.1.Final
+ 3.10.0
true
- 1.1.1
- 2.1.0
+ 1.2.1
+ 2.2.1
+ 3.8.3.0
https://sonarcloud.io:443/
pagopa
pagopa_mil-fee-calculator
@@ -48,7 +49,7 @@
io.quarkus
- quarkus-resteasy-reactive-jackson
+ quarkus-rest-jackson
io.quarkus
@@ -64,11 +65,11 @@
io.quarkus
- quarkus-resteasy-reactive
+ quarkus-rest
io.quarkus
- quarkus-rest-client-reactive
+ quarkus-rest-client-jackson
io.quarkus
@@ -125,6 +126,23 @@
nimbus-jose-jwt
test
+
+
+
+ io.quarkus
+ quarkus-logging-json
+
+
+
+ io.quarkus
+ quarkus-opentelemetry
+
+
+
+ io.quarkiverse.opentelemetry.exporter
+ quarkus-opentelemetry-exporter-azure
+ ${otel-exporter-azure.version}
+
@@ -214,6 +232,7 @@
dep-sha256.json
+ dep-sha256-man.json
false
false
@@ -233,6 +252,7 @@
native
+
diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties
index 3550f15..6f628e7 100644
--- a/src/main/resources/application.properties
+++ b/src/main/resources/application.properties
@@ -1,15 +1,12 @@
-quarkus.banner.enabled=false
-
# ------------------------------------------------------------------------------
# Logging configuration
-#
-# quarkus-log-level = ERROR
-# app-log-level = DEBUG
# ------------------------------------------------------------------------------
+quarkus.banner.enabled=false
quarkus.log.console.format=%d{yyyy-MM-dd HH:mm:ss.SSS} [%X{requestId}] [%p] [%c{2}] %m%n
-
+quarkus.log.console.json=false
quarkus.log.min-level=DEBUG
-#%dev.quarkus.log.level=DEBUG
+
+%dev.quarkus.log.level=INFO
%dev.quarkus.log.category."it.pagopa.swclient.mil.feecalculator".level=DEBUG
%playground.quarkus.log.level=ERROR
@@ -18,13 +15,18 @@ quarkus.log.min-level=DEBUG
%test.quarkus.log.level=ERROR
%test.quarkus.log.category."it.pagopa.swclient.mil.feecalculator".level=DEBUG
+%prod.quarkus.log.console.json=true
%prod.quarkus.log.level=${feecalculator.quarkus-log-level}
%prod.quarkus.log.category."it.pagopa.swclient.mil.feecalculator".level=${feecalculator.app-log-level}
+# log request response of Rest Client request
+quarkus.rest-client.logging.scope=request-response
+quarkus.rest-client.logging.body-limit=-1
+quarkus.log.category."org.jboss.resteasy.reactive.client.logging".level=DEBUG
+
# ------------------------------------------------------------------------------
# Quarkus reactive rest client configuration - GEC
# ------------------------------------------------------------------------------
-
%dev.quarkus.rest-client.fees-api.url=http://localhost:9999
%test.quarkus.rest-client.fees-api.url=http://localhost:9999
%prod.quarkus.rest-client.fees-api.url=${rest-client-fees-url}
@@ -38,38 +40,27 @@ fees.max.occurrences=10
%prod.ocp.apim.subscription=${ocp-apim-subscription}
# ------------------------------------------------------------------------------
-# Quarkus reactive rest client configuration - MIL
+# Rest client configuration to communicate with Storage Account with acquirer
+# configuration
# ------------------------------------------------------------------------------
-
%dev.quarkus.rest-client.mil-rest-api.url=https://mil-d-apim.azure-api.net
#%dev.quarkus.rest-client.mil-rest-api.url=http://localhost:9999
%test.quarkus.rest-client.mil-rest-api.url=https://mil-d-apim.azure-api.net
-%prod.quarkus.rest-client.mil-rest-api.url=${mil.rest-service.url}
+%prod.quarkus.rest-client.mil-rest-api.url=${mil.rest-service.url}
%prod.quarkus.rest-client.mil-rest-api.connect-timeout=${mil.rest-service.connect-timeout}
%prod.quarkus.rest-client.mil-rest-api.read-timeout=${mil.rest-service.read-timeout}
-%dev.mil-rest-client.apim-subscription-key=abc
-%test.mil-rest-client.apim-subscription-key=abc
-%prod.mil-rest-client.apim-subscription-key=${mil.rest-service.subscription-key}
-
-%dev.mil-rest-client.mil-acquirer-conf.version=1.0.0
-%test.mil-rest-client.mil-acquirer-conf.version=1.0.0
-%prod.mil-rest-client.mil-acquirer-conf.version=${mil.acquirer-conf.version}
-
# ------------------------------------------------------------------------------
# JWT RBAC configurations
# ------------------------------------------------------------------------------
-
%dev.mp.jwt.verify.publickey.location=http://localhost:8088/jwks.json
%test.mp.jwt.verify.publickey.location=https://mil-d-apim.azure-api.net/mil-auth/.well-known/jwks.json
%prod.mp.jwt.verify.publickey.location=${jwt-publickey-location}
-
# ------------------------------------------------------------------------------
# GEC paymentMethod and touchpoint remapping
# ------------------------------------------------------------------------------
-
gec.paymentmethod.map.PAGOBANCOMAT=CP
gec.paymentmethod.map.DEBIT_CARD=CP
gec.paymentmethod.map.CREDIT_CARD=CP
@@ -87,7 +78,6 @@ gec.touchpoint.map.CSA=ANY
quarkus.rest-client.logging.scope=request-response
quarkus.rest-client.logging.body-limit=1024
quarkus.log.category."org.jboss.resteasy.reactive.client.logging".level=DEBUG
-# log request response of Rest Client request
# ------------------------------------------------------------------------------
# AZURE AD
@@ -101,4 +91,13 @@ quarkus.log.category."org.jboss.resteasy.reactive.client.logging".level=DEBUG
%prod.azure-auth-api.identity=${IDENTITY_HEADER}
azure-auth-api.version=2019-08-01
-azure-storage-api.version=2019-07-07
\ No newline at end of file
+azure-storage-api.version=2019-07-07
+
+# ------------------------------------------------------------------------------
+# OpenTelemetry
+# ------------------------------------------------------------------------------
+quarkus.opentelemetry.tracer.exporter.azure.enabled=false
+quarkus.otel.azure.applicationinsights.connection.string=InstrumentationKey=dummy;IngestionEndpoint=https://dummy/;LiveEndpoint=https://dummy/;ApplicationId=dummy
+
+%prod.quarkus.opentelemetry.tracer.exporter.azure.enabled=true
+%prod.quarkus.otel.azure.applicationinsights.connection.string=${application-insights.connection-string}
\ No newline at end of file