diff --git a/amazon-dynamodb-quickstart/pom.xml b/amazon-dynamodb-quickstart/pom.xml index 2a40ac350d..1a396f27b8 100644 --- a/amazon-dynamodb-quickstart/pom.xml +++ b/amazon-dynamodb-quickstart/pom.xml @@ -10,8 +10,8 @@ quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.1.2 UTF-8 17 diff --git a/amazon-kms-quickstart/pom.xml b/amazon-kms-quickstart/pom.xml index 646cf316c6..5d8225d141 100644 --- a/amazon-kms-quickstart/pom.xml +++ b/amazon-kms-quickstart/pom.xml @@ -10,8 +10,8 @@ quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.1.2 UTF-8 17 diff --git a/amazon-s3-quickstart/pom.xml b/amazon-s3-quickstart/pom.xml index dc4f321a3c..f263ff5671 100644 --- a/amazon-s3-quickstart/pom.xml +++ b/amazon-s3-quickstart/pom.xml @@ -10,8 +10,8 @@ quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.1.2 UTF-8 17 diff --git a/amazon-ses-quickstart/pom.xml b/amazon-ses-quickstart/pom.xml index 29664eddb4..e59baef969 100644 --- a/amazon-ses-quickstart/pom.xml +++ b/amazon-ses-quickstart/pom.xml @@ -10,8 +10,8 @@ quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.1.2 UTF-8 17 diff --git a/amazon-sns-quickstart/pom.xml b/amazon-sns-quickstart/pom.xml index d656954640..6112239c13 100644 --- a/amazon-sns-quickstart/pom.xml +++ b/amazon-sns-quickstart/pom.xml @@ -10,8 +10,8 @@ quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.1.2 UTF-8 17 diff --git a/amazon-sqs-connector-quickstart/pom.xml b/amazon-sqs-connector-quickstart/pom.xml index 8e9bf44179..bd5a6f8d64 100644 --- a/amazon-sqs-connector-quickstart/pom.xml +++ b/amazon-sqs-connector-quickstart/pom.xml @@ -7,8 +7,8 @@ 1.0.0-SNAPSHOT quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.1.2 UTF-8 17 diff --git a/amazon-sqs-connector-quickstart/src/main/docker/Dockerfile.jvm b/amazon-sqs-connector-quickstart/src/main/docker/Dockerfile.jvm index 986bd5bbf4..4c509c12f6 100644 --- a/amazon-sqs-connector-quickstart/src/main/docker/Dockerfile.jvm +++ b/amazon-sqs-connector-quickstart/src/main/docker/Dockerfile.jvm @@ -7,49 +7,91 @@ # # Then, build the image with: # -# docker build -f src/main/docker/Dockerfile.jvm -t quarkus/sqs-connector-quickstart-processor-jvm . +# docker build -f src/main/docker/Dockerfile.jvm -t quarkus/amazon-sqs-connector-quickstart-jvm . # # Then run the container using: # -# docker run -i --rm -p 8080:8080 quarkus/sqs-connector-quickstart-processor-jvm +# docker run -i --rm -p 8080:8080 quarkus/amazon-sqs-connector-quickstart-jvm # # If you want to include the debug port into your docker image -# you will have to expose the debug port (default 5005) like this : EXPOSE 8080 5005 +# you will have to expose the debug port (default 5005 being the default) like this : EXPOSE 8080 5005. +# Additionally you will have to set -e JAVA_DEBUG=true and -e JAVA_DEBUG_PORT=*:5005 +# when running the container # # Then run the container using : # -# docker run -i --rm -p 8080:8080 -p 5005:5005 -e JAVA_ENABLE_DEBUG="true" quarkus/sqs-connector-quickstart-processor-jvm +# docker run -i --rm -p 8080:8080 quarkus/amazon-sqs-connector-quickstart-jvm +# +# This image uses the `run-java.sh` script to run the application. +# This scripts computes the command line to execute your Java application, and +# includes memory/GC tuning. +# You can configure the behavior using the following environment properties: +# - JAVA_OPTS: JVM options passed to the `java` command (example: "-verbose:class") +# - JAVA_OPTS_APPEND: User specified Java options to be appended to generated options +# in JAVA_OPTS (example: "-Dsome.property=foo") +# - JAVA_MAX_MEM_RATIO: Is used when no `-Xmx` option is given in JAVA_OPTS. This is +# used to calculate a default maximal heap memory based on a containers restriction. +# If used in a container without any memory constraints for the container then this +# option has no effect. If there is a memory constraint then `-Xmx` is set to a ratio +# of the container available memory as set here. The default is `50` which means 50% +# of the available memory is used as an upper boundary. You can skip this mechanism by +# setting this value to `0` in which case no `-Xmx` option is added. +# - JAVA_INITIAL_MEM_RATIO: Is used when no `-Xms` option is given in JAVA_OPTS. This +# is used to calculate a default initial heap memory based on the maximum heap memory. +# If used in a container without any memory constraints for the container then this +# option has no effect. If there is a memory constraint then `-Xms` is set to a ratio +# of the `-Xmx` memory as set here. The default is `25` which means 25% of the `-Xmx` +# is used as the initial heap size. You can skip this mechanism by setting this value +# to `0` in which case no `-Xms` option is added (example: "25") +# - JAVA_MAX_INITIAL_MEM: Is used when no `-Xms` option is given in JAVA_OPTS. +# This is used to calculate the maximum value of the initial heap memory. If used in +# a container without any memory constraints for the container then this option has +# no effect. If there is a memory constraint then `-Xms` is limited to the value set +# here. The default is 4096MB which means the calculated value of `-Xms` never will +# be greater than 4096MB. The value of this variable is expressed in MB (example: "4096") +# - JAVA_DIAGNOSTICS: Set this to get some diagnostics information to standard output +# when things are happening. This option, if set to true, will set +# `-XX:+UnlockDiagnosticVMOptions`. Disabled by default (example: "true"). +# - JAVA_DEBUG: If set remote debugging will be switched on. Disabled by default (example: +# true"). +# - JAVA_DEBUG_PORT: Port used for remote debugging. Defaults to 5005 (example: "8787"). +# - CONTAINER_CORE_LIMIT: A calculated core limit as described in +# https://www.kernel.org/doc/Documentation/scheduler/sched-bwc.txt. (example: "2") +# - CONTAINER_MAX_MEMORY: Memory limit given to the container (example: "1024"). +# - GC_MIN_HEAP_FREE_RATIO: Minimum percentage of heap free after GC to avoid expansion. +# (example: "20") +# - GC_MAX_HEAP_FREE_RATIO: Maximum percentage of heap free after GC to avoid shrinking. +# (example: "40") +# - GC_TIME_RATIO: Specifies the ratio of the time spent outside the garbage collection. +# (example: "4") +# - GC_ADAPTIVE_SIZE_POLICY_WEIGHT: The weighting given to the current GC time versus +# previous GC times. (example: "90") +# - GC_METASPACE_SIZE: The initial metaspace size. (example: "20") +# - GC_MAX_METASPACE_SIZE: The maximum metaspace size. (example: "100") +# - GC_CONTAINER_OPTIONS: Specify Java GC to use. The value of this variable should +# contain the necessary JRE command-line options to specify the required GC, which +# will override the default of `-XX:+UseParallelGC` (example: -XX:+UseG1GC). +# - HTTPS_PROXY: The location of the https proxy. (example: "myuser@127.0.0.1:8080") +# - HTTP_PROXY: The location of the http proxy. (example: "myuser@127.0.0.1:8080") +# - NO_PROXY: A comma separated lists of hosts, IP addresses or domains that can be +# accessed directly. (example: "foo.example.com,bar.example.com") # ### -FROM registry.access.redhat.com/ubi8/ubi-minimal:8.4 +FROM registry.access.redhat.com/ubi8/openjdk-17:1.19 + +ENV LANGUAGE='en_US:en' -ARG JAVA_PACKAGE=java-17-openjdk-headless -ARG RUN_JAVA_VERSION=1.3.8 -ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en' -# Install java and the run-java script -# Also set up permissions for user `1001` -RUN microdnf install curl ca-certificates ${JAVA_PACKAGE} \ - && microdnf update \ - && microdnf clean all \ - && mkdir /deployments \ - && chown 1001 /deployments \ - && chmod "g+rwX" /deployments \ - && chown 1001:root /deployments \ - && curl https://repo1.maven.org/maven2/io/fabric8/run-java-sh/${RUN_JAVA_VERSION}/run-java-sh-${RUN_JAVA_VERSION}-sh.sh -o /deployments/run-java.sh \ - && chown 1001 /deployments/run-java.sh \ - && chmod 540 /deployments/run-java.sh \ - && echo "securerandom.source=file:/dev/urandom" >> /etc/alternatives/jre/conf/security/java.security -# Configure the JAVA_OPTIONS, you can add -XshowSettings:vm to also display the heap size. -ENV JAVA_OPTIONS="-Dquarkus.http.host=0.0.0.0 -Djava.util.logging.manager=org.jboss.logmanager.LogManager" # We make four distinct layers so if there are application changes the library layers can be re-used -COPY --chown=1001 target/quarkus-app/lib/ /deployments/lib/ -COPY --chown=1001 target/quarkus-app/*.jar /deployments/ -COPY --chown=1001 target/quarkus-app/app/ /deployments/app/ -COPY --chown=1001 target/quarkus-app/quarkus/ /deployments/quarkus/ +COPY --chown=185 target/quarkus-app/lib/ /deployments/lib/ +COPY --chown=185 target/quarkus-app/*.jar /deployments/ +COPY --chown=185 target/quarkus-app/app/ /deployments/app/ +COPY --chown=185 target/quarkus-app/quarkus/ /deployments/quarkus/ EXPOSE 8080 -USER 1001 +USER 185 +ENV JAVA_OPTS_APPEND="-Dquarkus.http.host=0.0.0.0 -Djava.util.logging.manager=org.jboss.logmanager.LogManager" +ENV JAVA_APP_JAR="/deployments/quarkus-run.jar" -ENTRYPOINT [ "/deployments/run-java.sh" ] +ENTRYPOINT [ "/opt/jboss/container/java/run/run-java.sh" ] diff --git a/amazon-sqs-connector-quickstart/src/main/docker/Dockerfile.legacy-jar b/amazon-sqs-connector-quickstart/src/main/docker/Dockerfile.legacy-jar index 42d51bb743..7b452707e7 100644 --- a/amazon-sqs-connector-quickstart/src/main/docker/Dockerfile.legacy-jar +++ b/amazon-sqs-connector-quickstart/src/main/docker/Dockerfile.legacy-jar @@ -3,49 +3,91 @@ # # Before building the container image run: # -# ./mvnw package -Dquarkus.package.type=legacy-jar +# ./mvnw package -Dquarkus.package.jar.type=legacy-jar # # Then, build the image with: # -# docker build -f src/main/docker/Dockerfile.legacy-jar -t quarkus/sqs-connector-quickstart-processor-legacy-jar . +# docker build -f src/main/docker/Dockerfile.legacy-jar -t quarkus/amazon-sqs-connector-quickstart-legacy-jar . # # Then run the container using: # -# docker run -i --rm -p 8080:8080 quarkus/sqs-connector-quickstart-processor-legacy-jar +# docker run -i --rm -p 8080:8080 quarkus/amazon-sqs-connector-quickstart-legacy-jar # # If you want to include the debug port into your docker image -# you will have to expose the debug port (default 5005) like this : EXPOSE 8080 5005 +# you will have to expose the debug port (default 5005 being the default) like this : EXPOSE 8080 5005. +# Additionally you will have to set -e JAVA_DEBUG=true and -e JAVA_DEBUG_PORT=*:5005 +# when running the container # # Then run the container using : # -# docker run -i --rm -p 8080:8080 -p 5005:5005 -e JAVA_ENABLE_DEBUG="true" quarkus/sqs-connector-quickstart-processor-legacy-jar +# docker run -i --rm -p 8080:8080 quarkus/amazon-sqs-connector-quickstart-legacy-jar +# +# This image uses the `run-java.sh` script to run the application. +# This scripts computes the command line to execute your Java application, and +# includes memory/GC tuning. +# You can configure the behavior using the following environment properties: +# - JAVA_OPTS: JVM options passed to the `java` command (example: "-verbose:class") +# - JAVA_OPTS_APPEND: User specified Java options to be appended to generated options +# in JAVA_OPTS (example: "-Dsome.property=foo") +# - JAVA_MAX_MEM_RATIO: Is used when no `-Xmx` option is given in JAVA_OPTS. This is +# used to calculate a default maximal heap memory based on a containers restriction. +# If used in a container without any memory constraints for the container then this +# option has no effect. If there is a memory constraint then `-Xmx` is set to a ratio +# of the container available memory as set here. The default is `50` which means 50% +# of the available memory is used as an upper boundary. You can skip this mechanism by +# setting this value to `0` in which case no `-Xmx` option is added. +# - JAVA_INITIAL_MEM_RATIO: Is used when no `-Xms` option is given in JAVA_OPTS. This +# is used to calculate a default initial heap memory based on the maximum heap memory. +# If used in a container without any memory constraints for the container then this +# option has no effect. If there is a memory constraint then `-Xms` is set to a ratio +# of the `-Xmx` memory as set here. The default is `25` which means 25% of the `-Xmx` +# is used as the initial heap size. You can skip this mechanism by setting this value +# to `0` in which case no `-Xms` option is added (example: "25") +# - JAVA_MAX_INITIAL_MEM: Is used when no `-Xms` option is given in JAVA_OPTS. +# This is used to calculate the maximum value of the initial heap memory. If used in +# a container without any memory constraints for the container then this option has +# no effect. If there is a memory constraint then `-Xms` is limited to the value set +# here. The default is 4096MB which means the calculated value of `-Xms` never will +# be greater than 4096MB. The value of this variable is expressed in MB (example: "4096") +# - JAVA_DIAGNOSTICS: Set this to get some diagnostics information to standard output +# when things are happening. This option, if set to true, will set +# `-XX:+UnlockDiagnosticVMOptions`. Disabled by default (example: "true"). +# - JAVA_DEBUG: If set remote debugging will be switched on. Disabled by default (example: +# true"). +# - JAVA_DEBUG_PORT: Port used for remote debugging. Defaults to 5005 (example: "8787"). +# - CONTAINER_CORE_LIMIT: A calculated core limit as described in +# https://www.kernel.org/doc/Documentation/scheduler/sched-bwc.txt. (example: "2") +# - CONTAINER_MAX_MEMORY: Memory limit given to the container (example: "1024"). +# - GC_MIN_HEAP_FREE_RATIO: Minimum percentage of heap free after GC to avoid expansion. +# (example: "20") +# - GC_MAX_HEAP_FREE_RATIO: Maximum percentage of heap free after GC to avoid shrinking. +# (example: "40") +# - GC_TIME_RATIO: Specifies the ratio of the time spent outside the garbage collection. +# (example: "4") +# - GC_ADAPTIVE_SIZE_POLICY_WEIGHT: The weighting given to the current GC time versus +# previous GC times. (example: "90") +# - GC_METASPACE_SIZE: The initial metaspace size. (example: "20") +# - GC_MAX_METASPACE_SIZE: The maximum metaspace size. (example: "100") +# - GC_CONTAINER_OPTIONS: Specify Java GC to use. The value of this variable should +# contain the necessary JRE command-line options to specify the required GC, which +# will override the default of `-XX:+UseParallelGC` (example: -XX:+UseG1GC). +# - HTTPS_PROXY: The location of the https proxy. (example: "myuser@127.0.0.1:8080") +# - HTTP_PROXY: The location of the http proxy. (example: "myuser@127.0.0.1:8080") +# - NO_PROXY: A comma separated lists of hosts, IP addresses or domains that can be +# accessed directly. (example: "foo.example.com,bar.example.com") # ### -FROM registry.access.redhat.com/ubi8/ubi-minimal:8.4 +FROM registry.access.redhat.com/ubi8/openjdk-17:1.19 + +ENV LANGUAGE='en_US:en' -ARG JAVA_PACKAGE=java-17-openjdk-headless -ARG RUN_JAVA_VERSION=1.3.8 -ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en' -# Install java and the run-java script -# Also set up permissions for user `1001` -RUN microdnf install curl ca-certificates ${JAVA_PACKAGE} \ - && microdnf update \ - && microdnf clean all \ - && mkdir /deployments \ - && chown 1001 /deployments \ - && chmod "g+rwX" /deployments \ - && chown 1001:root /deployments \ - && curl https://repo1.maven.org/maven2/io/fabric8/run-java-sh/${RUN_JAVA_VERSION}/run-java-sh-${RUN_JAVA_VERSION}-sh.sh -o /deployments/run-java.sh \ - && chown 1001 /deployments/run-java.sh \ - && chmod 540 /deployments/run-java.sh \ - && echo "securerandom.source=file:/dev/urandom" >> /etc/alternatives/jre/conf/security/java.security -# Configure the JAVA_OPTIONS, you can add -XshowSettings:vm to also display the heap size. -ENV JAVA_OPTIONS="-Dquarkus.http.host=0.0.0.0 -Djava.util.logging.manager=org.jboss.logmanager.LogManager" COPY target/lib/* /deployments/lib/ -COPY target/*-runner.jar /deployments/app.jar +COPY target/*-runner.jar /deployments/quarkus-run.jar EXPOSE 8080 -USER 1001 +USER 185 +ENV JAVA_OPTS_APPEND="-Dquarkus.http.host=0.0.0.0 -Djava.util.logging.manager=org.jboss.logmanager.LogManager" +ENV JAVA_APP_JAR="/deployments/quarkus-run.jar" -ENTRYPOINT [ "/deployments/run-java.sh" ] +ENTRYPOINT [ "/opt/jboss/container/java/run/run-java.sh" ] diff --git a/amazon-sqs-connector-quickstart/src/main/docker/Dockerfile.native b/amazon-sqs-connector-quickstart/src/main/docker/Dockerfile.native index 629b47d06d..567afdb175 100644 --- a/amazon-sqs-connector-quickstart/src/main/docker/Dockerfile.native +++ b/amazon-sqs-connector-quickstart/src/main/docker/Dockerfile.native @@ -1,20 +1,20 @@ #### -# This Dockerfile is used in order to build a container that runs the Quarkus application in native (no JVM) mode +# This Dockerfile is used in order to build a container that runs the Quarkus application in native (no JVM) mode. # # Before building the container image run: # -# ./mvnw package -Pnative +# ./mvnw package -Dnative # # Then, build the image with: # -# docker build -f src/main/docker/Dockerfile.native -t quarkus/sqs-connector-quickstart-processor . +# docker build -f src/main/docker/Dockerfile.native -t quarkus/amazon-sqs-connector-quickstart . # # Then run the container using: # -# docker run -i --rm -p 8080:8080 quarkus/sqs-connector-quickstart-processor +# docker run -i --rm -p 8080:8080 quarkus/amazon-sqs-connector-quickstart # ### -FROM registry.access.redhat.com/ubi8/ubi-minimal:8.4 +FROM registry.access.redhat.com/ubi8/ubi-minimal:8.9 WORKDIR /work/ RUN chown 1001 /work \ && chmod "g+rwX" /work \ @@ -24,4 +24,4 @@ COPY --chown=1001:root target/*-runner /work/application EXPOSE 8080 USER 1001 -CMD ["./application", "-Dquarkus.http.host=0.0.0.0"] +ENTRYPOINT ["./application", "-Dquarkus.http.host=0.0.0.0"] diff --git a/amazon-sqs-connector-quickstart/src/main/docker/Dockerfile.native-micro b/amazon-sqs-connector-quickstart/src/main/docker/Dockerfile.native-micro index 1d690af4a9..92821f6dae 100644 --- a/amazon-sqs-connector-quickstart/src/main/docker/Dockerfile.native-micro +++ b/amazon-sqs-connector-quickstart/src/main/docker/Dockerfile.native-micro @@ -1,23 +1,30 @@ #### -# This Dockerfile is used in order to build a distroless container that runs the Quarkus application in native (no JVM) mode +# This Dockerfile is used in order to build a container that runs the Quarkus application in native (no JVM) mode. +# It uses a micro base image, tuned for Quarkus native executables. +# It reduces the size of the resulting container image. +# Check https://quarkus.io/guides/quarkus-runtime-base-image for further information about this image. # # Before building the container image run: # -# ./mvnw package -Pnative +# ./mvnw package -Dnative # # Then, build the image with: # -# docker build -f src/main/docker/Dockerfile.native-micro -t quarkus/sqs-connector-quickstart-processor . +# docker build -f src/main/docker/Dockerfile.native-micro -t quarkus/amazon-sqs-connector-quickstart . # # Then run the container using: # -# docker run -i --rm -p 8080:8080 quarkus/sqs-connector-quickstart-processor +# docker run -i --rm -p 8080:8080 quarkus/amazon-sqs-connector-quickstart # ### -FROM quay.io/quarkus/quarkus-micro-image:1.0 -COPY target/*-runner /application +FROM quay.io/quarkus/quarkus-micro-image:2.0 +WORKDIR /work/ +RUN chown 1001 /work \ + && chmod "g+rwX" /work \ + && chown 1001:root /work +COPY --chown=1001:root target/*-runner /work/application EXPOSE 8080 USER 1001 -CMD ["./application", "-Dquarkus.http.host=0.0.0.0"] +ENTRYPOINT ["./application", "-Dquarkus.http.host=0.0.0.0"] diff --git a/amazon-sqs-quickstart/pom.xml b/amazon-sqs-quickstart/pom.xml index 26d7596ac7..d9d9d00ac7 100644 --- a/amazon-sqs-quickstart/pom.xml +++ b/amazon-sqs-quickstart/pom.xml @@ -10,8 +10,8 @@ quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.1.2 UTF-8 17 diff --git a/amazon-ssm-quickstart/pom.xml b/amazon-ssm-quickstart/pom.xml index 1767e9ca2c..c7ae46704c 100644 --- a/amazon-ssm-quickstart/pom.xml +++ b/amazon-ssm-quickstart/pom.xml @@ -10,8 +10,8 @@ quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.1.2 UTF-8 17 diff --git a/amqp-quickstart/amqp-quickstart-processor/pom.xml b/amqp-quickstart/amqp-quickstart-processor/pom.xml index e5cb4ac55c..1981791c27 100644 --- a/amqp-quickstart/amqp-quickstart-processor/pom.xml +++ b/amqp-quickstart/amqp-quickstart-processor/pom.xml @@ -13,8 +13,8 @@ UTF-8 UTF-8 quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.1.2 diff --git a/amqp-quickstart/amqp-quickstart-producer/pom.xml b/amqp-quickstart/amqp-quickstart-producer/pom.xml index fa903a196d..6cb52f69d3 100644 --- a/amqp-quickstart/amqp-quickstart-producer/pom.xml +++ b/amqp-quickstart/amqp-quickstart-producer/pom.xml @@ -13,8 +13,8 @@ UTF-8 UTF-8 quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.1.2 diff --git a/awt-graphics-rest-quickstart/pom.xml b/awt-graphics-rest-quickstart/pom.xml index d2ff10d8c8..242448a786 100644 --- a/awt-graphics-rest-quickstart/pom.xml +++ b/awt-graphics-rest-quickstart/pom.xml @@ -9,8 +9,8 @@ 1.0.0-SNAPSHOT quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.11.0 3.1.2 UTF-8 diff --git a/cache-quickstart/pom.xml b/cache-quickstart/pom.xml index 4c01e739ce..d1d4d8d6a0 100644 --- a/cache-quickstart/pom.xml +++ b/cache-quickstart/pom.xml @@ -13,8 +13,8 @@ UTF-8 UTF-8 quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.1.2 diff --git a/cache-quickstart/src/main/resources/META-INF/resources/index.html b/cache-quickstart/src/main/resources/META-INF/resources/index.html index 399d68f476..37aaa93199 100644 --- a/cache-quickstart/src/main/resources/META-INF/resources/index.html +++ b/cache-quickstart/src/main/resources/META-INF/resources/index.html @@ -133,7 +133,7 @@

Application

  • GroupId: org.acme
  • ArtifactId: cache-quickstart
  • Version: 1.0.0-SNAPSHOT
  • -
  • Quarkus Version: 999-SNAPSHOT
  • +
  • Quarkus Version: 3.12.0.CR1
  • diff --git a/config-quickstart/pom.xml b/config-quickstart/pom.xml index 59b5b463dc..5b0986ab94 100644 --- a/config-quickstart/pom.xml +++ b/config-quickstart/pom.xml @@ -7,8 +7,8 @@ 1.0.0-SNAPSHOT quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.1.2 UTF-8 17 diff --git a/context-propagation-quickstart/pom.xml b/context-propagation-quickstart/pom.xml index 1f79d6c3ab..b363fca545 100644 --- a/context-propagation-quickstart/pom.xml +++ b/context-propagation-quickstart/pom.xml @@ -10,8 +10,8 @@ 3.1.2 quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 17 UTF-8 17 diff --git a/elasticsearch-quickstart/pom.xml b/elasticsearch-quickstart/pom.xml index 1f319e1887..ffe0fbebf1 100644 --- a/elasticsearch-quickstart/pom.xml +++ b/elasticsearch-quickstart/pom.xml @@ -11,8 +11,8 @@ UTF-8 UTF-8 quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 true 3.1.2 diff --git a/funqy-quickstarts/funqy-amazon-lambda-http-quickstart/pom.xml b/funqy-quickstarts/funqy-amazon-lambda-http-quickstart/pom.xml index 238d01738e..432ef38e72 100644 --- a/funqy-quickstarts/funqy-amazon-lambda-http-quickstart/pom.xml +++ b/funqy-quickstarts/funqy-amazon-lambda-http-quickstart/pom.xml @@ -9,8 +9,8 @@ 1.0.0-SNAPSHOT quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.11.0 3.1.2 UTF-8 diff --git a/funqy-quickstarts/funqy-amazon-lambda-quickstart/pom.xml b/funqy-quickstarts/funqy-amazon-lambda-quickstart/pom.xml index d9c524243b..c727bc3332 100644 --- a/funqy-quickstarts/funqy-amazon-lambda-quickstart/pom.xml +++ b/funqy-quickstarts/funqy-amazon-lambda-quickstart/pom.xml @@ -9,8 +9,8 @@ 1.0.0-SNAPSHOT quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.11.0 3.1.2 UTF-8 diff --git a/funqy-quickstarts/funqy-google-cloud-functions-http-quickstart/pom.xml b/funqy-quickstarts/funqy-google-cloud-functions-http-quickstart/pom.xml index 7f7a613817..1f0ece38da 100644 --- a/funqy-quickstarts/funqy-google-cloud-functions-http-quickstart/pom.xml +++ b/funqy-quickstarts/funqy-google-cloud-functions-http-quickstart/pom.xml @@ -9,8 +9,8 @@ 1.0.0-SNAPSHOT quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.11.0 3.1.2 UTF-8 diff --git a/funqy-quickstarts/funqy-google-cloud-functions-quickstart/pom.xml b/funqy-quickstarts/funqy-google-cloud-functions-quickstart/pom.xml index a0c4d0e939..09bbc31bc9 100644 --- a/funqy-quickstarts/funqy-google-cloud-functions-quickstart/pom.xml +++ b/funqy-quickstarts/funqy-google-cloud-functions-quickstart/pom.xml @@ -13,8 +13,8 @@ UTF-8 UTF-8 quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.1.2 diff --git a/funqy-quickstarts/funqy-http-quickstart/pom.xml b/funqy-quickstarts/funqy-http-quickstart/pom.xml index 9be1bec995..c0995c0204 100644 --- a/funqy-quickstarts/funqy-http-quickstart/pom.xml +++ b/funqy-quickstarts/funqy-http-quickstart/pom.xml @@ -9,8 +9,8 @@ 1.0.0-SNAPSHOT quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.11.0 3.1.2 UTF-8 diff --git a/funqy-quickstarts/funqy-knative-events-quickstart/pom.xml b/funqy-quickstarts/funqy-knative-events-quickstart/pom.xml index a7e797c59b..dfc96b22d4 100644 --- a/funqy-quickstarts/funqy-knative-events-quickstart/pom.xml +++ b/funqy-quickstarts/funqy-knative-events-quickstart/pom.xml @@ -9,8 +9,8 @@ 1.0.0-SNAPSHOT quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.11.0 3.1.2 UTF-8 diff --git a/getting-started-async/pom.xml b/getting-started-async/pom.xml index fbfd69a045..94d4a49d3f 100644 --- a/getting-started-async/pom.xml +++ b/getting-started-async/pom.xml @@ -8,8 +8,8 @@ quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.11.0 3.1.2 UTF-8 diff --git a/getting-started-command-mode/pom.xml b/getting-started-command-mode/pom.xml index f133752f22..34b483485a 100644 --- a/getting-started-command-mode/pom.xml +++ b/getting-started-command-mode/pom.xml @@ -8,8 +8,8 @@ quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.11.0 3.1.2 UTF-8 diff --git a/getting-started-dev-services/pom.xml b/getting-started-dev-services/pom.xml index 1c5cdd3496..ba47f5a0a7 100644 --- a/getting-started-dev-services/pom.xml +++ b/getting-started-dev-services/pom.xml @@ -7,8 +7,8 @@ 1.0.0-SNAPSHOT quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.8.1 3.0.0-M7 UTF-8 diff --git a/getting-started-dev-services/src/main/resources/META-INF/resources/index.html b/getting-started-dev-services/src/main/resources/META-INF/resources/index.html index 8fe99f6952..424a957aa0 100644 --- a/getting-started-dev-services/src/main/resources/META-INF/resources/index.html +++ b/getting-started-dev-services/src/main/resources/META-INF/resources/index.html @@ -238,7 +238,7 @@
    Application
  • GroupId: org.acme
  • ArtifactId: code-with-quarkus
  • Version: 1.0.0-SNAPSHOT
  • -
  • Quarkus Version: 3.1.2.Final
  • +
  • Quarkus Version: 3.12.0.CR1
  • diff --git a/getting-started-knative/pom.xml b/getting-started-knative/pom.xml index a342fb1b0f..d2e8059b6d 100644 --- a/getting-started-knative/pom.xml +++ b/getting-started-knative/pom.xml @@ -13,8 +13,8 @@ 17 UTF-8 quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.3.0 3.1.2
    diff --git a/getting-started-reactive-crud/pom.xml b/getting-started-reactive-crud/pom.xml index 1158762bc2..d22e55b0fb 100644 --- a/getting-started-reactive-crud/pom.xml +++ b/getting-started-reactive-crud/pom.xml @@ -10,8 +10,8 @@ quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.11.0 3.1.2 0.28.0 diff --git a/getting-started-reactive/pom.xml b/getting-started-reactive/pom.xml index 70b6781b82..6649b6e37e 100644 --- a/getting-started-reactive/pom.xml +++ b/getting-started-reactive/pom.xml @@ -8,8 +8,8 @@ quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.11.0 3.1.2 UTF-8 diff --git a/getting-started-reactive/src/main/resources/META-INF/resources/index.html b/getting-started-reactive/src/main/resources/META-INF/resources/index.html index 2f1551a072..5e53ae0bad 100644 --- a/getting-started-reactive/src/main/resources/META-INF/resources/index.html +++ b/getting-started-reactive/src/main/resources/META-INF/resources/index.html @@ -133,7 +133,7 @@

    Application

  • GroupId: org.acme
  • ArtifactId: getting-started
  • Version: 1.0.0-SNAPSHOT
  • -
  • Quarkus Version: 0.11.0
  • +
  • Quarkus Version: 3.12.0.CR1
  • diff --git a/getting-started-testing/pom.xml b/getting-started-testing/pom.xml index 6f1d0d4ce1..662006ea9a 100644 --- a/getting-started-testing/pom.xml +++ b/getting-started-testing/pom.xml @@ -8,8 +8,8 @@ quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.11.0 3.1.2 UTF-8 diff --git a/getting-started/pom.xml b/getting-started/pom.xml index 1f9a4daa77..21983c7b32 100644 --- a/getting-started/pom.xml +++ b/getting-started/pom.xml @@ -8,8 +8,8 @@ quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.11.0 3.1.2 UTF-8 diff --git a/google-cloud-functions-http-quickstart/pom.xml b/google-cloud-functions-http-quickstart/pom.xml index f58faf93df..b963b4f1ff 100644 --- a/google-cloud-functions-http-quickstart/pom.xml +++ b/google-cloud-functions-http-quickstart/pom.xml @@ -13,8 +13,8 @@ UTF-8 UTF-8 quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.1.2 diff --git a/google-cloud-functions-http-quickstart/src/main/resources/META-INF/resources/index.html b/google-cloud-functions-http-quickstart/src/main/resources/META-INF/resources/index.html index 122bbdcee1..3ef315f814 100755 --- a/google-cloud-functions-http-quickstart/src/main/resources/META-INF/resources/index.html +++ b/google-cloud-functions-http-quickstart/src/main/resources/META-INF/resources/index.html @@ -136,7 +136,7 @@

    Application

  • GroupId: org.acme
  • ArtifactId: google-cloud-functions-http
  • Version: 1.0.0-SNAPSHOT
  • -
  • Quarkus Version: 1.6.1.Final
  • +
  • Quarkus Version: 3.12.0.CR1
  • diff --git a/google-cloud-functions-quickstart/pom.xml b/google-cloud-functions-quickstart/pom.xml index c42be2bb9f..7f89ce461d 100644 --- a/google-cloud-functions-quickstart/pom.xml +++ b/google-cloud-functions-quickstart/pom.xml @@ -13,8 +13,8 @@ UTF-8 UTF-8 quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.1.2 diff --git a/grpc-plain-text-quickstart/pom.xml b/grpc-plain-text-quickstart/pom.xml index 809d668cf2..601d6b0422 100644 --- a/grpc-plain-text-quickstart/pom.xml +++ b/grpc-plain-text-quickstart/pom.xml @@ -10,8 +10,8 @@ quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.1.2 3.11.0 3.22.0 diff --git a/grpc-tls-quickstart/pom.xml b/grpc-tls-quickstart/pom.xml index ebb8f2afae..6009ae7461 100644 --- a/grpc-tls-quickstart/pom.xml +++ b/grpc-tls-quickstart/pom.xml @@ -10,8 +10,8 @@ quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.1.2 3.11.0 3.22.0 diff --git a/hibernate-orm-multi-tenancy-quickstart/pom.xml b/hibernate-orm-multi-tenancy-quickstart/pom.xml index d01fb12b56..06a886e8f6 100644 --- a/hibernate-orm-multi-tenancy-quickstart/pom.xml +++ b/hibernate-orm-multi-tenancy-quickstart/pom.xml @@ -9,8 +9,8 @@ quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.1.2 3.11.0 0.28.0 diff --git a/hibernate-orm-panache-kotlin-quickstart/pom.xml b/hibernate-orm-panache-kotlin-quickstart/pom.xml index 1b0c1b7cc7..95fc0ca90d 100644 --- a/hibernate-orm-panache-kotlin-quickstart/pom.xml +++ b/hibernate-orm-panache-kotlin-quickstart/pom.xml @@ -9,8 +9,8 @@ quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.1.2 3.11.0 1.9.23 diff --git a/hibernate-orm-panache-quickstart/pom.xml b/hibernate-orm-panache-quickstart/pom.xml index 9bbd343807..beb5c37ea2 100644 --- a/hibernate-orm-panache-quickstart/pom.xml +++ b/hibernate-orm-panache-quickstart/pom.xml @@ -9,8 +9,8 @@ quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.1.2 3.11.0 UTF-8 diff --git a/hibernate-orm-quickstart/pom.xml b/hibernate-orm-quickstart/pom.xml index f3b7a47baa..cd688d4562 100644 --- a/hibernate-orm-quickstart/pom.xml +++ b/hibernate-orm-quickstart/pom.xml @@ -9,8 +9,8 @@ quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.1.2 3.11.0 UTF-8 diff --git a/hibernate-orm-rest-data-panache-quickstart/pom.xml b/hibernate-orm-rest-data-panache-quickstart/pom.xml index 49a31ec9e7..8b4742ac8d 100644 --- a/hibernate-orm-rest-data-panache-quickstart/pom.xml +++ b/hibernate-orm-rest-data-panache-quickstart/pom.xml @@ -9,8 +9,8 @@ quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.1.2 3.11.0 UTF-8 diff --git a/hibernate-orm-rest-data-panache-quickstart/src/main/resources/META-INF/resources/index.html b/hibernate-orm-rest-data-panache-quickstart/src/main/resources/META-INF/resources/index.html index 385aaad376..a0560878a9 100644 --- a/hibernate-orm-rest-data-panache-quickstart/src/main/resources/META-INF/resources/index.html +++ b/hibernate-orm-rest-data-panache-quickstart/src/main/resources/META-INF/resources/index.html @@ -133,7 +133,7 @@

    Application

  • GroupId: org.acme
  • ArtifactId: hibernate-orm-rest-data-panache
  • Version: 1.0.0-SNAPSHOT
  • -
  • Quarkus Version: 999-SNAPSHOT
  • +
  • Quarkus Version: 3.12.0.CR1
  • diff --git a/hibernate-reactive-panache-quickstart/pom.xml b/hibernate-reactive-panache-quickstart/pom.xml index 85f9e145da..f4e1081d76 100644 --- a/hibernate-reactive-panache-quickstart/pom.xml +++ b/hibernate-reactive-panache-quickstart/pom.xml @@ -9,8 +9,8 @@ quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.1.2 3.11.0 UTF-8 diff --git a/hibernate-reactive-quickstart/pom.xml b/hibernate-reactive-quickstart/pom.xml index 48ee93008e..27bda20c6f 100644 --- a/hibernate-reactive-quickstart/pom.xml +++ b/hibernate-reactive-quickstart/pom.xml @@ -9,8 +9,8 @@ quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.1.2 3.11.0 UTF-8 diff --git a/hibernate-reactive-routes-quickstart/pom.xml b/hibernate-reactive-routes-quickstart/pom.xml index 2519a25770..279e7552d5 100644 --- a/hibernate-reactive-routes-quickstart/pom.xml +++ b/hibernate-reactive-routes-quickstart/pom.xml @@ -9,8 +9,8 @@ quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.1.2 3.11.0 UTF-8 diff --git a/hibernate-reactive-stateless-quickstart/pom.xml b/hibernate-reactive-stateless-quickstart/pom.xml index 84f697a3d9..228265401f 100644 --- a/hibernate-reactive-stateless-quickstart/pom.xml +++ b/hibernate-reactive-stateless-quickstart/pom.xml @@ -9,8 +9,8 @@ quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.1.2 3.11.0 UTF-8 diff --git a/hibernate-search-orm-elasticsearch-quickstart/pom.xml b/hibernate-search-orm-elasticsearch-quickstart/pom.xml index a77626b0ca..d5d254baf3 100644 --- a/hibernate-search-orm-elasticsearch-quickstart/pom.xml +++ b/hibernate-search-orm-elasticsearch-quickstart/pom.xml @@ -8,8 +8,8 @@ quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.11.0 3.1.2 diff --git a/hibernate-search-standalone-elasticsearch-quickstart/pom.xml b/hibernate-search-standalone-elasticsearch-quickstart/pom.xml index 7587cfff2d..e72f9100d0 100644 --- a/hibernate-search-standalone-elasticsearch-quickstart/pom.xml +++ b/hibernate-search-standalone-elasticsearch-quickstart/pom.xml @@ -8,8 +8,8 @@ quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.11.0 3.1.2 diff --git a/infinispan-cache-quickstart/pom.xml b/infinispan-cache-quickstart/pom.xml index c30209d63c..592e17ca13 100644 --- a/infinispan-cache-quickstart/pom.xml +++ b/infinispan-cache-quickstart/pom.xml @@ -10,8 +10,8 @@ quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.1.2 UTF-8 17 diff --git a/infinispan-client-quickstart/pom.xml b/infinispan-client-quickstart/pom.xml index a24106ce57..6089d9a224 100644 --- a/infinispan-client-quickstart/pom.xml +++ b/infinispan-client-quickstart/pom.xml @@ -10,8 +10,8 @@ quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.1.2 UTF-8 17 diff --git a/jms-quickstart/pom.xml b/jms-quickstart/pom.xml index dcdbeaafaa..b6753e29a8 100644 --- a/jms-quickstart/pom.xml +++ b/jms-quickstart/pom.xml @@ -11,8 +11,8 @@ 17 3.1.2 quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 UTF-8 UTF-8 diff --git a/jta-quickstart/pom.xml b/jta-quickstart/pom.xml index 573c943ec2..876f293c13 100644 --- a/jta-quickstart/pom.xml +++ b/jta-quickstart/pom.xml @@ -8,8 +8,8 @@ quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.11.0 3.1.2 UTF-8 diff --git a/jta-quickstart/src/main/resources/META-INF/resources/index.html b/jta-quickstart/src/main/resources/META-INF/resources/index.html index 0186c59b93..09d67f16fa 100644 --- a/jta-quickstart/src/main/resources/META-INF/resources/index.html +++ b/jta-quickstart/src/main/resources/META-INF/resources/index.html @@ -133,7 +133,7 @@

    Application

  • GroupId: org.acme
  • ArtifactId: jta
  • Version: 1.0-SNAPSHOT
  • -
  • Quarkus Version: 999-SNAPSHOT
  • +
  • Quarkus Version: 3.12.0.CR1
  • diff --git a/kafka-avro-schema-quickstart/pom.xml b/kafka-avro-schema-quickstart/pom.xml index 9203e922b5..9614430341 100644 --- a/kafka-avro-schema-quickstart/pom.xml +++ b/kafka-avro-schema-quickstart/pom.xml @@ -14,8 +14,8 @@ UTF-8 UTF-8 quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.1.2 diff --git a/kafka-bare-quickstart/pom.xml b/kafka-bare-quickstart/pom.xml index d00934de21..85d7af7c1b 100644 --- a/kafka-bare-quickstart/pom.xml +++ b/kafka-bare-quickstart/pom.xml @@ -8,8 +8,8 @@ 3.1.2 quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 17 UTF-8 17 diff --git a/kafka-panache-quickstart/pom.xml b/kafka-panache-quickstart/pom.xml index 2afd5d49a7..e780c408ad 100644 --- a/kafka-panache-quickstart/pom.xml +++ b/kafka-panache-quickstart/pom.xml @@ -8,8 +8,8 @@ 3.1.2 quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 17 UTF-8 17 diff --git a/kafka-panache-quickstart/src/main/resources/META-INF/resources/index.html b/kafka-panache-quickstart/src/main/resources/META-INF/resources/index.html index 816c87023f..84a90adfcd 100644 --- a/kafka-panache-quickstart/src/main/resources/META-INF/resources/index.html +++ b/kafka-panache-quickstart/src/main/resources/META-INF/resources/index.html @@ -133,7 +133,7 @@

    Application

  • GroupId: org.acme.quarkus.sample
  • ArtifactId: kafka-quickstart
  • Version: 1.0.0-SNAPSHOT
  • -
  • Quarkus Version: 999-SNAPSHOT
  • +
  • Quarkus Version: 3.12.0.CR1
  • diff --git a/kafka-panache-reactive-quickstart/pom.xml b/kafka-panache-reactive-quickstart/pom.xml index da051fec7c..9b8a41022c 100644 --- a/kafka-panache-reactive-quickstart/pom.xml +++ b/kafka-panache-reactive-quickstart/pom.xml @@ -8,8 +8,8 @@ 3.1.2 quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 17 UTF-8 17 diff --git a/kafka-panache-reactive-quickstart/src/main/resources/META-INF/resources/index.html b/kafka-panache-reactive-quickstart/src/main/resources/META-INF/resources/index.html index 816c87023f..84a90adfcd 100644 --- a/kafka-panache-reactive-quickstart/src/main/resources/META-INF/resources/index.html +++ b/kafka-panache-reactive-quickstart/src/main/resources/META-INF/resources/index.html @@ -133,7 +133,7 @@

    Application

  • GroupId: org.acme.quarkus.sample
  • ArtifactId: kafka-quickstart
  • Version: 1.0.0-SNAPSHOT
  • -
  • Quarkus Version: 999-SNAPSHOT
  • +
  • Quarkus Version: 3.12.0.CR1
  • diff --git a/kafka-quickstart/processor/pom.xml b/kafka-quickstart/processor/pom.xml index d3422c547d..565840c8a5 100644 --- a/kafka-quickstart/processor/pom.xml +++ b/kafka-quickstart/processor/pom.xml @@ -12,8 +12,8 @@ 3.1.2 quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 17 UTF-8 17 diff --git a/kafka-quickstart/producer/pom.xml b/kafka-quickstart/producer/pom.xml index 6853833ed3..ea42dcfd95 100644 --- a/kafka-quickstart/producer/pom.xml +++ b/kafka-quickstart/producer/pom.xml @@ -12,8 +12,8 @@ 3.1.2 quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 17 UTF-8 17 diff --git a/kafka-streams-quickstart/aggregator/pom.xml b/kafka-streams-quickstart/aggregator/pom.xml index ec53d8eed5..833bf04901 100644 --- a/kafka-streams-quickstart/aggregator/pom.xml +++ b/kafka-streams-quickstart/aggregator/pom.xml @@ -14,8 +14,8 @@ 17 17 quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 UTF-8 UTF-8 diff --git a/kafka-streams-quickstart/producer/pom.xml b/kafka-streams-quickstart/producer/pom.xml index 787c6933db..47c4a62b32 100644 --- a/kafka-streams-quickstart/producer/pom.xml +++ b/kafka-streams-quickstart/producer/pom.xml @@ -16,8 +16,8 @@ 17 17 quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 UTF-8 UTF-8 diff --git a/lifecycle-quickstart/pom.xml b/lifecycle-quickstart/pom.xml index 06e351260b..623adc9004 100644 --- a/lifecycle-quickstart/pom.xml +++ b/lifecycle-quickstart/pom.xml @@ -7,8 +7,8 @@ 1.0.0-SNAPSHOT quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.1.2 UTF-8 17 diff --git a/liquibase-mongodb-quickstart/pom.xml b/liquibase-mongodb-quickstart/pom.xml index 6714f2db23..ea04a97e95 100644 --- a/liquibase-mongodb-quickstart/pom.xml +++ b/liquibase-mongodb-quickstart/pom.xml @@ -13,8 +13,8 @@ UTF-8 UTF-8 quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.1.2 diff --git a/liquibase-quickstart/pom.xml b/liquibase-quickstart/pom.xml index 7471cacba9..e1fb08a133 100644 --- a/liquibase-quickstart/pom.xml +++ b/liquibase-quickstart/pom.xml @@ -13,8 +13,8 @@ UTF-8 UTF-8 quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.1.2 diff --git a/mailer-quickstart/pom.xml b/mailer-quickstart/pom.xml index 48d9dd1002..13b7488968 100644 --- a/mailer-quickstart/pom.xml +++ b/mailer-quickstart/pom.xml @@ -8,8 +8,8 @@ quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.11.0 3.1.2 UTF-8 diff --git a/micrometer-quickstart/pom.xml b/micrometer-quickstart/pom.xml index 2ab5a2dcf7..220b572428 100644 --- a/micrometer-quickstart/pom.xml +++ b/micrometer-quickstart/pom.xml @@ -10,8 +10,8 @@ quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.11.0 3.1.2 17 diff --git a/microprofile-fault-tolerance-quickstart/pom.xml b/microprofile-fault-tolerance-quickstart/pom.xml index adadac829e..dd0f3c5ec2 100644 --- a/microprofile-fault-tolerance-quickstart/pom.xml +++ b/microprofile-fault-tolerance-quickstart/pom.xml @@ -10,8 +10,8 @@ quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.11.0 3.1.2 UTF-8 diff --git a/microprofile-graphql-client-quickstart/pom.xml b/microprofile-graphql-client-quickstart/pom.xml index 209af9b1a0..bc58e89e72 100644 --- a/microprofile-graphql-client-quickstart/pom.xml +++ b/microprofile-graphql-client-quickstart/pom.xml @@ -11,9 +11,9 @@ true 17 17 - io.quarkus + io.quarkus.platform quarkus-bom - 999-SNAPSHOT + 3.12.0.CR1 3.1.2 diff --git a/microprofile-graphql-quickstart/pom.xml b/microprofile-graphql-quickstart/pom.xml index 684b2af685..0b02b2314e 100644 --- a/microprofile-graphql-quickstart/pom.xml +++ b/microprofile-graphql-quickstart/pom.xml @@ -10,9 +10,9 @@ true 17 17 - io.quarkus + io.quarkus.platform quarkus-bom - 999-SNAPSHOT + 3.12.0.CR1 3.1.2 diff --git a/microprofile-health-quickstart/pom.xml b/microprofile-health-quickstart/pom.xml index 192841b5aa..704654bb30 100644 --- a/microprofile-health-quickstart/pom.xml +++ b/microprofile-health-quickstart/pom.xml @@ -8,8 +8,8 @@ quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.1.2 17 17 diff --git a/microprofile-health-quickstart/src/main/resources/META-INF/resources/index.html b/microprofile-health-quickstart/src/main/resources/META-INF/resources/index.html index bea2fec006..d61c7d69ca 100644 --- a/microprofile-health-quickstart/src/main/resources/META-INF/resources/index.html +++ b/microprofile-health-quickstart/src/main/resources/META-INF/resources/index.html @@ -133,7 +133,7 @@

    Application

  • GroupId: org.acme
  • ArtifactId: microprofile-health
  • Version: 1.0.0-SNAPSHOT
  • -
  • Quarkus Version: 999-SNAPSHOT
  • +
  • Quarkus Version: 3.12.0.CR1
  • diff --git a/microprofile-metrics-quickstart/pom.xml b/microprofile-metrics-quickstart/pom.xml index 491a4ec6e4..de3b9c4c68 100644 --- a/microprofile-metrics-quickstart/pom.xml +++ b/microprofile-metrics-quickstart/pom.xml @@ -10,8 +10,8 @@ quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.11.0 3.1.2 17 diff --git a/mongodb-panache-quickstart/pom.xml b/mongodb-panache-quickstart/pom.xml index 36f2860e8c..3ad2fe958d 100644 --- a/mongodb-panache-quickstart/pom.xml +++ b/mongodb-panache-quickstart/pom.xml @@ -10,8 +10,8 @@ 17 17 quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 UTF-8 UTF-8 3.22.0 diff --git a/mongodb-panache-quickstart/src/main/resources/META-INF/resources/index.html b/mongodb-panache-quickstart/src/main/resources/META-INF/resources/index.html index 02f9ccffb5..612504f041 100644 --- a/mongodb-panache-quickstart/src/main/resources/META-INF/resources/index.html +++ b/mongodb-panache-quickstart/src/main/resources/META-INF/resources/index.html @@ -133,7 +133,7 @@

    Application

  • GroupId: org.acme
  • ArtifactId: mongodb-panache
  • Version: 1.0.0-SNAPSHOT
  • -
  • Quarkus Version: 999-SNAPSHOT
  • +
  • Quarkus Version: 3.12.0.CR1
  • diff --git a/mongodb-quickstart/pom.xml b/mongodb-quickstart/pom.xml index 98c27e6473..804f5fb7d9 100644 --- a/mongodb-quickstart/pom.xml +++ b/mongodb-quickstart/pom.xml @@ -9,8 +9,8 @@ UTF-8 3.1.2 quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 UTF-8 17 17 diff --git a/mongodb-quickstart/src/main/resources/META-INF/resources/index.html b/mongodb-quickstart/src/main/resources/META-INF/resources/index.html index a84c495de1..d0eb47a79d 100644 --- a/mongodb-quickstart/src/main/resources/META-INF/resources/index.html +++ b/mongodb-quickstart/src/main/resources/META-INF/resources/index.html @@ -133,7 +133,7 @@

    Application

  • GroupId: org.acme
  • ArtifactId: mongo-client
  • Version: 1.0.0-SNAPSHOT
  • -
  • Quarkus Version: 999-SNAPSHOT
  • +
  • Quarkus Version: 3.12.0.CR1
  • diff --git a/mqtt-quickstart/pom.xml b/mqtt-quickstart/pom.xml index 83b261bf6d..d46a779d71 100644 --- a/mqtt-quickstart/pom.xml +++ b/mqtt-quickstart/pom.xml @@ -7,8 +7,8 @@ 1.0.0-SNAPSHOT quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.1.2 0.28.0 17 diff --git a/mqtt-quickstart/src/main/resources/META-INF/resources/index.html b/mqtt-quickstart/src/main/resources/META-INF/resources/index.html index 7cec97b04a..c1be099705 100644 --- a/mqtt-quickstart/src/main/resources/META-INF/resources/index.html +++ b/mqtt-quickstart/src/main/resources/META-INF/resources/index.html @@ -133,7 +133,7 @@

    Application

  • GroupId: org.acme.quarkus.sample
  • ArtifactId: mqtt-quickstart
  • Version: 1.0.0-SNAPSHOT
  • -
  • Quarkus Version: 999-SNAPSHOT
  • +
  • Quarkus Version: 3.12.0.CR1
  • diff --git a/neo4j-quickstart/pom.xml b/neo4j-quickstart/pom.xml index ad3489ed25..d44ba805a8 100644 --- a/neo4j-quickstart/pom.xml +++ b/neo4j-quickstart/pom.xml @@ -9,8 +9,8 @@ UTF-8 3.1.2 quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 17 UTF-8 17 diff --git a/neo4j-quickstart/src/main/resources/META-INF/resources/index.html b/neo4j-quickstart/src/main/resources/META-INF/resources/index.html index a58074e80b..2284b715a1 100644 --- a/neo4j-quickstart/src/main/resources/META-INF/resources/index.html +++ b/neo4j-quickstart/src/main/resources/META-INF/resources/index.html @@ -133,7 +133,7 @@

    Application

  • GroupId: org.acme
  • ArtifactId: neo4j-quickstart
  • Version: 1.0.0-SNAPSHOT
  • -
  • Quarkus Version: 999-SNAPSHOT
  • +
  • Quarkus Version: 3.12.0.CR1
  • diff --git a/openapi-swaggerui-quickstart/pom.xml b/openapi-swaggerui-quickstart/pom.xml index cdbd73b205..7ebfbe5b64 100644 --- a/openapi-swaggerui-quickstart/pom.xml +++ b/openapi-swaggerui-quickstart/pom.xml @@ -10,8 +10,8 @@ 3.1.2 quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 UTF-8 17 17 diff --git a/openapi-swaggerui-quickstart/src/main/resources/META-INF/resources/index.html b/openapi-swaggerui-quickstart/src/main/resources/META-INF/resources/index.html index 9c88fee08c..7403a20234 100644 --- a/openapi-swaggerui-quickstart/src/main/resources/META-INF/resources/index.html +++ b/openapi-swaggerui-quickstart/src/main/resources/META-INF/resources/index.html @@ -133,7 +133,7 @@

    Application

  • GroupId: org.acme
  • ArtifactId: using-openapi-swaggerui
  • Version: 1.0.0-SNAPSHOT
  • -
  • Quarkus Version: 999-SNAPSHOT
  • +
  • Quarkus Version: 3.12.0.CR1
  • diff --git a/opentelemetry-quickstart/pom.xml b/opentelemetry-quickstart/pom.xml index 670080ebd3..658bfc81dc 100644 --- a/opentelemetry-quickstart/pom.xml +++ b/opentelemetry-quickstart/pom.xml @@ -7,8 +7,8 @@ 1.0.0-SNAPSHOT quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.1.2 17 UTF-8 diff --git a/opentelemetry-quickstart/src/main/resources/META-INF/resources/index.html b/opentelemetry-quickstart/src/main/resources/META-INF/resources/index.html index 3839fc8911..070c0ecc5a 100644 --- a/opentelemetry-quickstart/src/main/resources/META-INF/resources/index.html +++ b/opentelemetry-quickstart/src/main/resources/META-INF/resources/index.html @@ -133,7 +133,7 @@

    Application

  • GroupId: org.acme
  • ArtifactId: using-opentelemetry
  • Version: 1.0.0-SNAPSHOT
  • -
  • Quarkus Version: 999-SNAPSHOT
  • +
  • Quarkus Version: 3.12.0.CR1
  • diff --git a/optaplanner-quickstart/pom.xml b/optaplanner-quickstart/pom.xml index 2512d81efd..b06372798d 100644 --- a/optaplanner-quickstart/pom.xml +++ b/optaplanner-quickstart/pom.xml @@ -8,8 +8,8 @@ quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 9.37.0.Final 3.11.0 3.1.2 diff --git a/pulsar-quickstart/pulsar-quickstart-processor/pom.xml b/pulsar-quickstart/pulsar-quickstart-processor/pom.xml index 2a8b6087dc..895b191c4d 100644 --- a/pulsar-quickstart/pulsar-quickstart-processor/pom.xml +++ b/pulsar-quickstart/pulsar-quickstart-processor/pom.xml @@ -13,8 +13,8 @@ UTF-8 UTF-8 quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.1.2 diff --git a/pulsar-quickstart/pulsar-quickstart-producer/pom.xml b/pulsar-quickstart/pulsar-quickstart-producer/pom.xml index 05c8cf2c22..ecd1e852d8 100644 --- a/pulsar-quickstart/pulsar-quickstart-producer/pom.xml +++ b/pulsar-quickstart/pulsar-quickstart-producer/pom.xml @@ -13,8 +13,8 @@ UTF-8 UTF-8 quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.1.2 diff --git a/quartz-quickstart/pom.xml b/quartz-quickstart/pom.xml index c17dc5da9f..d2aa037a9b 100644 --- a/quartz-quickstart/pom.xml +++ b/quartz-quickstart/pom.xml @@ -8,8 +8,8 @@ 1.0.0-SNAPSHOT quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.1.2 UTF-8 17 diff --git a/qute-quickstart/pom.xml b/qute-quickstart/pom.xml index fd2710ce0e..94f9493098 100644 --- a/qute-quickstart/pom.xml +++ b/qute-quickstart/pom.xml @@ -7,8 +7,8 @@ 1.0.0-SNAPSHOT quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.1.2 3.11.0 UTF-8 diff --git a/rabbitmq-quickstart/rabbitmq-quickstart-processor/pom.xml b/rabbitmq-quickstart/rabbitmq-quickstart-processor/pom.xml index 4539553fb6..8ec4637b81 100644 --- a/rabbitmq-quickstart/rabbitmq-quickstart-processor/pom.xml +++ b/rabbitmq-quickstart/rabbitmq-quickstart-processor/pom.xml @@ -13,8 +13,8 @@ UTF-8 UTF-8 quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.1.2 diff --git a/rabbitmq-quickstart/rabbitmq-quickstart-producer/pom.xml b/rabbitmq-quickstart/rabbitmq-quickstart-producer/pom.xml index ece3c8adb3..9e21399f6a 100644 --- a/rabbitmq-quickstart/rabbitmq-quickstart-producer/pom.xml +++ b/rabbitmq-quickstart/rabbitmq-quickstart-producer/pom.xml @@ -13,8 +13,8 @@ UTF-8 UTF-8 quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.1.2 diff --git a/reactive-routes-quickstart/pom.xml b/reactive-routes-quickstart/pom.xml index b5322b170d..01a7474528 100644 --- a/reactive-routes-quickstart/pom.xml +++ b/reactive-routes-quickstart/pom.xml @@ -11,8 +11,8 @@ 3.1.2 quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 17 UTF-8 17 diff --git a/redis-quickstart/pom.xml b/redis-quickstart/pom.xml index a20609650f..111c88bcd5 100644 --- a/redis-quickstart/pom.xml +++ b/redis-quickstart/pom.xml @@ -8,8 +8,8 @@ quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.11.0 3.1.2 0.28.0 diff --git a/rest-client-quickstart/pom.xml b/rest-client-quickstart/pom.xml index 1416dbd423..3ba2c8e281 100644 --- a/rest-client-quickstart/pom.xml +++ b/rest-client-quickstart/pom.xml @@ -13,8 +13,8 @@ UTF-8 UTF-8 quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.1.2 2.27.2 diff --git a/rest-json-quickstart/pom.xml b/rest-json-quickstart/pom.xml index 9d7d8b6099..e98dbb0bd8 100644 --- a/rest-json-quickstart/pom.xml +++ b/rest-json-quickstart/pom.xml @@ -8,8 +8,8 @@ 1.0.0-SNAPSHOT quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.1.2 UTF-8 17 diff --git a/resteasy-client-multipart-quickstart/pom.xml b/resteasy-client-multipart-quickstart/pom.xml index 9efe6e36f9..e6d9782763 100644 --- a/resteasy-client-multipart-quickstart/pom.xml +++ b/resteasy-client-multipart-quickstart/pom.xml @@ -9,8 +9,8 @@ 1.0.0-SNAPSHOT quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.11.0 3.1.2 UTF-8 diff --git a/resteasy-client-quickstart/pom.xml b/resteasy-client-quickstart/pom.xml index 84b169e4fb..ef1a8bdb28 100644 --- a/resteasy-client-quickstart/pom.xml +++ b/resteasy-client-quickstart/pom.xml @@ -9,8 +9,8 @@ 1.0.0-SNAPSHOT quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.11.0 3.1.2 2.27.2 diff --git a/scheduler-quickstart/pom.xml b/scheduler-quickstart/pom.xml index da80ca15b6..08b8cf9c1f 100644 --- a/scheduler-quickstart/pom.xml +++ b/scheduler-quickstart/pom.xml @@ -7,8 +7,8 @@ 1.0.0-SNAPSHOT quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.1.2 UTF-8 17 diff --git a/security-jdbc-quickstart/pom.xml b/security-jdbc-quickstart/pom.xml index 2d5059d11a..4f4113d32e 100644 --- a/security-jdbc-quickstart/pom.xml +++ b/security-jdbc-quickstart/pom.xml @@ -9,8 +9,8 @@ UTF-8 3.1.2 quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 UTF-8 17 17 diff --git a/security-jdbc-quickstart/src/main/resources/META-INF/resources/index.html b/security-jdbc-quickstart/src/main/resources/META-INF/resources/index.html index 4d066a87b3..1f28beed4a 100644 --- a/security-jdbc-quickstart/src/main/resources/META-INF/resources/index.html +++ b/security-jdbc-quickstart/src/main/resources/META-INF/resources/index.html @@ -133,7 +133,7 @@

    Application

  • GroupId: org.acme
  • ArtifactId: using-elytron-security-jdbc
  • Version: 1.0.0-SNAPSHOT
  • -
  • Quarkus Version: 999-SNAPSHOT
  • +
  • Quarkus Version: 3.12.0.CR1
  • diff --git a/security-jpa-quickstart/pom.xml b/security-jpa-quickstart/pom.xml index 3f8d650076..ddd5439e71 100644 --- a/security-jpa-quickstart/pom.xml +++ b/security-jpa-quickstart/pom.xml @@ -7,8 +7,8 @@ 1.0.0-SNAPSHOT quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.11.0 3.1.2 17 diff --git a/security-jpa-quickstart/src/main/resources/META-INF/resources/index.html b/security-jpa-quickstart/src/main/resources/META-INF/resources/index.html index e982993984..e97063b9b0 100644 --- a/security-jpa-quickstart/src/main/resources/META-INF/resources/index.html +++ b/security-jpa-quickstart/src/main/resources/META-INF/resources/index.html @@ -133,7 +133,7 @@

    Application

  • GroupId: org.acme
  • ArtifactId: using-elytron-security-jdbc
  • Version: 1.0.0-SNAPSHOT
  • -
  • Quarkus Version: 999-SNAPSHOT
  • +
  • Quarkus Version: 3.12.0.CR1
  • diff --git a/security-jpa-reactive-quickstart/pom.xml b/security-jpa-reactive-quickstart/pom.xml index 73151a4aba..563d080052 100644 --- a/security-jpa-reactive-quickstart/pom.xml +++ b/security-jpa-reactive-quickstart/pom.xml @@ -7,8 +7,8 @@ 1.0.0-SNAPSHOT quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.8.1 3.1.2 17 diff --git a/security-jpa-reactive-quickstart/src/main/resources/META-INF/resources/index.html b/security-jpa-reactive-quickstart/src/main/resources/META-INF/resources/index.html index f81b4518bf..43cbd60596 100644 --- a/security-jpa-reactive-quickstart/src/main/resources/META-INF/resources/index.html +++ b/security-jpa-reactive-quickstart/src/main/resources/META-INF/resources/index.html @@ -133,7 +133,7 @@

    Application

  • GroupId: org.acme
  • ArtifactId: security-jpa-reactive-quickstart
  • Version: 1.0.0-SNAPSHOT
  • -
  • Quarkus Version: 999-SNAPSHOT
  • +
  • Quarkus Version: 3.12.0.CR1
  • diff --git a/security-jwt-quickstart/pom.xml b/security-jwt-quickstart/pom.xml index 1a04f790c5..86166c6169 100644 --- a/security-jwt-quickstart/pom.xml +++ b/security-jwt-quickstart/pom.xml @@ -8,8 +8,8 @@ 3.1.2 quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 UTF-8 17 17 diff --git a/security-jwt-quickstart/src/main/resources/META-INF/resources/index.html b/security-jwt-quickstart/src/main/resources/META-INF/resources/index.html index 4b8d2ffe74..dd2f051a88 100644 --- a/security-jwt-quickstart/src/main/resources/META-INF/resources/index.html +++ b/security-jwt-quickstart/src/main/resources/META-INF/resources/index.html @@ -133,7 +133,7 @@

    Application

  • GroupId: org.acme
  • ArtifactId: using-jwt-rbac
  • Version: 1.0.0-SNAPSHOT
  • -
  • Quarkus Version: 999-SNAPSHOT
  • +
  • Quarkus Version: 3.12.0.CR1
  • diff --git a/security-keycloak-authorization-quickstart/pom.xml b/security-keycloak-authorization-quickstart/pom.xml index 7cdc65b131..ee8ff8b835 100644 --- a/security-keycloak-authorization-quickstart/pom.xml +++ b/security-keycloak-authorization-quickstart/pom.xml @@ -11,8 +11,8 @@ quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.0.0-M7 17 17 diff --git a/security-ldap-quickstart/pom.xml b/security-ldap-quickstart/pom.xml index 0c46e01d4d..a7660c240b 100644 --- a/security-ldap-quickstart/pom.xml +++ b/security-ldap-quickstart/pom.xml @@ -11,8 +11,8 @@ UTF-8 UTF-8 quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.1.2 diff --git a/security-oauth2-quickstart/pom.xml b/security-oauth2-quickstart/pom.xml index feb9381785..4b7fecff2e 100644 --- a/security-oauth2-quickstart/pom.xml +++ b/security-oauth2-quickstart/pom.xml @@ -10,8 +10,8 @@ 17 17 quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 UTF-8 UTF-8 2.26.3 diff --git a/security-oauth2-quickstart/src/main/resources/META-INF/resources/index.html b/security-oauth2-quickstart/src/main/resources/META-INF/resources/index.html index 344527ebf9..5b0e98a8c5 100644 --- a/security-oauth2-quickstart/src/main/resources/META-INF/resources/index.html +++ b/security-oauth2-quickstart/src/main/resources/META-INF/resources/index.html @@ -133,7 +133,7 @@

    Application

  • GroupId: org.acme
  • ArtifactId: using-oauth2-rbac
  • Version: 1.0.0-SNAPSHOT
  • -
  • Quarkus Version: 999-SNAPSHOT
  • +
  • Quarkus Version: 3.12.0.CR1
  • diff --git a/security-openid-connect-client-quickstart/pom.xml b/security-openid-connect-client-quickstart/pom.xml index 04b2c5a7ab..121510bb8e 100644 --- a/security-openid-connect-client-quickstart/pom.xml +++ b/security-openid-connect-client-quickstart/pom.xml @@ -11,8 +11,8 @@ quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.0.0-M7 17 17 diff --git a/security-openid-connect-multi-tenancy-quickstart/pom.xml b/security-openid-connect-multi-tenancy-quickstart/pom.xml index f4f8280f67..14faf0742c 100644 --- a/security-openid-connect-multi-tenancy-quickstart/pom.xml +++ b/security-openid-connect-multi-tenancy-quickstart/pom.xml @@ -11,8 +11,8 @@ quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 19.0.1-legacy 3.0.0-M7 17 diff --git a/security-openid-connect-quickstart/pom.xml b/security-openid-connect-quickstart/pom.xml index eee192372f..6de4e4c459 100644 --- a/security-openid-connect-quickstart/pom.xml +++ b/security-openid-connect-quickstart/pom.xml @@ -11,8 +11,8 @@ quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.0.0-M7 17 17 diff --git a/security-openid-connect-web-authentication-quickstart/pom.xml b/security-openid-connect-web-authentication-quickstart/pom.xml index fa1dcb3edb..26957c4315 100644 --- a/security-openid-connect-web-authentication-quickstart/pom.xml +++ b/security-openid-connect-web-authentication-quickstart/pom.xml @@ -11,8 +11,8 @@ quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.0.0-M7 17 17 diff --git a/security-webauthn-quickstart/pom.xml b/security-webauthn-quickstart/pom.xml index 07eda0174f..b97b15f54b 100644 --- a/security-webauthn-quickstart/pom.xml +++ b/security-webauthn-quickstart/pom.xml @@ -11,8 +11,8 @@ UTF-8 UTF-8 quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.1.2 diff --git a/security-webauthn-reactive-quickstart/pom.xml b/security-webauthn-reactive-quickstart/pom.xml index 1a891af9b9..7a0497065d 100644 --- a/security-webauthn-reactive-quickstart/pom.xml +++ b/security-webauthn-reactive-quickstart/pom.xml @@ -11,8 +11,8 @@ UTF-8 UTF-8 quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.1.2 diff --git a/software-transactional-memory-quickstart/pom.xml b/software-transactional-memory-quickstart/pom.xml index 2b7a6bc401..0ce65a35f7 100644 --- a/software-transactional-memory-quickstart/pom.xml +++ b/software-transactional-memory-quickstart/pom.xml @@ -10,8 +10,8 @@ UTF-8 3.1.2 quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 17 17 diff --git a/spring-boot-properties-quickstart/pom.xml b/spring-boot-properties-quickstart/pom.xml index 4a363f3ce7..dd0b878849 100644 --- a/spring-boot-properties-quickstart/pom.xml +++ b/spring-boot-properties-quickstart/pom.xml @@ -7,8 +7,8 @@ 1.0.0-SNAPSHOT quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.1.2 3.11.0 true diff --git a/spring-boot-properties-quickstart/src/main/resources/META-INF/resources/index.html b/spring-boot-properties-quickstart/src/main/resources/META-INF/resources/index.html index 9cd03c0840..dae4ddda74 100644 --- a/spring-boot-properties-quickstart/src/main/resources/META-INF/resources/index.html +++ b/spring-boot-properties-quickstart/src/main/resources/META-INF/resources/index.html @@ -133,7 +133,7 @@

    Application

  • GroupId: org.acme
  • ArtifactId: spring-boot-properties-quickstart
  • Version: 1.0.0-SNAPSHOT
  • -
  • Quarkus Version: 1.3.1.Final
  • +
  • Quarkus Version: 3.12.0.CR1
  • diff --git a/spring-data-jpa-quickstart/pom.xml b/spring-data-jpa-quickstart/pom.xml index 261c28c607..40a1ec7ac8 100644 --- a/spring-data-jpa-quickstart/pom.xml +++ b/spring-data-jpa-quickstart/pom.xml @@ -8,8 +8,8 @@ 1.0.0-SNAPSHOT quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.11.0 3.1.2 UTF-8 diff --git a/spring-data-rest-quickstart/pom.xml b/spring-data-rest-quickstart/pom.xml index 4ca3145be3..bbd05ece01 100644 --- a/spring-data-rest-quickstart/pom.xml +++ b/spring-data-rest-quickstart/pom.xml @@ -13,8 +13,8 @@ UTF-8 UTF-8 quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.1.2 diff --git a/spring-di-quickstart/pom.xml b/spring-di-quickstart/pom.xml index 2246861efa..004ff96cbe 100644 --- a/spring-di-quickstart/pom.xml +++ b/spring-di-quickstart/pom.xml @@ -8,8 +8,8 @@ 1.0.0-SNAPSHOT quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 5.1.4.RELEASE 3.1.2 UTF-8 diff --git a/spring-scheduled-quickstart/pom.xml b/spring-scheduled-quickstart/pom.xml index 06d6cb2218..9eb55603fc 100644 --- a/spring-scheduled-quickstart/pom.xml +++ b/spring-scheduled-quickstart/pom.xml @@ -7,8 +7,8 @@ 1.0.0-SNAPSHOT quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.1.2 UTF-8 17 diff --git a/spring-security-quickstart/pom.xml b/spring-security-quickstart/pom.xml index ff213b90b6..f119607c20 100644 --- a/spring-security-quickstart/pom.xml +++ b/spring-security-quickstart/pom.xml @@ -7,8 +7,8 @@ 1.0.0-SNAPSHOT quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.11.0 true 17 diff --git a/spring-security-quickstart/src/main/resources/META-INF/resources/index.html b/spring-security-quickstart/src/main/resources/META-INF/resources/index.html index eacccb960a..fd52239ea3 100644 --- a/spring-security-quickstart/src/main/resources/META-INF/resources/index.html +++ b/spring-security-quickstart/src/main/resources/META-INF/resources/index.html @@ -133,7 +133,7 @@

    Application

  • GroupId: org.acme
  • ArtifactId: secured-spring-web-quickstart
  • Version: 1.0.0-SNAPSHOT
  • -
  • Quarkus Version: 999-SNAPSHOT
  • +
  • Quarkus Version: 3.12.0.CR1
  • diff --git a/spring-web-quickstart/pom.xml b/spring-web-quickstart/pom.xml index 4b1fe82dba..69434bf3f8 100644 --- a/spring-web-quickstart/pom.xml +++ b/spring-web-quickstart/pom.xml @@ -8,8 +8,8 @@ 1.0.0-SNAPSHOT quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.1.2 UTF-8 17 diff --git a/stork-dns-quickstart/pom.xml b/stork-dns-quickstart/pom.xml index fd2799cf53..c11df4d1a2 100644 --- a/stork-dns-quickstart/pom.xml +++ b/stork-dns-quickstart/pom.xml @@ -8,8 +8,8 @@ 1.0.0-SNAPSHOT quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.1.2 UTF-8 17 diff --git a/stork-dns-quickstart/src/main/resources/META-INF/resources/index.html b/stork-dns-quickstart/src/main/resources/META-INF/resources/index.html index ed096af3fa..befad86d2e 100644 --- a/stork-dns-quickstart/src/main/resources/META-INF/resources/index.html +++ b/stork-dns-quickstart/src/main/resources/META-INF/resources/index.html @@ -146,7 +146,7 @@

    Application

  • GroupId: org.acme
  • ArtifactId: stork-getting-started
  • Version: 1.0.0-SNAPSHOT
  • -
  • Quarkus Version: 2.6.1.Final
  • +
  • Quarkus Version: 3.12.0.CR1
  • diff --git a/stork-kubernetes-quickstart/pom.xml b/stork-kubernetes-quickstart/pom.xml index fd7a2dca30..8eacec1b95 100644 --- a/stork-kubernetes-quickstart/pom.xml +++ b/stork-kubernetes-quickstart/pom.xml @@ -8,8 +8,8 @@ 1.0.0-SNAPSHOT quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.1.2 UTF-8 17 diff --git a/stork-kubernetes-quickstart/src/main/resources/META-INF/resources/index.html b/stork-kubernetes-quickstart/src/main/resources/META-INF/resources/index.html index ed096af3fa..befad86d2e 100644 --- a/stork-kubernetes-quickstart/src/main/resources/META-INF/resources/index.html +++ b/stork-kubernetes-quickstart/src/main/resources/META-INF/resources/index.html @@ -146,7 +146,7 @@

    Application

  • GroupId: org.acme
  • ArtifactId: stork-getting-started
  • Version: 1.0.0-SNAPSHOT
  • -
  • Quarkus Version: 2.6.1.Final
  • +
  • Quarkus Version: 3.12.0.CR1
  • diff --git a/stork-quickstart/pom.xml b/stork-quickstart/pom.xml index 09aa897425..5659eeceb4 100644 --- a/stork-quickstart/pom.xml +++ b/stork-quickstart/pom.xml @@ -8,8 +8,8 @@ 1.0.0-SNAPSHOT quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.1.2 UTF-8 17 diff --git a/stork-quickstart/src/main/resources/META-INF/resources/index.html b/stork-quickstart/src/main/resources/META-INF/resources/index.html index ed096af3fa..befad86d2e 100644 --- a/stork-quickstart/src/main/resources/META-INF/resources/index.html +++ b/stork-quickstart/src/main/resources/META-INF/resources/index.html @@ -146,7 +146,7 @@

    Application

  • GroupId: org.acme
  • ArtifactId: stork-getting-started
  • Version: 1.0.0-SNAPSHOT
  • -
  • Quarkus Version: 2.6.1.Final
  • +
  • Quarkus Version: 3.12.0.CR1
  • diff --git a/tests-with-coverage-quickstart/pom.xml b/tests-with-coverage-quickstart/pom.xml index 9f16f2aa1d..7c141040f0 100644 --- a/tests-with-coverage-quickstart/pom.xml +++ b/tests-with-coverage-quickstart/pom.xml @@ -8,8 +8,8 @@ quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.1.2 0.8.7 UTF-8 diff --git a/tika-quickstart/pom.xml b/tika-quickstart/pom.xml index 4acd3d53f0..251583324d 100644 --- a/tika-quickstart/pom.xml +++ b/tika-quickstart/pom.xml @@ -12,8 +12,8 @@ 17 17 quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 UTF-8 UTF-8 diff --git a/validation-quickstart/pom.xml b/validation-quickstart/pom.xml index 76ccfd1fd2..86e6b6b15a 100644 --- a/validation-quickstart/pom.xml +++ b/validation-quickstart/pom.xml @@ -8,8 +8,8 @@ 1.0.0-SNAPSHOT quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.11.0 3.1.2 UTF-8 diff --git a/vertx-quickstart/pom.xml b/vertx-quickstart/pom.xml index 39d46fdc49..9ec4fa5b73 100644 --- a/vertx-quickstart/pom.xml +++ b/vertx-quickstart/pom.xml @@ -10,8 +10,8 @@ quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.11.0 3.1.2 17 diff --git a/websockets-next-quickstart/pom.xml b/websockets-next-quickstart/pom.xml index 699c1f511a..f2242648f4 100644 --- a/websockets-next-quickstart/pom.xml +++ b/websockets-next-quickstart/pom.xml @@ -7,8 +7,8 @@ 1.0.0-SNAPSHOT quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.1.2 UTF-8 17 diff --git a/websockets-quickstart/pom.xml b/websockets-quickstart/pom.xml index b77e5785d5..6882ac38d5 100644 --- a/websockets-quickstart/pom.xml +++ b/websockets-quickstart/pom.xml @@ -7,8 +7,8 @@ 1.0.0-SNAPSHOT quarkus-bom - io.quarkus - 999-SNAPSHOT + io.quarkus.platform + 3.12.0.CR1 3.1.2 UTF-8 17