This is an automated email from the ASF dual-hosted git repository. github-bot pushed a commit to branch quarkus-main in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit d6b8b221ef8e2759579379c604bde372cefc599f Author: James Netherton <jamesnether...@gmail.com> AuthorDate: Thu Jan 20 07:52:37 2022 +0000 Upgrade to Quarkus 2.8.0.CR1 --- docs/antora.yml | 2 +- integration-tests/http/pom.xml | 2 +- integration-tests/vertx-websocket/pom.xml | 2 +- pom.xml | 7 ++++--- poms/build-parent/pom.xml | 9 +++++++++ 5 files changed, 16 insertions(+), 6 deletions(-) diff --git a/docs/antora.yml b/docs/antora.yml index ce03b9d..488a8a9 100644 --- a/docs/antora.yml +++ b/docs/antora.yml @@ -31,7 +31,7 @@ asciidoc: target-maven-version: 3.8.4 # replace ${target-maven-version} camel-version: 3.14.1 # replace ${camel.version} camel-docs-version: 3.14.x # replace ${camel.docs.components.version} - quarkus-version: 2.7.0.Final # replace ${quarkus.version} + quarkus-version: 999-SNAPSHOT # replace ${quarkus.version} graalvm-version: 21.3.0 # replace ${graalvm.version} graalvm-docs-version: 21.3 # attributes used in xrefs to other Antora components diff --git a/integration-tests/http/pom.xml b/integration-tests/http/pom.xml index 68daa40..8994b61 100644 --- a/integration-tests/http/pom.xml +++ b/integration-tests/http/pom.xml @@ -61,7 +61,7 @@ </dependency> <dependency> <groupId>io.quarkus</groupId> - <artifactId>quarkus-undertow-websockets</artifactId> + <artifactId>quarkus-websockets</artifactId> </dependency> <dependency> <groupId>io.quarkus</groupId> diff --git a/integration-tests/vertx-websocket/pom.xml b/integration-tests/vertx-websocket/pom.xml index 7947fe5..abd5e2a 100644 --- a/integration-tests/vertx-websocket/pom.xml +++ b/integration-tests/vertx-websocket/pom.xml @@ -39,7 +39,7 @@ <!-- test dependencies --> <dependency> <groupId>io.quarkus</groupId> - <artifactId>quarkus-undertow-websockets</artifactId> + <artifactId>quarkus-websockets</artifactId> <scope>test</scope> </dependency> <dependency> diff --git a/pom.xml b/pom.xml index 032f6d1..15455f5 100644 --- a/pom.xml +++ b/pom.xml @@ -55,7 +55,7 @@ <quarkiverse-jsch.version>1.0.0</quarkiverse-jsch.version><!-- https://repo1.maven.org/maven2/io/quarkiverse/jsch/quarkus-jsch-parent/ --> <quarkiverse-minio.version>2.3.0</quarkiverse-minio.version><!-- https://repo1.maven.org/maven2/io/quarkiverse/minio/quarkus-minio-parent/ --> <quarkiverse-tika.version>1.0.3</quarkiverse-tika.version><!-- https://repo1.maven.org/maven2/io/quarkiverse/tika/quarkus-tika-parent/ --> - <quarkus.version>2.7.0.Final</quarkus.version><!-- https://repo1.maven.org/maven2/io/quarkus/quarkus-bom/ --> + <quarkus.version>999-SNAPSHOT</quarkus.version><!-- https://repo1.maven.org/maven2/io/quarkus/quarkus-bom/ --> <quarkus-hazelcast-client.version>2.0.0</quarkus-hazelcast-client.version><!-- https://repo1.maven.org/maven2/com/hazelcast/quarkus-hazelcast-client-bom/ --> <quarkus-qpid-jms.version>0.32.0</quarkus-qpid-jms.version><!-- https://repo1.maven.org/maven2/org/amqphub/quarkus/quarkus-qpid-jms-bom/ --> @@ -65,6 +65,7 @@ <animal-sniffer.version>1.18</animal-sniffer.version> <antlr3.version>3.5.2</antlr3.version><!-- Spark, Stringtemplate and probably others --> <avro.version>1.11.0</avro.version><!-- @sync io.quarkus:quarkus-bom:${quarkus.version} dep:org.apache.avro:avro --> + <assertj.version>3.22.0</assertj.version><!-- @sync io.quarkus:quarkus-build-parent:${quarkus.version} prop:assertj.version --> <awssdk.version>2.17.103</awssdk.version><!-- @sync io.quarkiverse.amazonservices:quarkus-amazon-services-parent:${quarkiverse-amazonservices.version} prop:awssdk.version --> <aws-java-sdk.version>1.11.714</aws-java-sdk.version> <azure-sdk-bom.version>1.0.5</azure-sdk-bom.version><!-- Keep in sync with camel-azure component versions --> @@ -85,8 +86,8 @@ <github-api.version>1.111</github-api.version><!-- Used in a Groovy script bellow --> <google-native-image-support.version>0.8.0</google-native-image-support.version> <google-auth-library-credentials.version>0.22.2</google-auth-library-credentials.version><!-- @sync io.grpc:grpc-auth:${grpc.version} dep:com.google.auth:google-auth-library-credentials --> - <graalvm.version>21.3.0</graalvm.version><!-- @sync io.quarkus:quarkus-bom:${quarkus.version} dep:org.graalvm.nativeimage:svm --> - <grpc.version>1.43.2</grpc.version><!-- @sync io.quarkus:quarkus-bom:${quarkus.version} dep:io.grpc:grpc-core --> + <graalvm.version>22.0.0.2</graalvm.version><!-- @sync io.quarkus:quarkus-bom:${quarkus.version} dep:org.graalvm.nativeimage:svm --> + <grpc.version>1.44.0</grpc.version><!-- @sync io.quarkus:quarkus-bom:${quarkus.version} dep:io.grpc:grpc-core --> <guice-servlet.version>4.0</guice-servlet.version><!-- Spark --> <hadoop3.version>${hadoop3-version}</hadoop3.version><!-- Spark --> <hapi.version>${hapi-version}</hapi.version> diff --git a/poms/build-parent/pom.xml b/poms/build-parent/pom.xml index 223aaa3..b90f131 100644 --- a/poms/build-parent/pom.xml +++ b/poms/build-parent/pom.xml @@ -37,6 +37,15 @@ <!-- maven-surefire-plugin --> <failIfNoTests>false</failIfNoTests> </properties> + <dependencyManagement> + <dependencies> + <dependency> + <groupId>org.assertj</groupId> + <artifactId>assertj-core</artifactId> + <version>${assertj.version}</version> + </dependency> + </dependencies> + </dependencyManagement> <build> <pluginManagement> <plugins>