This is an automated email from the ASF dual-hosted git repository.

jamesnetherton pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git

commit 82c2f640e651ff63779091c67036bd18d309d665
Author: James Netherton <jamesnether...@gmail.com>
AuthorDate: Mon Feb 20 08:00:33 2023 +0000

    Upgrade Quarkus to 3.0.0.Alpha5
---
 docs/antora.yml                                                   | 2 +-
 docs/modules/ROOT/pages/reference/extensions/core.adoc            | 8 ++++----
 .../component/dataformats/json/jackson/model/TestJAXBPojo.java    | 3 +++
 pom.xml                                                           | 6 +++---
 4 files changed, 11 insertions(+), 8 deletions(-)

diff --git a/docs/antora.yml b/docs/antora.yml
index 0926fb98cb..f0995d6346 100644
--- a/docs/antora.yml
+++ b/docs/antora.yml
@@ -30,7 +30,7 @@ asciidoc:
     # Project versions
     camel-version: 4.0.0-M1 # replace ${camel.version}
     camel-docs-version: ""
-    quarkus-version: 3.0.0.Alpha4 # replace ${quarkus.version}
+    quarkus-version: 3.0.0.Alpha5 # replace ${quarkus.version}
     graalvm-version: 22.3.0 # replace ${graalvm.version}
     graalvm-docs-version: 22.3
     min-maven-version: 3.8.2 # replace ${min-maven-version}
diff --git a/docs/modules/ROOT/pages/reference/extensions/core.adoc 
b/docs/modules/ROOT/pages/reference/extensions/core.adoc
index 1126dad561..075d04dc79 100644
--- a/docs/modules/ROOT/pages/reference/extensions/core.adoc
+++ b/docs/modules/ROOT/pages/reference/extensions/core.adoc
@@ -137,7 +137,7 @@ When set to true, the `CamelRuntime` will be started 
automatically.
 
 |icon:lock[title=Fixed at build time] 
[[quarkus.camel.service.discovery.exclude-patterns]]`link:#quarkus.camel.service.discovery.exclude-patterns[quarkus.camel.service.discovery.exclude-patterns]`
 
-A comma-separated list of Ant-path style patterns to match Camel service 
definition files in the classpath. The services defined in the matching files 
will not be discoverable via the `org.apache.camel.spi.FactoryFinder` 
mechanism. 
+A comma-separated list of Ant-path style patterns to match Camel service 
definition files in the classpath. The services defined in the matching files 
will *not* be discoverable via the **`org.apache.camel.spi.FactoryFinder` 
mechanism. 
 The excludes have higher precedence than includes. The excludes defined here 
can also be used to veto the discoverability of services included by Camel 
Quarkus extensions. 
 Example values: 
`META-INF/services/org/apache/camel/foo/++*++,META-INF/services/org/apache/camel/foo/++**++/bar`
 | `string`
@@ -153,9 +153,9 @@ Example values: 
`META-INF/services/org/apache/camel/foo/++*++,META-INF/services/
 
 |icon:lock[title=Fixed at build time] 
[[quarkus.camel.service.registry.exclude-patterns]]`link:#quarkus.camel.service.registry.exclude-patterns[quarkus.camel.service.registry.exclude-patterns]`
 
-A comma-separated list of Ant-path style patterns to match Camel service 
definition files in the classpath. The services defined in the matching files 
will not be added to Camel registry during application's static initialization. 
+A comma-separated list of Ant-path style patterns to match Camel service 
definition files in the classpath. The services defined in the matching files 
will *not* be added to Camel registry during application's static 
initialization. 
 The excludes have higher precedence than includes. The excludes defined here 
can also be used to veto the registration of services included by Camel Quarkus 
extensions. 
-Example values: 
`META-INF/services/org/apache/camel/foo/++*++,META-INF/services/org/apache/camel/foo/++**++/bar`
+Example values: 
`META-INF/services/org/apache/camel/foo/++*++,META-INF/services/org/apache/camel/foo/++**++/bar`**
 | `string`
 | 
 
@@ -227,7 +227,7 @@ Replaced by `quarkus.native.resources.includes` in Camel 
Quarkus 2.0.0. Using th
 
 |icon:lock[title=Fixed at build time] 
[[quarkus.camel.native.reflection.exclude-patterns]]`link:#quarkus.camel.native.reflection.exclude-patterns[quarkus.camel.native.reflection.exclude-patterns]`
 
-A comma separated list of Ant-path style patterns to match class names that 
should be excluded from registering for reflection. Use the class name format 
as returned by the `java.lang.Class.getName()` method: package segments 
delimited by period `.` and inner classes by dollar sign `$`. 
+A comma separated list of Ant-path style patterns to match class names that 
should be *excluded* from registering for reflection. Use the class name format 
as returned by the `java.lang.Class.getName()` method: package segments 
delimited by period `.` and inner classes by dollar sign `$`. 
 This option narrows down the set selected by `include-patterns`. By default, 
no classes are excluded. 
 This option cannot be used to unregister classes which have been registered 
internally by Quarkus extensions.
 | `string`
diff --git 
a/integration-test-groups/dataformats-json/json-jackson/src/main/java/org/apache/camel/quarkus/component/dataformats/json/jackson/model/TestJAXBPojo.java
 
b/integration-test-groups/dataformats-json/json-jackson/src/main/java/org/apache/camel/quarkus/component/dataformats/json/jackson/model/TestJAXBPojo.java
index 7597ec259a..e8448765cd 100644
--- 
a/integration-test-groups/dataformats-json/json-jackson/src/main/java/org/apache/camel/quarkus/component/dataformats/json/jackson/model/TestJAXBPojo.java
+++ 
b/integration-test-groups/dataformats-json/json-jackson/src/main/java/org/apache/camel/quarkus/component/dataformats/json/jackson/model/TestJAXBPojo.java
@@ -17,11 +17,14 @@
 package org.apache.camel.quarkus.component.dataformats.json.jackson.model;
 
 import io.quarkus.runtime.annotations.RegisterForReflection;
+import jakarta.xml.bind.annotation.XmlAccessType;
+import jakarta.xml.bind.annotation.XmlAccessorType;
 import jakarta.xml.bind.annotation.XmlElement;
 import jakarta.xml.bind.annotation.XmlRootElement;
 
 @RegisterForReflection
 @XmlRootElement(name = "XMLPojo")
+@XmlAccessorType(XmlAccessType.FIELD)
 public class TestJAXBPojo {
 
     @XmlElement(name = "PojoName")
diff --git a/pom.xml b/pom.xml
index 97b4c1966b..ff6c1ef7d4 100644
--- a/pom.xml
+++ b/pom.xml
@@ -59,7 +59,7 @@
         
<quarkiverse-mybatis.version>2.0.0.CR1</quarkiverse-mybatis.version><!-- 
https://repo1.maven.org/maven2/io/quarkiverse/mybatis/quarkus-mybatis-parent/ 
-->
         
<quarkiverse-pooled-jms.version>2.0.0.CR1</quarkiverse-pooled-jms.version><!-- 
https://repo1.maven.org/maven2/io/quarkiverse/messaginghub/quarkus-pooled-jms-parent/
 -->
         <quarkiverse-tika.version>1.0.3</quarkiverse-tika.version><!-- 
https://repo1.maven.org/maven2/io/quarkiverse/tika/quarkus-tika-parent/ -->
-        <quarkus.version>3.0.0.Alpha4</quarkus.version><!-- 
https://repo1.maven.org/maven2/io/quarkus/quarkus-bom/ -->
+        <quarkus.version>3.0.0.Alpha5</quarkus.version><!-- 
https://repo1.maven.org/maven2/io/quarkus/quarkus-bom/ -->
         
<quarkus-hazelcast-client.version>3.0.0</quarkus-hazelcast-client.version><!-- 
https://repo1.maven.org/maven2/com/hazelcast/quarkus-hazelcast-client-bom/ -->
         <quarkus-qpid-jms.version>2.0.0.Alpha3</quarkus-qpid-jms.version><!-- 
https://repo1.maven.org/maven2/org/amqphub/quarkus/quarkus-qpid-jms-bom/ -->
 
@@ -100,7 +100,7 @@
         
<google-auth-library-credentials.version>1.7.0</google-auth-library-credentials.version><!--
 TODO: Revert back to using Camel's version when gRPC versions are in sync -->
         
<google-oauth-client.version>${google-oauth-client-version}</google-oauth-client.version><!--
 TODO: Fix this in Camel https://github.com/apache/camel-quarkus/issues/4139 -->
         <graalvm.version>22.3.0</graalvm.version><!-- @sync 
io.quarkus:quarkus-bom:${quarkus.version} dep:org.graalvm.sdk:graal-sdk -->
-        <grpc.version>1.52.1</grpc.version><!-- @sync 
io.quarkus:quarkus-bom:${quarkus.version} dep:io.grpc:grpc-core -->
+        <grpc.version>1.53.0</grpc.version><!-- @sync 
io.quarkus:quarkus-bom:${quarkus.version} dep:io.grpc:grpc-core -->
         <hapi.version>${hapi-version}</hapi.version>
         <hapi-base.version>${hapi-base-version}</hapi-base.version>
         <hapi-fhir.version>${hapi-fhir-version}</hapi-fhir.version>
@@ -137,7 +137,7 @@
         <okio.version>${squareup-okio-version}</okio.version>
         <opencensus.version>0.31.0</opencensus.version><!-- Mess in Google 
cloud. Keep in sync with version used in 
com.google.http-client:google-http-client -->
         <perfmark-api.version>0.25.0</perfmark-api.version><!-- @sync 
io.grpc:grpc-netty-shaded:${grpc.version} dep:io.perfmark:perfmark-api -->
-        <protobuf.version>3.21.9</protobuf.version><!-- @sync 
io.quarkus:quarkus-bom:${quarkus.version} dep:com.google.protobuf:protobuf-java 
-->
+        <protobuf.version>3.22.0</protobuf.version><!-- @sync 
io.quarkus:quarkus-bom:${quarkus.version} dep:com.google.protobuf:protobuf-java 
-->
         <reactor-core.version>3.4.26</reactor-core.version><!-- @sync 
com.azure:azure-core:${azure-core.version} dep:io.projectreactor:reactor-core 
-->
         <reactor-netty.version>${reactor-netty-version}</reactor-netty.version>
         <retrofit.version>2.5.0</retrofit.version>

Reply via email to