This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-examples.git
commit 3f0468c7c93f1fb391146f20f6aa4a438c891e95 Author: Andrea Cosentino <[email protected]> AuthorDate: Wed Jan 18 12:12:59 2023 +0100 Move to 4.0.0-SNAPSHOT Signed-off-by: Andrea Cosentino <[email protected]> --- examples/README.adoc | 4 +--- .../java/org/apache/camel/example/transformer/demo/Order.java | 8 ++++---- .../org/apache/camel/example/transformer/demo/OrderResponse.java | 8 ++++---- 3 files changed, 9 insertions(+), 11 deletions(-) diff --git a/examples/README.adoc b/examples/README.adoc index 946d4d26..c63dc0b5 100644 --- a/examples/README.adoc +++ b/examples/README.adoc @@ -11,7 +11,7 @@ View the individual example READMEs for details. == Examples // examples: START -Number of Examples: 72 (0 deprecated) +Number of Examples: 71 (0 deprecated) [width="100%",cols="4,2,4",options="header"] |=== @@ -143,8 +143,6 @@ Number of Examples: 72 (0 deprecated) | link:kafka/README.adoc[Kafka] (kafka) | Messaging | An example for Kafka -| link:main-artemis/README.adoc[Main Artemis] (main-artemis) | Messaging | An example for showing standalone Camel with ActiveMQ Artemis - | link:netty-custom-correlation/README.adoc[Netty Custom Correlation] (netty-custom-correlation) | Messaging | An example for showing Camel Netty with custom codec and correlation id | link:spring-pulsar/README.adoc[Spring Pulsar] (spring-pulsar) | Messaging | An example using Spring XML to talk to the Pulsar server from different kind of client techniques diff --git a/examples/transformer-demo/src/main/java/org/apache/camel/example/transformer/demo/Order.java b/examples/transformer-demo/src/main/java/org/apache/camel/example/transformer/demo/Order.java index fea073fe..630a788d 100644 --- a/examples/transformer-demo/src/main/java/org/apache/camel/example/transformer/demo/Order.java +++ b/examples/transformer-demo/src/main/java/org/apache/camel/example/transformer/demo/Order.java @@ -16,10 +16,10 @@ */ package org.apache.camel.example.transformer.demo; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlRootElement; import org.apache.camel.dataformat.bindy.annotation.CsvRecord; import org.apache.camel.dataformat.bindy.annotation.DataField; diff --git a/examples/transformer-demo/src/main/java/org/apache/camel/example/transformer/demo/OrderResponse.java b/examples/transformer-demo/src/main/java/org/apache/camel/example/transformer/demo/OrderResponse.java index 504d507a..22025c8d 100644 --- a/examples/transformer-demo/src/main/java/org/apache/camel/example/transformer/demo/OrderResponse.java +++ b/examples/transformer-demo/src/main/java/org/apache/camel/example/transformer/demo/OrderResponse.java @@ -16,10 +16,10 @@ */ package org.apache.camel.example.transformer.demo; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlAttribute; -import javax.xml.bind.annotation.XmlRootElement; +import jakarta.xml.bind.annotation.XmlAccessType; +import jakarta.xml.bind.annotation.XmlAccessorType; +import jakarta.xml.bind.annotation.XmlAttribute; +import jakarta.xml.bind.annotation.XmlRootElement; /** * The OrderResponse.
