diff --git a/generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/CreateProjectMojo.java b/generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/CreateProjectMojo.java
index 3025394fba..e663027c9e 100644
--- a/generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/CreateProjectMojo.java
+++ b/generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/CreateProjectMojo.java
@@ -276,10 +276,10 @@ public void execute() throws MojoExecutionException {
}
askTheUserForMissingValues();
- if (projectArtifactId != DEFAULT_ARTIFACT_ID && !OK_ID.matcher(projectArtifactId).matches()) {
+ if (!DEFAULT_ARTIFACT_ID.equals(projectArtifactId) && !OK_ID.matcher(projectArtifactId).matches()) {
throw new MojoExecutionException(String.format(BAD_IDENTIFIER, "artifactId", projectArtifactId));
}
- if (projectGroupId != DEFAULT_GROUP_ID && !OK_ID.matcher(projectGroupId).matches()) {
+ if (!DEFAULT_GROUP_ID.equals(projectGroupId) && !OK_ID.matcher(projectGroupId).matches()) {
throw new MojoExecutionException(String.format(BAD_IDENTIFIER, "groupId", projectGroupId));
}
@@ -389,16 +389,7 @@ private void askTheUserForMissingValues() throws MojoExecutionException {
// If the user has disabled the interactive mode or if the user has specified the artifactId, disable the
// user interactions.
if (!session.getRequest().isInteractiveMode() || shouldUseDefaults()) {
- if (isBlank(projectArtifactId)) {
- // we need to set it for the project directory
- projectArtifactId = DEFAULT_ARTIFACT_ID;
- }
- if (isBlank(projectGroupId)) {
- projectGroupId = DEFAULT_GROUP_ID;
- }
- if (isBlank(projectVersion)) {
- projectVersion = DEFAULT_VERSION;
- }
+ setProperDefaults();
return;
}
@@ -427,12 +418,27 @@ private void askTheUserForMissingValues() throws MojoExecutionException {
input -> noCode = input.startsWith("n"));
prompter.collectInput();
+ } else {
+ setProperDefaults();
}
} catch (IOException e) {
throw new MojoExecutionException("Unable to get user input", e);
}
}
+ private void setProperDefaults() {
+ if (isBlank(projectArtifactId)) {
+ // we need to set it for the project directory
+ projectArtifactId = DEFAULT_ARTIFACT_ID;
+ }
+ if (isBlank(projectGroupId)) {
+ projectGroupId = DEFAULT_GROUP_ID;
+ }
+ if (isBlank(projectVersion)) {
+ projectVersion = DEFAULT_VERSION;
+ }
+ }
+
private boolean shouldUseDefaults() {
// Must be called before user input
return projectArtifactId != null;
diff --git a/generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/DevMojo.java b/generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/DevMojo.java
index fb8385f87b..2781edf9f0 100644
--- a/generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/DevMojo.java
+++ b/generated-platform-project/quarkus-maven-plugin/src/main/java/io/quarkus/maven/DevMojo.java
@@ -592,6 +592,7 @@ private String handleAutoCompile() throws MojoExecutionException {
if (!e.getGoals().isEmpty()) {
goalPrefix = getMojoDescriptor(p, e.getGoals().get(0)).getPluginDescriptor().getGoalPrefix();
pluginPrefixes.put(goalPrefix, p);
+ pluginPrefixes.put(p.getId(), p);
}
if (e.getPhase() != null) {
phaseExecutions.computeIfAbsent(e.getPhase(), k -> new ArrayList<>()).add(new PluginExec(p, goalPrefix, e));
@@ -630,7 +631,7 @@ private String handleAutoCompile() throws MojoExecutionException {
if (goal.endsWith(currentGoal)) {
break;
}
- var colon = goal.indexOf(':');
+ var colon = goal.lastIndexOf(':');
if (colon >= 0) {
var plugin = pluginPrefixes.get(goal.substring(0, colon));
if (plugin == null) {
diff --git a/generated-platform-project/quarkus-universe/bom/pom.xml b/generated-platform-project/quarkus-universe/bom/pom.xml
index 8854ac3363..4477b7ee4d 100644
--- a/generated-platform-project/quarkus-universe/bom/pom.xml
+++ b/generated-platform-project/quarkus-universe/bom/pom.xml
@@ -9374,12 +9374,12 @@
io.quarkus.arc
arc-processor
- 3.7.3
+ 3.7.4
io.quarkus.arc
arc
- 3.7.3
+ 3.7.4
io.quarkus.gizmo
@@ -9449,67 +9449,67 @@
io.quarkus.junit5
junit5-virtual-threads
- 3.7.3
+ 3.7.4
io.quarkus.qute
qute-core
- 3.7.3
+ 3.7.4
io.quarkus.qute
qute-generator
- 3.7.3
+ 3.7.4
io.quarkus.resteasy.reactive
resteasy-reactive-client-processor
- 3.7.3
+ 3.7.4
io.quarkus.resteasy.reactive
resteasy-reactive-client
- 3.7.3
+ 3.7.4
io.quarkus.resteasy.reactive
resteasy-reactive-common-processor
- 3.7.3
+ 3.7.4
io.quarkus.resteasy.reactive
resteasy-reactive-common-types
- 3.7.3
+ 3.7.4
io.quarkus.resteasy.reactive
resteasy-reactive-common
- 3.7.3
+ 3.7.4
io.quarkus.resteasy.reactive
resteasy-reactive-jackson
- 3.7.3
+ 3.7.4
io.quarkus.resteasy.reactive
resteasy-reactive-jsonb
- 3.7.3
+ 3.7.4
io.quarkus.resteasy.reactive
resteasy-reactive-processor
- 3.7.3
+ 3.7.4
io.quarkus.resteasy.reactive
resteasy-reactive-vertx
- 3.7.3
+ 3.7.4
io.quarkus.resteasy.reactive
resteasy-reactive
- 3.7.3
+ 3.7.4
io.quarkus.security
@@ -9529,572 +9529,572 @@
io.quarkus
quarkus-agroal-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-agroal-spi
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-agroal
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-amazon-lambda-common-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-amazon-lambda-common
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-amazon-lambda-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-amazon-lambda-event-server
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-amazon-lambda-http-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-amazon-lambda-http-event-server
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-amazon-lambda-http
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-amazon-lambda-rest-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-amazon-lambda-rest-event-server
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-amazon-lambda-rest
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-amazon-lambda-xray-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-amazon-lambda-xray
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-amazon-lambda
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-analytics-common
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-apache-httpclient-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-apache-httpclient
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-apicurio-registry-avro-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-apicurio-registry-avro
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-apicurio-registry-common-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-apicurio-registry-common
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-apicurio-registry-json-schema-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-apicurio-registry-json-schema
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-arc-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-arc
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-arquillian
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-avro-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-avro
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-awt-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-awt
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-azure-functions-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-azure-functions-http-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-azure-functions-http
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-azure-functions
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-bootstrap-app-model
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-bootstrap-core
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-bootstrap-gradle-resolver
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-bootstrap-maven-resolver
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-bootstrap-runner
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-builder
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-cache-deployment-spi
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-cache-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-cache-runtime-spi
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-cache
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-caffeine-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-caffeine
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-class-change-agent
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-config-yaml-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-config-yaml
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-confluent-registry-avro-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-confluent-registry-avro
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-confluent-registry-common-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-confluent-registry-common
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-confluent-registry-json-schema-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-confluent-registry-json-schema
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-container-image-buildpack-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-container-image-buildpack
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-container-image-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-container-image-docker-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-container-image-docker
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-container-image-jib-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-container-image-jib
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-container-image-openshift-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-container-image-openshift
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-container-image-spi
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-container-image-util
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-container-image
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-core-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-core
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-credentials-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-credentials
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-csrf-reactive-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-csrf-reactive
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-datasource-common
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-datasource-deployment-spi
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-datasource-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-datasource
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-development-mode-spi
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-devservices-common
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-devservices-db2
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-devservices-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-devservices-derby
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-devservices-h2
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-devservices-mariadb
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-devservices-mssql
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-devservices-mysql
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-devservices-oracle
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-devservices-postgresql
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-devtools-common
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-devtools-registry-client
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-devtools-testing
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-devtools-utilities
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-elasticsearch-java-client-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-elasticsearch-java-client
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-elasticsearch-rest-client-common-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-elasticsearch-rest-client-common
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-elasticsearch-rest-client-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-elasticsearch-rest-client
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-elytron-security-common-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-elytron-security-common
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-elytron-security-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-elytron-security-jdbc-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-elytron-security-jdbc
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-elytron-security-ldap-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-elytron-security-ldap
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-elytron-security-oauth2-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-elytron-security-oauth2
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-elytron-security-properties-file-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-elytron-security-properties-file
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-elytron-security
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-flyway-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-flyway
- 3.7.3
+ 3.7.4
io.quarkus
@@ -10104,123 +10104,123 @@
io.quarkus
quarkus-funqy-amazon-lambda-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-funqy-amazon-lambda
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-funqy-google-cloud-functions-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-funqy-google-cloud-functions
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-funqy-http-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-funqy-http
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-funqy-knative-events-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-funqy-knative-events
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-funqy-server-common-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-funqy-server-common
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-google-cloud-functions-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-google-cloud-functions-http-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-google-cloud-functions-http
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-google-cloud-functions
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-grpc-api
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-grpc-codegen
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-grpc-common-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-grpc-common
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-grpc-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-grpc-inprocess
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-grpc-protoc-plugin
- 3.7.3
+ 3.7.4
shaded
io.quarkus
quarkus-grpc-stubs
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-grpc-xds
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-grpc
- 3.7.3
+ 3.7.4
com.google.android
@@ -10231,177 +10231,177 @@
io.quarkus
quarkus-hal-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-hal
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-hibernate-envers-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-hibernate-envers
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-hibernate-orm-deployment-spi
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-hibernate-orm-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-hibernate-orm-panache-common-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-hibernate-orm-panache-common
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-hibernate-orm-panache-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-hibernate-orm-panache-kotlin-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-hibernate-orm-panache-kotlin
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-hibernate-orm-panache
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-hibernate-orm-rest-data-panache-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-hibernate-orm-rest-data-panache
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-hibernate-orm
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-hibernate-reactive-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-hibernate-reactive-panache-common-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-hibernate-reactive-panache-common
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-hibernate-reactive-panache-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-hibernate-reactive-panache-kotlin-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-hibernate-reactive-panache-kotlin
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-hibernate-reactive-panache
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-hibernate-reactive-rest-data-panache-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-hibernate-reactive-rest-data-panache
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-hibernate-reactive
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-hibernate-search-orm-coordination-outbox-polling-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-hibernate-search-orm-coordination-outbox-polling
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-hibernate-search-orm-elasticsearch-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-hibernate-search-orm-elasticsearch
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-hibernate-search-orm-outbox-polling-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-hibernate-search-orm-outbox-polling
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-hibernate-validator-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-hibernate-validator-spi
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-hibernate-validator
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-ide-launcher
- 3.7.3
+ 3.7.4
*
@@ -10412,1527 +10412,1527 @@
io.quarkus
quarkus-infinispan-client-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-infinispan-client
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-info-deployment-spi
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-info-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-info-runtime-spi
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-info
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-jackson-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-jackson-spi
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-jackson
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-jacoco-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-jacoco
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-jaeger-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-jaeger
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-jaxb-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-jaxb
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-jaxp-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-jaxp
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-jaxrs-client-reactive-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-jaxrs-client-reactive
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-jaxrs-spi-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-jdbc-db2-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-jdbc-db2
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-jdbc-derby-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-jdbc-derby
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-jdbc-h2-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-jdbc-h2
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-jdbc-mariadb-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-jdbc-mariadb
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-jdbc-mssql-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-jdbc-mssql
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-jdbc-mysql-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-jdbc-mysql
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-jdbc-oracle-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-jdbc-oracle
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-jdbc-postgresql-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-jdbc-postgresql
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-jms-spi-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-jsonb-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-jsonb-spi
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-jsonb
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-jsonp-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-jsonp
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-junit4-mock
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-junit5-component
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-junit5-internal
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-junit5-mockito-config
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-junit5-mockito
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-junit5-properties
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-junit5
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-kafka-client-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-kafka-client
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-kafka-streams-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-kafka-streams
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-keycloak-admin-client-common-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-keycloak-admin-client-common
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-keycloak-admin-client-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-keycloak-admin-client-reactive-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-keycloak-admin-client-reactive
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-keycloak-admin-client
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-keycloak-authorization-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-keycloak-authorization
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-kind-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-kind
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-kotlin-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-kotlin
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-kubernetes-client-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-kubernetes-client-internal-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-kubernetes-client-internal
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-kubernetes-client-spi
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-kubernetes-client
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-kubernetes-config-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-kubernetes-config
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-kubernetes-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-kubernetes-service-binding-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-kubernetes-service-binding-spi
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-kubernetes-service-binding
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-kubernetes-spi
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-kubernetes
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-liquibase-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-liquibase-mongodb-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-liquibase-mongodb
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-liquibase
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-logging-gelf-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-logging-gelf
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-logging-json-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-logging-json
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-mailer-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-mailer
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-micrometer-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-micrometer-registry-prometheus-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-micrometer-registry-prometheus
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-micrometer
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-minikube-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-minikube
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-mongodb-client-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-mongodb-client
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-mongodb-panache-common-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-mongodb-panache-common
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-mongodb-panache-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-mongodb-panache-kotlin-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-mongodb-panache-kotlin
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-mongodb-panache
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-mongodb-rest-data-panache-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-mongodb-rest-data-panache
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-mutiny-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-mutiny-reactive-streams-operators-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-mutiny-reactive-streams-operators
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-mutiny
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-narayana-jta-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-narayana-jta
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-narayana-lra-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-narayana-lra
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-narayana-stm-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-narayana-stm
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-netty-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-netty
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-oidc-client-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-oidc-client-filter-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-oidc-client-filter
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-oidc-client-graphql-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-oidc-client-graphql
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-oidc-client-reactive-filter-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-oidc-client-reactive-filter
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-oidc-client
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-oidc-common-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-oidc-common
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-oidc-db-token-state-manager-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-oidc-db-token-state-manager
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-oidc-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-oidc-token-propagation-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-oidc-token-propagation-reactive-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-oidc-token-propagation-reactive
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-oidc-token-propagation
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-oidc
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-openshift-client-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-openshift-client
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-openshift-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-openshift
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-opentelemetry-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-opentelemetry-exporter-jaeger-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-opentelemetry-exporter-jaeger
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-opentelemetry-exporter-otlp-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-opentelemetry-exporter-otlp
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-opentelemetry
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-panache-common-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-panache-common
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-panache-hibernate-common-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-panache-hibernate-common
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-panache-mock
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-panacheql
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-picocli-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-picocli
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-project-core-extension-codestarts
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-quartz-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-quartz
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-qute-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-qute
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-reactive-datasource-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-reactive-datasource
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-reactive-db2-client-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-reactive-db2-client
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-reactive-mssql-client-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-reactive-mssql-client
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-reactive-mysql-client-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-reactive-mysql-client
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-reactive-oracle-client-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-reactive-oracle-client
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-reactive-pg-client-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-reactive-pg-client
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-reactive-routes-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-reactive-routes
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-redis-cache-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-redis-cache
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-redis-client-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-redis-client
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-rest-client-config-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-rest-client-config
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-rest-client-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-rest-client-jackson-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-rest-client-jackson
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-rest-client-jaxb-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-rest-client-jaxb
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-rest-client-jsonb-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-rest-client-jsonb
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-rest-client-mutiny-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-rest-client-mutiny
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-rest-client-reactive-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-rest-client-reactive-jackson-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-rest-client-reactive-jackson
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-rest-client-reactive-jaxb-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-rest-client-reactive-jaxb
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-rest-client-reactive-jsonb-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-rest-client-reactive-jsonb
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-rest-client-reactive-kotlin-serialization-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-rest-client-reactive-kotlin-serialization
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-rest-client-reactive-spi-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-rest-client-reactive
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-rest-client
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-rest-data-panache-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-rest-data-panache
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-client-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-client-jackson-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-client-jackson
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-client-jaxb-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-client-jaxb
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-client-jsonb-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-client-jsonb
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-client-mutiny-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-client-mutiny
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-client
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-common-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-common-spi
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-common
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-jackson-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-jackson
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-jaxb-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-jaxb
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-jsonb-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-jsonb
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-links-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-links
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-multipart-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-multipart
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-mutiny-common-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-mutiny-common
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-mutiny-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-mutiny
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-qute-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-qute
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-reactive-common-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-reactive-common
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-reactive-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-reactive-jackson-common-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-reactive-jackson-common
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-reactive-jackson-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-reactive-jackson
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-reactive-jaxb-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-reactive-jaxb
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-reactive-jsonb-common-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-reactive-jsonb-common
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-reactive-jsonb-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-reactive-jsonb
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-reactive-kotlin-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-reactive-kotlin-serialization-common-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-reactive-kotlin-serialization-common
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-reactive-kotlin-serialization-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-reactive-kotlin-serialization
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-reactive-kotlin
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-reactive-links-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-reactive-links
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-reactive-qute-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-reactive-qute
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-reactive-server-spi-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-reactive-servlet-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-reactive-servlet
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-reactive-spi-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-reactive
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-server-common-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-server-common-spi
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-server-common
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-scala-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-scala
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-scheduler-api
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-scheduler-common
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-scheduler-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-scheduler-kotlin
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-scheduler-spi
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-scheduler
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-schema-registry-devservice-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-schema-registry-devservice
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-security-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-security-jpa-common-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-security-jpa-common
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-security-jpa-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-security-jpa-reactive-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-security-jpa-reactive
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-security-jpa
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-security-runtime-spi
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-security-spi
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-security-webauthn-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-security-webauthn
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-security
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-context-propagation-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-context-propagation-spi
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-context-propagation
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-fault-tolerance-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-fault-tolerance
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-graphql-client-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-graphql-client
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-graphql-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-graphql
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-health-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-health-spi
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-health
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-jwt-build-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-jwt-build
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-jwt-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-jwt
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-metrics-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-metrics-spi
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-metrics
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-openapi-common-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-openapi-deployment
- 3.7.3
+ 3.7.4
org.jboss.shrinkwrap
@@ -11943,12 +11943,12 @@
io.quarkus
quarkus-smallrye-openapi-spi
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-openapi
- 3.7.3
+ 3.7.4
org.jboss.shrinkwrap
@@ -11959,107 +11959,107 @@
io.quarkus
quarkus-smallrye-opentracing-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-opentracing
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-reactive-messaging-amqp-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-reactive-messaging-amqp
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-reactive-messaging-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-reactive-messaging-kafka-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-reactive-messaging-kafka
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-reactive-messaging-kotlin
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-reactive-messaging-mqtt-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-reactive-messaging-mqtt
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-reactive-messaging-pulsar-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-reactive-messaging-pulsar
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-reactive-messaging-rabbitmq-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-reactive-messaging-rabbitmq
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-reactive-messaging
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-reactive-streams-operators-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-reactive-streams-operators
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-reactive-type-converters-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-reactive-type-converters
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-stork-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-stork
- 3.7.3
+ 3.7.4
io.quarkus
@@ -12079,32 +12079,32 @@
io.quarkus
quarkus-spring-boot-properties-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-spring-boot-properties
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-spring-cache-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-spring-cache
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-spring-cloud-config-client-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-spring-cloud-config-client
- 3.7.3
+ 3.7.4
io.quarkus
@@ -12129,12 +12129,12 @@
io.quarkus
quarkus-spring-data-jpa-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-spring-data-jpa
- 3.7.3
+ 3.7.4
io.quarkus
@@ -12144,32 +12144,32 @@
io.quarkus
quarkus-spring-data-rest-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-spring-data-rest
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-spring-di-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-spring-di
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-spring-scheduled-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-spring-scheduled
- 3.7.3
+ 3.7.4
io.quarkus
@@ -12179,12 +12179,12 @@
io.quarkus
quarkus-spring-security-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-spring-security
- 3.7.3
+ 3.7.4
io.quarkus
@@ -12194,37 +12194,37 @@
io.quarkus
quarkus-spring-web-common
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-spring-web-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-spring-web-resteasy-classic-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-spring-web-resteasy-classic
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-spring-web-resteasy-reactive-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-spring-web-resteasy-reactive
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-spring-web
- 3.7.3
+ 3.7.4
io.quarkus
@@ -12234,227 +12234,227 @@
io.quarkus
quarkus-swagger-ui-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-swagger-ui
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-test-amazon-lambda
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-test-common
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-test-derby
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-test-google-cloud-functions
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-test-h2
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-test-hibernate-reactive-panache
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-test-kafka-companion
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-test-keycloak-server
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-test-kubernetes-client
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-test-ldap
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-test-mongodb
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-test-oidc-server
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-test-openshift-client
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-test-security-jwt
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-test-security-oidc
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-test-security-webauthn
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-test-security
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-test-vertx
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-transaction-annotations
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-undertow-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-undertow-spi
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-undertow
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-vertx-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-vertx-graphql-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-vertx-graphql
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-vertx-http-deployment-spi
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-vertx-http-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-vertx-http-dev-console-runtime-spi
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-vertx-http-dev-console-spi
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-vertx-http-dev-ui-resources
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-vertx-http-dev-ui-spi
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-vertx-http-dev-ui-tests
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-vertx-http
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-vertx-latebound-mdc-provider
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-vertx
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-virtual-threads-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-virtual-threads
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-webjars-locator-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-webjars-locator
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-websockets-client-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-websockets-client
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-websockets-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-websockets
- 3.7.3
+ 3.7.4
io.reactivex.rxjava2
@@ -12537,7 +12537,7 @@
io.smallrye.beanbag
smallrye-beanbag-maven
- 1.3.2
+ 1.4.0
org.slf4j
@@ -20461,7 +20461,7 @@
org.apache.commons
commons-compress
- 1.25.0
+ 1.26.0
org.apache.commons
diff --git a/generated-platform-project/quarkus-universe/descriptor/src/main/resources/overrides.json b/generated-platform-project/quarkus-universe/descriptor/src/main/resources/overrides.json
index 68c8c81a2d..60f92e7471 100644
--- a/generated-platform-project/quarkus-universe/descriptor/src/main/resources/overrides.json
+++ b/generated-platform-project/quarkus-universe/descriptor/src/main/resources/overrides.json
@@ -1,6 +1,6 @@
{
"metadata" : {
- "codestarts-artifacts" : [ "io.quarkus:quarkus-project-core-extension-codestarts::jar:3.7.3" ],
+ "codestarts-artifacts" : [ "io.quarkus:quarkus-project-core-extension-codestarts::jar:3.7.4" ],
"project" : {
"default-codestart" : "resteasy-reactive",
"properties" : {
@@ -11,12 +11,12 @@
"kotlin-version" : "1.9.22",
"scala-version" : "2.13.12",
"scala-plugin-version" : "4.8.1",
- "quarkus-core-version" : "3.7.3",
+ "quarkus-core-version" : "3.7.4",
"maven-plugin-groupId" : "io.quarkus",
"maven-plugin-artifactId" : "quarkus-maven-plugin",
- "maven-plugin-version" : "3.7.3",
+ "maven-plugin-version" : "3.7.4",
"gradle-plugin-id" : "io.quarkus",
- "gradle-plugin-version" : "3.7.3",
+ "gradle-plugin-version" : "3.7.4",
"supported-maven-versions" : "[3.8.2,)",
"proposed-maven-version" : "3.9.6",
"maven-wrapper-version" : "3.2.0",
diff --git a/generated-platform-project/quarkus/bom/pom.xml b/generated-platform-project/quarkus/bom/pom.xml
index e641e7751a..81477707c6 100644
--- a/generated-platform-project/quarkus/bom/pom.xml
+++ b/generated-platform-project/quarkus/bom/pom.xml
@@ -4216,12 +4216,12 @@
io.quarkus.arc
arc-processor
- 3.7.3
+ 3.7.4
io.quarkus.arc
arc
- 3.7.3
+ 3.7.4
io.quarkus.gizmo
@@ -4291,67 +4291,67 @@
io.quarkus.junit5
junit5-virtual-threads
- 3.7.3
+ 3.7.4
io.quarkus.qute
qute-core
- 3.7.3
+ 3.7.4
io.quarkus.qute
qute-generator
- 3.7.3
+ 3.7.4
io.quarkus.resteasy.reactive
resteasy-reactive-client-processor
- 3.7.3
+ 3.7.4
io.quarkus.resteasy.reactive
resteasy-reactive-client
- 3.7.3
+ 3.7.4
io.quarkus.resteasy.reactive
resteasy-reactive-common-processor
- 3.7.3
+ 3.7.4
io.quarkus.resteasy.reactive
resteasy-reactive-common-types
- 3.7.3
+ 3.7.4
io.quarkus.resteasy.reactive
resteasy-reactive-common
- 3.7.3
+ 3.7.4
io.quarkus.resteasy.reactive
resteasy-reactive-jackson
- 3.7.3
+ 3.7.4
io.quarkus.resteasy.reactive
resteasy-reactive-jsonb
- 3.7.3
+ 3.7.4
io.quarkus.resteasy.reactive
resteasy-reactive-processor
- 3.7.3
+ 3.7.4
io.quarkus.resteasy.reactive
resteasy-reactive-vertx
- 3.7.3
+ 3.7.4
io.quarkus.resteasy.reactive
resteasy-reactive
- 3.7.3
+ 3.7.4
io.quarkus.security
@@ -4371,572 +4371,572 @@
io.quarkus
quarkus-agroal-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-agroal-spi
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-agroal
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-amazon-lambda-common-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-amazon-lambda-common
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-amazon-lambda-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-amazon-lambda-event-server
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-amazon-lambda-http-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-amazon-lambda-http-event-server
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-amazon-lambda-http
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-amazon-lambda-rest-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-amazon-lambda-rest-event-server
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-amazon-lambda-rest
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-amazon-lambda-xray-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-amazon-lambda-xray
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-amazon-lambda
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-analytics-common
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-apache-httpclient-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-apache-httpclient
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-apicurio-registry-avro-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-apicurio-registry-avro
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-apicurio-registry-common-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-apicurio-registry-common
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-apicurio-registry-json-schema-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-apicurio-registry-json-schema
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-arc-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-arc
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-arquillian
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-avro-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-avro
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-awt-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-awt
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-azure-functions-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-azure-functions-http-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-azure-functions-http
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-azure-functions
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-bootstrap-app-model
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-bootstrap-core
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-bootstrap-gradle-resolver
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-bootstrap-maven-resolver
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-bootstrap-runner
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-builder
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-cache-deployment-spi
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-cache-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-cache-runtime-spi
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-cache
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-caffeine-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-caffeine
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-class-change-agent
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-config-yaml-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-config-yaml
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-confluent-registry-avro-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-confluent-registry-avro
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-confluent-registry-common-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-confluent-registry-common
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-confluent-registry-json-schema-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-confluent-registry-json-schema
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-container-image-buildpack-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-container-image-buildpack
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-container-image-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-container-image-docker-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-container-image-docker
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-container-image-jib-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-container-image-jib
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-container-image-openshift-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-container-image-openshift
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-container-image-spi
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-container-image-util
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-container-image
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-core-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-core
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-credentials-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-credentials
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-csrf-reactive-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-csrf-reactive
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-datasource-common
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-datasource-deployment-spi
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-datasource-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-datasource
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-development-mode-spi
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-devservices-common
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-devservices-db2
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-devservices-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-devservices-derby
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-devservices-h2
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-devservices-mariadb
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-devservices-mssql
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-devservices-mysql
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-devservices-oracle
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-devservices-postgresql
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-devtools-common
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-devtools-registry-client
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-devtools-testing
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-devtools-utilities
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-elasticsearch-java-client-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-elasticsearch-java-client
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-elasticsearch-rest-client-common-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-elasticsearch-rest-client-common
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-elasticsearch-rest-client-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-elasticsearch-rest-client
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-elytron-security-common-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-elytron-security-common
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-elytron-security-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-elytron-security-jdbc-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-elytron-security-jdbc
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-elytron-security-ldap-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-elytron-security-ldap
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-elytron-security-oauth2-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-elytron-security-oauth2
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-elytron-security-properties-file-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-elytron-security-properties-file
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-elytron-security
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-flyway-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-flyway
- 3.7.3
+ 3.7.4
io.quarkus
@@ -4946,123 +4946,123 @@
io.quarkus
quarkus-funqy-amazon-lambda-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-funqy-amazon-lambda
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-funqy-google-cloud-functions-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-funqy-google-cloud-functions
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-funqy-http-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-funqy-http
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-funqy-knative-events-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-funqy-knative-events
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-funqy-server-common-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-funqy-server-common
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-google-cloud-functions-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-google-cloud-functions-http-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-google-cloud-functions-http
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-google-cloud-functions
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-grpc-api
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-grpc-codegen
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-grpc-common-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-grpc-common
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-grpc-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-grpc-inprocess
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-grpc-protoc-plugin
- 3.7.3
+ 3.7.4
shaded
io.quarkus
quarkus-grpc-stubs
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-grpc-xds
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-grpc
- 3.7.3
+ 3.7.4
com.google.android
@@ -5073,177 +5073,177 @@
io.quarkus
quarkus-hal-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-hal
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-hibernate-envers-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-hibernate-envers
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-hibernate-orm-deployment-spi
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-hibernate-orm-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-hibernate-orm-panache-common-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-hibernate-orm-panache-common
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-hibernate-orm-panache-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-hibernate-orm-panache-kotlin-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-hibernate-orm-panache-kotlin
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-hibernate-orm-panache
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-hibernate-orm-rest-data-panache-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-hibernate-orm-rest-data-panache
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-hibernate-orm
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-hibernate-reactive-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-hibernate-reactive-panache-common-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-hibernate-reactive-panache-common
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-hibernate-reactive-panache-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-hibernate-reactive-panache-kotlin-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-hibernate-reactive-panache-kotlin
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-hibernate-reactive-panache
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-hibernate-reactive-rest-data-panache-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-hibernate-reactive-rest-data-panache
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-hibernate-reactive
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-hibernate-search-orm-coordination-outbox-polling-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-hibernate-search-orm-coordination-outbox-polling
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-hibernate-search-orm-elasticsearch-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-hibernate-search-orm-elasticsearch
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-hibernate-search-orm-outbox-polling-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-hibernate-search-orm-outbox-polling
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-hibernate-validator-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-hibernate-validator-spi
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-hibernate-validator
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-ide-launcher
- 3.7.3
+ 3.7.4
*
@@ -5254,1527 +5254,1527 @@
io.quarkus
quarkus-infinispan-client-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-infinispan-client
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-info-deployment-spi
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-info-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-info-runtime-spi
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-info
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-jackson-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-jackson-spi
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-jackson
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-jacoco-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-jacoco
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-jaeger-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-jaeger
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-jaxb-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-jaxb
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-jaxp-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-jaxp
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-jaxrs-client-reactive-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-jaxrs-client-reactive
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-jaxrs-spi-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-jdbc-db2-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-jdbc-db2
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-jdbc-derby-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-jdbc-derby
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-jdbc-h2-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-jdbc-h2
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-jdbc-mariadb-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-jdbc-mariadb
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-jdbc-mssql-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-jdbc-mssql
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-jdbc-mysql-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-jdbc-mysql
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-jdbc-oracle-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-jdbc-oracle
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-jdbc-postgresql-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-jdbc-postgresql
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-jms-spi-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-jsonb-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-jsonb-spi
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-jsonb
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-jsonp-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-jsonp
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-junit4-mock
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-junit5-component
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-junit5-internal
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-junit5-mockito-config
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-junit5-mockito
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-junit5-properties
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-junit5
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-kafka-client-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-kafka-client
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-kafka-streams-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-kafka-streams
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-keycloak-admin-client-common-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-keycloak-admin-client-common
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-keycloak-admin-client-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-keycloak-admin-client-reactive-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-keycloak-admin-client-reactive
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-keycloak-admin-client
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-keycloak-authorization-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-keycloak-authorization
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-kind-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-kind
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-kotlin-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-kotlin
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-kubernetes-client-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-kubernetes-client-internal-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-kubernetes-client-internal
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-kubernetes-client-spi
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-kubernetes-client
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-kubernetes-config-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-kubernetes-config
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-kubernetes-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-kubernetes-service-binding-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-kubernetes-service-binding-spi
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-kubernetes-service-binding
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-kubernetes-spi
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-kubernetes
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-liquibase-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-liquibase-mongodb-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-liquibase-mongodb
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-liquibase
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-logging-gelf-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-logging-gelf
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-logging-json-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-logging-json
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-mailer-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-mailer
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-micrometer-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-micrometer-registry-prometheus-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-micrometer-registry-prometheus
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-micrometer
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-minikube-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-minikube
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-mongodb-client-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-mongodb-client
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-mongodb-panache-common-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-mongodb-panache-common
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-mongodb-panache-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-mongodb-panache-kotlin-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-mongodb-panache-kotlin
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-mongodb-panache
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-mongodb-rest-data-panache-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-mongodb-rest-data-panache
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-mutiny-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-mutiny-reactive-streams-operators-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-mutiny-reactive-streams-operators
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-mutiny
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-narayana-jta-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-narayana-jta
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-narayana-lra-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-narayana-lra
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-narayana-stm-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-narayana-stm
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-netty-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-netty
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-oidc-client-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-oidc-client-filter-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-oidc-client-filter
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-oidc-client-graphql-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-oidc-client-graphql
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-oidc-client-reactive-filter-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-oidc-client-reactive-filter
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-oidc-client
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-oidc-common-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-oidc-common
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-oidc-db-token-state-manager-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-oidc-db-token-state-manager
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-oidc-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-oidc-token-propagation-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-oidc-token-propagation-reactive-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-oidc-token-propagation-reactive
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-oidc-token-propagation
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-oidc
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-openshift-client-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-openshift-client
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-openshift-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-openshift
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-opentelemetry-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-opentelemetry-exporter-jaeger-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-opentelemetry-exporter-jaeger
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-opentelemetry-exporter-otlp-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-opentelemetry-exporter-otlp
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-opentelemetry
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-panache-common-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-panache-common
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-panache-hibernate-common-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-panache-hibernate-common
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-panache-mock
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-panacheql
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-picocli-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-picocli
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-project-core-extension-codestarts
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-quartz-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-quartz
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-qute-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-qute
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-reactive-datasource-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-reactive-datasource
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-reactive-db2-client-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-reactive-db2-client
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-reactive-mssql-client-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-reactive-mssql-client
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-reactive-mysql-client-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-reactive-mysql-client
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-reactive-oracle-client-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-reactive-oracle-client
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-reactive-pg-client-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-reactive-pg-client
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-reactive-routes-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-reactive-routes
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-redis-cache-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-redis-cache
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-redis-client-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-redis-client
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-rest-client-config-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-rest-client-config
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-rest-client-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-rest-client-jackson-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-rest-client-jackson
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-rest-client-jaxb-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-rest-client-jaxb
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-rest-client-jsonb-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-rest-client-jsonb
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-rest-client-mutiny-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-rest-client-mutiny
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-rest-client-reactive-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-rest-client-reactive-jackson-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-rest-client-reactive-jackson
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-rest-client-reactive-jaxb-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-rest-client-reactive-jaxb
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-rest-client-reactive-jsonb-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-rest-client-reactive-jsonb
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-rest-client-reactive-kotlin-serialization-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-rest-client-reactive-kotlin-serialization
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-rest-client-reactive-spi-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-rest-client-reactive
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-rest-client
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-rest-data-panache-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-rest-data-panache
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-client-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-client-jackson-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-client-jackson
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-client-jaxb-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-client-jaxb
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-client-jsonb-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-client-jsonb
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-client-mutiny-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-client-mutiny
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-client
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-common-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-common-spi
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-common
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-jackson-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-jackson
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-jaxb-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-jaxb
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-jsonb-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-jsonb
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-links-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-links
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-multipart-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-multipart
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-mutiny-common-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-mutiny-common
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-mutiny-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-mutiny
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-qute-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-qute
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-reactive-common-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-reactive-common
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-reactive-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-reactive-jackson-common-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-reactive-jackson-common
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-reactive-jackson-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-reactive-jackson
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-reactive-jaxb-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-reactive-jaxb
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-reactive-jsonb-common-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-reactive-jsonb-common
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-reactive-jsonb-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-reactive-jsonb
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-reactive-kotlin-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-reactive-kotlin-serialization-common-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-reactive-kotlin-serialization-common
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-reactive-kotlin-serialization-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-reactive-kotlin-serialization
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-reactive-kotlin
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-reactive-links-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-reactive-links
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-reactive-qute-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-reactive-qute
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-reactive-server-spi-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-reactive-servlet-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-reactive-servlet
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-reactive-spi-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-reactive
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-server-common-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-server-common-spi
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy-server-common
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-resteasy
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-scala-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-scala
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-scheduler-api
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-scheduler-common
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-scheduler-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-scheduler-kotlin
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-scheduler-spi
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-scheduler
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-schema-registry-devservice-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-schema-registry-devservice
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-security-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-security-jpa-common-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-security-jpa-common
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-security-jpa-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-security-jpa-reactive-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-security-jpa-reactive
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-security-jpa
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-security-runtime-spi
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-security-spi
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-security-webauthn-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-security-webauthn
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-security
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-context-propagation-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-context-propagation-spi
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-context-propagation
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-fault-tolerance-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-fault-tolerance
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-graphql-client-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-graphql-client
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-graphql-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-graphql
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-health-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-health-spi
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-health
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-jwt-build-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-jwt-build
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-jwt-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-jwt
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-metrics-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-metrics-spi
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-metrics
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-openapi-common-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-openapi-deployment
- 3.7.3
+ 3.7.4
org.jboss.shrinkwrap
@@ -6785,12 +6785,12 @@
io.quarkus
quarkus-smallrye-openapi-spi
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-openapi
- 3.7.3
+ 3.7.4
org.jboss.shrinkwrap
@@ -6801,107 +6801,107 @@
io.quarkus
quarkus-smallrye-opentracing-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-opentracing
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-reactive-messaging-amqp-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-reactive-messaging-amqp
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-reactive-messaging-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-reactive-messaging-kafka-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-reactive-messaging-kafka
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-reactive-messaging-kotlin
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-reactive-messaging-mqtt-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-reactive-messaging-mqtt
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-reactive-messaging-pulsar-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-reactive-messaging-pulsar
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-reactive-messaging-rabbitmq-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-reactive-messaging-rabbitmq
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-reactive-messaging
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-reactive-streams-operators-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-reactive-streams-operators
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-reactive-type-converters-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-reactive-type-converters
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-stork-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-smallrye-stork
- 3.7.3
+ 3.7.4
io.quarkus
@@ -6921,32 +6921,32 @@
io.quarkus
quarkus-spring-boot-properties-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-spring-boot-properties
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-spring-cache-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-spring-cache
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-spring-cloud-config-client-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-spring-cloud-config-client
- 3.7.3
+ 3.7.4
io.quarkus
@@ -6971,12 +6971,12 @@
io.quarkus
quarkus-spring-data-jpa-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-spring-data-jpa
- 3.7.3
+ 3.7.4
io.quarkus
@@ -6986,32 +6986,32 @@
io.quarkus
quarkus-spring-data-rest-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-spring-data-rest
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-spring-di-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-spring-di
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-spring-scheduled-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-spring-scheduled
- 3.7.3
+ 3.7.4
io.quarkus
@@ -7021,12 +7021,12 @@
io.quarkus
quarkus-spring-security-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-spring-security
- 3.7.3
+ 3.7.4
io.quarkus
@@ -7036,37 +7036,37 @@
io.quarkus
quarkus-spring-web-common
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-spring-web-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-spring-web-resteasy-classic-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-spring-web-resteasy-classic
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-spring-web-resteasy-reactive-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-spring-web-resteasy-reactive
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-spring-web
- 3.7.3
+ 3.7.4
io.quarkus
@@ -7076,227 +7076,227 @@
io.quarkus
quarkus-swagger-ui-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-swagger-ui
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-test-amazon-lambda
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-test-common
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-test-derby
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-test-google-cloud-functions
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-test-h2
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-test-hibernate-reactive-panache
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-test-kafka-companion
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-test-keycloak-server
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-test-kubernetes-client
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-test-ldap
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-test-mongodb
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-test-oidc-server
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-test-openshift-client
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-test-security-jwt
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-test-security-oidc
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-test-security-webauthn
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-test-security
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-test-vertx
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-transaction-annotations
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-undertow-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-undertow-spi
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-undertow
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-vertx-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-vertx-graphql-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-vertx-graphql
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-vertx-http-deployment-spi
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-vertx-http-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-vertx-http-dev-console-runtime-spi
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-vertx-http-dev-console-spi
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-vertx-http-dev-ui-resources
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-vertx-http-dev-ui-spi
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-vertx-http-dev-ui-tests
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-vertx-http
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-vertx-latebound-mdc-provider
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-vertx
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-virtual-threads-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-virtual-threads
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-webjars-locator-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-webjars-locator
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-websockets-client-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-websockets-client
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-websockets-deployment
- 3.7.3
+ 3.7.4
io.quarkus
quarkus-websockets
- 3.7.3
+ 3.7.4
io.reactivex.rxjava2
@@ -7379,7 +7379,7 @@
io.smallrye.beanbag
smallrye-beanbag-maven
- 1.3.2
+ 1.4.0
org.slf4j
@@ -9378,7 +9378,7 @@
org.apache.commons
commons-compress
- 1.25.0
+ 1.26.0
org.apache.commons
diff --git a/generated-platform-project/quarkus/descriptor/src/main/resources/overrides.json b/generated-platform-project/quarkus/descriptor/src/main/resources/overrides.json
index f50bf325f1..1bf4c7b4d8 100644
--- a/generated-platform-project/quarkus/descriptor/src/main/resources/overrides.json
+++ b/generated-platform-project/quarkus/descriptor/src/main/resources/overrides.json
@@ -1,6 +1,6 @@
{
"metadata" : {
- "codestarts-artifacts" : [ "io.quarkus:quarkus-project-core-extension-codestarts::jar:3.7.3" ],
+ "codestarts-artifacts" : [ "io.quarkus:quarkus-project-core-extension-codestarts::jar:3.7.4" ],
"project" : {
"default-codestart" : "resteasy-reactive",
"properties" : {
@@ -11,12 +11,12 @@
"kotlin-version" : "1.9.22",
"scala-version" : "2.13.12",
"scala-plugin-version" : "4.8.1",
- "quarkus-core-version" : "3.7.3",
+ "quarkus-core-version" : "3.7.4",
"maven-plugin-groupId" : "${project.groupId}",
"maven-plugin-artifactId" : "quarkus-maven-plugin",
"maven-plugin-version" : "${project.version}",
"gradle-plugin-id" : "io.quarkus",
- "gradle-plugin-version" : "3.7.3",
+ "gradle-plugin-version" : "3.7.4",
"supported-maven-versions" : "[3.8.2,)",
"proposed-maven-version" : "3.9.6",
"maven-wrapper-version" : "3.2.0",
diff --git a/pom.xml b/pom.xml
index eb5f09fb71..4f2b18efd5 100644
--- a/pom.xml
+++ b/pom.xml
@@ -55,7 +55,7 @@
${env.GRAALVM_HOME}
jdbc:postgresql:hibernate_orm_test
- 3.7.3
+ 3.7.4
${quarkus.version}
3.7.0