From 9ff0c132552947e010bad3a6931e067485c7a23e Mon Sep 17 00:00:00 2001 From: Tom Cunningham Date: Thu, 13 Apr 2023 08:11:53 -0400 Subject: [PATCH 1/7] Initial commit of Camel 3/4 upgrade rules - add stepwise upgrade rules for Camel/Camel Spring Boot based on the upgrade guides for each release seen here https://camel.apache.org/manual/camel-3x-upgrade-guide.html and https://camel.apache.org/manual/camel-4-migration-guide.html --- .../camel3/camel2/xml-31-changes.windup.xml | 100 ++++ .../camel3/camel2/xml-310-changes.windup.xml | 165 ++++++ .../camel3/camel2/xml-311-changes.windup.xml | 67 +++ .../camel3/camel2/xml-312-changes.windup.xml | 69 +++ .../camel3/camel2/xml-313-changes.windup.xml | 48 ++ .../camel3/camel2/xml-314-changes.windup.xml | 34 ++ .../camel3/camel2/xml-315-changes.windup.xml | 228 ++++++++ .../camel3/camel2/xml-316-changes.windup.xml | 45 ++ .../camel3/camel2/xml-317-changes.windup.xml | 294 ++++++++++ .../camel3/camel2/xml-318-changes.windup.xml | 56 ++ .../camel3/camel2/xml-319-changes.windup.xml | 99 ++++ .../camel3/camel2/xml-32-changes.windup.xml | 190 +++++++ .../camel3/camel2/xml-320-changes.windup.xml | 82 +++ .../camel3/camel2/xml-321-changes.windup.xml | 83 +++ .../camel3/camel2/xml-33-changes.windup.xml | 34 ++ .../camel3/camel2/xml-34-changes.windup.xml | 43 ++ .../camel3/camel2/xml-35-changes.windup.xml | 30 + .../camel3/camel2/xml-36-changes.windup.xml | 51 ++ .../camel3/camel2/xml-37-changes.windup.xml | 369 ++++++++++++ .../camel3/camel2/xml-38-changes.windup.xml | 50 ++ .../camel3/camel2/xml-39-changes.windup.xml | 251 +++++++++ .../camel4/camel3/xml-40-changes.windup.xml | 528 ++++++++++++++++++ 22 files changed, 2916 insertions(+) create mode 100644 rules/rules-reviewed/camel3/camel2/xml-31-changes.windup.xml create mode 100644 rules/rules-reviewed/camel3/camel2/xml-310-changes.windup.xml create mode 100644 rules/rules-reviewed/camel3/camel2/xml-311-changes.windup.xml create mode 100644 rules/rules-reviewed/camel3/camel2/xml-312-changes.windup.xml create mode 100644 rules/rules-reviewed/camel3/camel2/xml-313-changes.windup.xml create mode 100644 rules/rules-reviewed/camel3/camel2/xml-314-changes.windup.xml create mode 100644 rules/rules-reviewed/camel3/camel2/xml-315-changes.windup.xml create mode 100644 rules/rules-reviewed/camel3/camel2/xml-316-changes.windup.xml create mode 100644 rules/rules-reviewed/camel3/camel2/xml-317-changes.windup.xml create mode 100644 rules/rules-reviewed/camel3/camel2/xml-318-changes.windup.xml create mode 100644 rules/rules-reviewed/camel3/camel2/xml-319-changes.windup.xml create mode 100644 rules/rules-reviewed/camel3/camel2/xml-32-changes.windup.xml create mode 100644 rules/rules-reviewed/camel3/camel2/xml-320-changes.windup.xml create mode 100644 rules/rules-reviewed/camel3/camel2/xml-321-changes.windup.xml create mode 100644 rules/rules-reviewed/camel3/camel2/xml-33-changes.windup.xml create mode 100644 rules/rules-reviewed/camel3/camel2/xml-34-changes.windup.xml create mode 100644 rules/rules-reviewed/camel3/camel2/xml-35-changes.windup.xml create mode 100644 rules/rules-reviewed/camel3/camel2/xml-36-changes.windup.xml create mode 100644 rules/rules-reviewed/camel3/camel2/xml-37-changes.windup.xml create mode 100644 rules/rules-reviewed/camel3/camel2/xml-38-changes.windup.xml create mode 100644 rules/rules-reviewed/camel3/camel2/xml-39-changes.windup.xml create mode 100644 rules/rules-reviewed/camel4/camel3/xml-40-changes.windup.xml diff --git a/rules/rules-reviewed/camel3/camel2/xml-31-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-31-changes.windup.xml new file mode 100644 index 000000000..96392b9a0 --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/xml-31-changes.windup.xml @@ -0,0 +1,100 @@ + + + + + Rules for changes between Camel 3.0 and Camel 3.1 + + + + + + + + + + + + IMPORT + + + + + `HttpOperationFailedException"` has moved from package org.apache.camel.http.common to org.apache.camel.http.base in Camel 3.1. + + + + + + + + + + + + + + `camel-jaxp` component has been renamed to camel-xml-jaxp in Apache Camel 3.1. + + + + + + + + + + + + + + The `camel-management` dependency which provided JMX support has been removed from camel-spring-boot. If you need JMX support with Camel Spring Boot, please add a dependency on org.apache.camel:camel-management. + + + + + + + + + IMPORT + + + + + `org.apache.camel.http.common.cookie` package has been renamed to org.apache.camel.http.base.cookie and moved into the camel-http-base JAR in Apache Camel 3.1. + + + + + + + + + IMPORT + + + + + `org.apache.camel.tooling.util.JSonSchemaHelper` class has been removed in Apache Camel 3.1. Instead you can use utils coming from camel-util-json and the class org.apache.camel.tooling.util.PackageHelper. + + + + + + + + + IMPORT + + + + + `org.apache.camel.processor.validation.PredicateValidatingProcessor` class has been moved from camel-xml-jaxp JAR to camel-support JAR and renamed to org.apache.camel.support.processor. + + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/xml-310-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-310-changes.windup.xml new file mode 100644 index 000000000..659018175 --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/xml-310-changes.windup.xml @@ -0,0 +1,165 @@ + + + + + Rules for changes between Camel 3.9 and Camel 3.10 + + + + + + + + + + + + + + + + + `org.apache.camel:camel-jdbc` no longer depends on Spring Framework. Please use camel-spring-jdbc if you need Spring and Spring transaction support. + + + + + + + + + + + + `camel.component.atomix.cluster.service` configuration key has been renamed to camel.cluster.atomix. + + + + + + + + + + + `camel.component.consul.cluster.service` configuration key has been renamed to camel.cluster.consul. + + + + + + + + + + + `camel.component.consul.service-registry` configuration key has been renamed to camel.cloud.consul.service-registry. + + + + + + + + + + + `camel.component.file.cluster.service` configuration key has been renamed to camel.cluster.file. + + + + + + + + + + + `camel.component.hystrix.mapping` configuration key has been renamed to camel.hystrix.mapping. + + + + + + + + + + + `camel.component.jgroups.lock.cluster.service` configuration key has been renamed to camel.cluster.jgroups. + + + + + + + + + + + `camel.component.jgroups.raft.cluster.service` configuration key has been renamed to camel.cluster.jgroups-raft. + + + + + + + + + + + `camel.component.kubernetes.cluster.service` configuration key has been renamed to camel.cluster.kubernetes. + + + + + + + + + + + + `camel.component.servlet.mapping` configuration key has been renamed to camel.servlet.mapping. + + + + + + + + + + + `camel.component.undertow.spring.security` configuration key has been renamed to camel.security.undertow. + + + + + + + + + + + `camel.component.zookeeper.cluster.service` configuration key has been renamed to camel.cluster.zookeeper. + + + + + + + + + + + `camel.component.zookeeper.service-registry` configuration key has been renamed to camel.cloud.zookeeper. + + + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/xml-311-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-311-changes.windup.xml new file mode 100644 index 000000000..dc6c940b7 --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/xml-311-changes.windup.xml @@ -0,0 +1,67 @@ + + + + + Rules for changes between Camel 3.10 and Camel 3.11 + + + + + + + + + + + + + + + + + `org.apache.camel:camel-apns` component has been retired in Apache Camel 3.11. APNS (Apple Push Network System) has been retired by Apple. + + + + + + + + + + + + + `org.apache.camel:camel-saxon` no longer depends on camel-saxon-xslt in 3.11. Any application that needs to do xslt transformation with saxon should now declare an explicit dependency on camel-saxon-xslt. + + + + + + + + + + + + `camel.component.consul.service-registry` configuration key has been renamed to camel.cloud.consul. + + + + + + + + + + + `camel.cloud.consul.service-registry` configuration key has been renamed to camel.cloud.consul. + + + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/xml-312-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-312-changes.windup.xml new file mode 100644 index 000000000..1dac413f0 --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/xml-312-changes.windup.xml @@ -0,0 +1,69 @@ + + + + + Rules for changes between Camel 3.11 and Camel 3.12 + + + + + + + + + + + + + + + + + `org.apache.camel.springboot:camel-spring-cloud-starter` starter has been removed in Apache Camel 3.12. + + + + + + + + + + + + + `org.apache.camel.springboot:camel-spring-cloud-consul-starter has been removed in Apache Camel 3.12. + + + + + + + + + + + + + `org.apache.camel.springboot:camel-spring-cloud-netflix-starter` starter has been removed in Apache Camel 3.12. + + + + + + + + + + + + + `org.apache.camel.springboot:camel-spring-cloud-zookeeper-starter` starter has been removed in Apache Camel 3.12. + + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/xml-313-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-313-changes.windup.xml new file mode 100644 index 000000000..461d168d9 --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/xml-313-changes.windup.xml @@ -0,0 +1,48 @@ + + + + + Rules for changes between Camel 3.12 and Camel 3.13 + + + + + + + + + + + + + + + + + `org.apache.camel.springboot:camel-hazelzcast-starter` starter no longer has customer auto configuration options in Apache Camel 3.13. + + + + + + + + + + + + + + + + + This component has been refactored to be similar to other Camel components. The old component had an unusual static configuration of the MllpComponent which now is refactored to be Camel standard with regular getter/setters. The component is now also configured reflection free. We also cleaned up how the component dealt with which charset to use when processing HL7 messages. Users using camel-mllp is recommended to test their applications when upgrading to ensure this continues to work. + + + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/xml-314-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-314-changes.windup.xml new file mode 100644 index 000000000..45aec51f4 --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/xml-314-changes.windup.xml @@ -0,0 +1,34 @@ + + + + + Rules for changes between Camel 3.13 and Camel 3.14 + + + + + + + + + + + + IMPORT + + + + + + org.apache.kafka.clients.producer.KafkaProducer and org.apache.kafka.clients.consumer.KafkaConsumer have changed to using their interfaces org.apache.kafka.clients.producer.Producer and org.apache.kafka.clients.consumer.Consumer. + + + + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/xml-315-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-315-changes.windup.xml new file mode 100644 index 000000000..58433df9c --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/xml-315-changes.windup.xml @@ -0,0 +1,228 @@ + + + + + Rules for changes between Camel 3.14 and Camel 3.15 + + + + + + + + + + + + + + + + + In Camel 3.15, JDK 11 or 17 is required. JDK is no longer supported. + + + + + + + + + + + + + + + `camel-kamelet-reify` component has been retired in Apache Camel 3.15. + + + + + + + + + + + + + + `camel-spring-javaconfig` component has been retired in Apache Camel 3.15. + + + + + + + + + + + + `camel.dataformat.fhirjson"` configuration key has been renamed to camel.dataformat.fhir-json. + + + + + + + + + + + + `camel.dataformat.fhirxml` configuration key has been renamed to camel.dataformat.fhir-xml. + + + + + + + + + + + + `camel.dataformat.gzipdeflater` configuration key has been renamed to camel.dataformat.gzip-deflater. + + + + + + + + + + + `camel.dataformat.jacksonxml` configuration key has been renamed to camel.dataformat.jackson-xml. + + + + + + + + + + + `camel.dataformat.jsonapi` configuration key has been renamed to camel.dataformat.json-api. + + + + + + + + + + + `camel.dataformat.mimemultipart` configuration key has been renamed to camel.dataformat.mime-multipart. + + + + + + + + + + + `camel.dataformat.securexml` configuration key has been renamed to camel.dataformat.xml-security. + + + + + + + + + + + `camel.dataformat.tarfile` configuration key has been renamed to camel.dataformat.tar-file. + + + + + + + + + + + `camel.dataformat.tidymarkup` configuration key has been renamed to camel.dataformat.tidy-markup. + + + + + + + + + + + + `camel.dataformat.univocitycsv` configuration key has been renamed to camel.dataformat.univocity-csv. + + + + + + + + + + + `camel.dataformat.univocityfixed` configuration key has been renamed to camel.dataformat.univocity-fixed. + + + + + + + + + + + `camel.dataformat.univocitytsv` configuration key has been renamed to camel.dataformat.univocity-tsv. + + + + + + + + + + + `camel.dataformat.yaml-snakeyaml` configuration key has been renamed to camel.dataformat.snake-yaml. + + + + + + + + + + + `camel.dataformat.zipdeflater` configuration key has been renamed to camel.dataformat.zip-deflater. + + + + + + + + + + + `camel.dataformat.zipfile` configuration key has been renamed to camel.dataformat.zip-file. + + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/xml-316-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-316-changes.windup.xml new file mode 100644 index 000000000..11732142c --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/xml-316-changes.windup.xml @@ -0,0 +1,45 @@ + + + + + Rules for changes between Camel 3.15 and Camel 3.16 + + + + + + + + + + + + + + + + + `camel-testcontainers-spring` component has been replaced with camel-test-infra. + + + + + + + + + + + + + + `camel-testcontainers-spring-junit5` component has been replaced with camel-test-infra. + + + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/xml-317-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-317-changes.windup.xml new file mode 100644 index 000000000..88c123807 --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/xml-317-changes.windup.xml @@ -0,0 +1,294 @@ + + + + + Rules for changes between Camel 3.16 and Camel 3.17 + + + + + + + + + + + + + + + + + `org.apache.camel:camel-atomix` component has been removed in Camel 3.17.0. + + + + + + + + + + + + + `org.apache.camel:camel-beanstalk` component has been removed in Camel 3.17.0. + + + + + + + + + + + + + `org.apache.camel:camel-beanio` component has been removed in Camel 3.17.0. + + + + + + + + + + + + + `org.apache.camel:camel-etcd` component has been removed in Camel 3.17.0. + + + + + + + + + + + + + + `org.apache.camel:camel-elsql` component has been removed in Camel 3.17.0. + + + + + + + + + + + + + `org.apache.camel:camel-ganglia` component has been removed in Camel 3.17.0. + + + + + + + + + + + + + `org.apache.camel:camel-nsq` component has been removed in Camel 3.17.0. + + + + + + + + + + + + + `org.apache.camel:camel-hystrix` component has been removed in Camel 3.17.0. + + + + + + + + + + + + + `org.apache.camel:camel-jing` component has been removed in Camel 3.17.0. + + + + + + + + + + + + + `org.apache.camel:camel-leveldb-legacy` component has been removed in Camel 3.17.0. + + + + + + + + + + + + + `org.apache.camel:camel-msv` component has been removed in Camel 3.17.0. + + + + + + + + + + + + + `org.apache.camel:camel-nagios` component has been removed in Camel 3.17.0. + + + + + + + + + + + + + `org.apache.camel:camel-ribbon` component has been removed in Camel 3.17.0. + + + + + + + + + + + + + `org.apache.camel:camel-sip` component has been removed in Camel 3.17.0. + + + + + + + + + + + + + `org.apache.camel:camel-soroush` component has been removed in Camel 3.17.0. + + + + + + + + + + + + + + `org.apache.camel:camel-tagsoup` component has been removed in Camel 3.17.0. + + + + + + + + + + + + + `org.apache.camel:camel-yammer` component has been removed in Camel 3.17.0. + + + + + + + + + IMPORT + + + + + `org.apache.camel.builder.DeadLetterChannelBuilder` component has been replaced by org.apache.camel.builder.LegacyDeadLetterChannelBuilder in Camel 3.17.0. + + + + + + + + IMPORT + + + + + `org.apache.camel.builder.DefaultErrorHandlerBuilder` component has been replaced by org.apache.camel.builder.LegacyDefaultErrorHandlerBuilder in Camel 3.17.0. + + + + + + + + IMPORT + + + + + `org.apache.camel.builder.NoErrorHandlerBuilder` component has been replaced by org.apache.camel.builder.LegacyDeadLetterChannelBuilder in Camel 3.17.0. + + + + + + + + + IMPORT + + + + + `org.apache.camel.spring.spi.TransactionErrorHandlerBuilder` component has been replaced by org.apache.camel.spring.spi.LegacyTransactionErrorHandlerBuilder in Camel 3.17.0. + + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/xml-318-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-318-changes.windup.xml new file mode 100644 index 000000000..7875dc308 --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/xml-318-changes.windup.xml @@ -0,0 +1,56 @@ + + + + + Rules for changes between Camel 3.17 and Camel 3.18 + + + + + + + + + + + + + + + + + `org.apache.camel:camel-milo` component has been removed in Camel 3.18.0. + + + + + + + + + + + + + The camel-cxf JAR has been split up into SOAP vs REST and Spring and non Spring JARs in Camel 3.18.0. Please see the Camel 3.18 upgrade guide for details on which artifacts to migrate camel-cxf to. + + + + + + + + + + + + + The camel-cxf-starter has been split up into SOAP vs REST (camel-cxf-soap-starter and camel-cxf-rest-starter) in Camel 3.18.0. Please see the Camel 3.18 upgrade guide for details on which artifacts to migrate camel-cxf-starter to. + + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/xml-319-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-319-changes.windup.xml new file mode 100644 index 000000000..be3322693 --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/xml-319-changes.windup.xml @@ -0,0 +1,99 @@ + + + + + Rules for changes between Camel 3.18 and Camel 3.19 + + + + + + + + + + + + + + + + + + `org.apache.camel:camel-ftp` default TLS protocol is changed from TLSv1.2 to TLSv1.3. + + + + + + + + + + + + + `org.apache.camel:camel-kafka` - tthe default TLS protocol in Kafka Clients running on JDK11+ is TLSv1.2,TLSv1.3 (prefer v1.3 but can fall back to v1.2). in Camel 3.19.0. + + + + + + + + + + + + + `org.apache.camel:camel-netty` - the default TLS protocol is changed from TLSv1,TLSv1.1,TLSv1.2 to TLSv1.2,TLSv1.3 in Camel 3.19.0. + + + + + + + + + + + + + `org.apache.camel:camel-netty-http` - the default TLS protocol is changed from TLSv1,TLSv1.1,TLSv1.2 to TLSv1.2,TLSv1.3 in Camel 3.19.0. + + + + + + + + + + + + + + + `org.apache.camel:camel-ahc` component has been removed in Camel 3.19.0. + + + + + + + + + + + + + `org.apache.camel:camel-ahc-ws` component has been removed in Camel 3.19.0. + + + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/xml-32-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-32-changes.windup.xml new file mode 100644 index 000000000..db82637fc --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/xml-32-changes.windup.xml @@ -0,0 +1,190 @@ + + + + + Rules for changes between Camel 3.1 and Camel 3.2 + + + + + + + + + + + + + IMPORT + + + + + `org.apache.camel.impl.JndiRegistry` has been removed - please use org.apache.camel.support.jndi.JndiBeanRepository in org.apache.camel:camel-support instead. + + + + + + + + + + + + + + Camel on Apache Karaf / OSGi has been moved to its own project at: https://github.com/apache/camel-karaf. Please change the `org.apache.camel:camel-blueprint` dependency to `org.apache.came.karaf:camel-blueprint`. + + + + + + + + + + + + + Camel on Apache Karaf / OSGi has been moved to its own project at: https://github.com/apache/camel-karaf. Please change the `org.apache.camel:camel-test-blueprint` dependency to `org.apache.camel.karaf:camel-test-blueprint`. + + + + + + + + + + + + + Camel on Apache Karaf / OSGi has been moved to its own project at: https://github.com/apache/camel-karaf. Please change the `org.apache.camel:camel-test-karaf` dependency to `org.apache.camel.karaf:camel-test-karaf`. + + + + + + + + + + + + + Camel on Apache Karaf / OSGi has been moved to its own project at: https://github.com/apache/camel-karaf. Please change the `org.apache.camel:camel-eventadmin` dependency to `org.apache.camel.karaf:camel-eventadmin`. + + + + + + + + + + + + + Camel on Apache Karaf / OSGi has been moved to its own project at: https://github.com/apache/camel-karaf. Please change the `org.apache.camel:camel-kura` dependency to `org.apache.camel.karaf:camel-kura`. + + + + + + + + + + + + + Camel on Apache Karaf / OSGi has been moved to its own project at: https://github.com/apache/camel-karaf. Please change the `org.apache.camel:camel-osgi-activator` dependency to `org.apache.camel.karaf:camel-osgi-activator`. + + + + + + + + + + + + + Camel on Apache Karaf / OSGi has been moved to its own project at: https://github.com/apache/camel-karaf. Please change the `org.apache.camel:camel-paxlogging` dependency to `org.apache.camel.karaf:camel-paxlogging`. + + + + + + + + + + + + + + camel-spark-rest component has been removed - please any of the other REST capable components, such as camel-jetty, camel-netty-http or camel-undertow.. + + + + + + + + + + + + Configuring Camel spring boot components has changed its option keys to be flattened and have the .configuration prefix removed now. See the example in the upgrade guide for 3.2 for more details + + + + + + + + + + + + broker-u-r-l in Spring Boot properties renamed to broker-url. See the example in the upgrade guide for 3.2 for more details + + + + + + + + + IMPORT + + + + + org.apache.camel.cluster has been moved out of org.apache.camel:camel-core-engine into org.apache.camel:camel-cluster. See the example in the upgrade guide for 3.2 for more details + + + + + + + + + + + + + + The org.apache.camel.spring.Main class has been moved out of camel-spring JAR into its own JAR named camel-spring-main. + + + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/xml-320-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-320-changes.windup.xml new file mode 100644 index 000000000..62377cce5 --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/xml-320-changes.windup.xml @@ -0,0 +1,82 @@ + + + + + Rules for changes between Camel 3.19 and Camel 3.20 + + + + + + + + + + + + + + + + + `org.apache.camel:camel-bom` no longer includes dependencies with a type of test-jar, and the entries to several maven plugins have changed to include the correct groupId of org.apache.camel.maven + + + + + + + + + + + + + `camel-debezium-maven-plugin` has a new groupId of org.apache.camel.maven + + + + + + + + + + + + + `camel-salesforce-maven-plugin` has a new groupId of org.apache.camel.maven + + + + + + + + + + + + + `camel-servicenow-maven-plugin` has a new groupId of org.apache.camel.maven + + + + + + + + + + + + The Camel Google Pubsub headers have been renamed, since dotted keys are not allowed. + + + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/xml-321-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-321-changes.windup.xml new file mode 100644 index 000000000..1b42b8837 --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/xml-321-changes.windup.xml @@ -0,0 +1,83 @@ + + + + + Rules for changes between Camel 3.20 and Camel 3.21 + + + + + + + + + + + + + + + + The class org.apache.camel.impl.console.AbstractDevConsole has moved from camel-console to camel-support and moved to package org.apache.camel.support.console.AbstractDevConsole. + + + + + + + + + + + + + + + camel-java-joor-dsl can no longer load routes defined in class files as we consider it no more needed, consequently the ability to configure the compile directory and the compile load first flag using the corresponding camel-main properties is no longer possible. + + + + + + + + + + + + + camel-dozer has been deprecated and removed. + + + + + + + + + + + + + camel-cmis has been deprecated and removed. + + + + + + + + + + + + + The platform-http-starter has been changed from using camel-servlet to use Spring HTTP server directly. Therefore, all the HTTP endpoints are no longer prefixed with the servlet context-path. See the upgrade guide for an example. + + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/xml-33-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-33-changes.windup.xml new file mode 100644 index 000000000..546d47c34 --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/xml-33-changes.windup.xml @@ -0,0 +1,34 @@ + + + + + Rules for changes between Camel 3.2 and Camel 3.3 + + + + + + + + + + + + + IMPORT + + + + + + The dump model classes in package org.apache.camel.support.dump has been removed as they were not in use by Camel. + + + + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/xml-34-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-34-changes.windup.xml new file mode 100644 index 000000000..559b86d08 --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/xml-34-changes.windup.xml @@ -0,0 +1,43 @@ + + + + + Rules for changes between Camel 3.3 and Camel 3.4 + + + + + + + + + + + + + + + + + `camel-management` dependency has been removed from camel-test. camel-management allows JMX support - which is optional - in order to enable it please adda a dependency to org.apache.camel:camel-management. + + + + + + + + + + + + camel.service.lra keys have been flattened to camel.lra. See the example in the upgrade guide for 3.4 for more details + + + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/xml-35-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-35-changes.windup.xml new file mode 100644 index 000000000..c0fb3092f --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/xml-35-changes.windup.xml @@ -0,0 +1,30 @@ + + + + + Rules for changes between Camel 3.4 and Camel 3.5 + + + + + + + + + + + + + + + + + Camel has been migrated to using JUnit 5 as the default testing framework. Please read the notes in the upgrade guide and look to using org.apachec.camel:camel-test-spring-junit5 + + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/xml-36-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-36-changes.windup.xml new file mode 100644 index 000000000..7fd19a01e --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/xml-36-changes.windup.xml @@ -0,0 +1,51 @@ + + + + + Rules for changes between Camel 3.5 and Camel 3.6 + + + + + + + + + + + + IMPORT + + + + + + The class CamelFileDataSource has moved from camel-http-common package org.apache.camel.http.common to camel-attachments package org.apache.camel.attachment. + + + + org.apache.camel.attachment.CamelFileDataSource + org.apache.camel.http.common.CamelFileDataSource + + + + + + + + + + + + + + `camel-hipchat` component has been removed. + + + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/xml-37-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-37-changes.windup.xml new file mode 100644 index 000000000..2fbb43bf6 --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/xml-37-changes.windup.xml @@ -0,0 +1,369 @@ + + + + + Rules for changes between Camel 3.6 and Camel 3.7 + + + + + + + + + + + + IMPORT + + + + + + org.apache.camel.processor.interceptor.BreakpointSupport moved to to org.apache.camel.support.BreakpointSupport. + + + + org.apache.camel.processor.interceptor.BreakpointSupport + org.apache.camel.support.BreakpointSupport + + + + + + + + + IMPORT + + + + + + The class org.apache.camel.impl.validator.ProcessorValidator moved to org.apache.camel.processor.validator.ProcessorValidator. + + + + org.apache.camel.processor.validator.ProcessorValidator + org.apache.camel.impl.validator.ProcessorValidator + + + + + + + + + IMPORT + + + + + + The class org.apache.camel.impl.transformer.ProcessorTransformer moved to org.apache.camel.processor.transformer.ProcessorTransformer. + + + + org.apache.camel.processor.transformer.ProcessorTransformer + org.apache.camel.impl.transformer.ProcessorTransformer + + + + + + + + + IMPORT + + + + + + The class org.apache.camel.impl.transformer.DataFormatTransformer moved to org.apache.camel.processor.transformer.DataFormatTransformer. + + + + org.apache.camel.processor.transformer.DataFormatTransformer + org.apache.camel.impl.transformer.DataFormatTransformer + + + + + + + + + IMPORT + + + + + + The class org.apache.camel.impl.validator.ValidatorKey moved to org.apache.camel.impl.engine.ValidatorKey. + + + + org.apache.camel.impl.engine.ValidatorKey + org.apache.camel.impl.validator.ValidatorKey + + + + + + + + + IMPORT + + + + + + The class org.apache.camel.impl.transformer.TransformerKey moved to org.apache.camel.impl.engine.TransformerKey. + + + + org.apache.camel.impl.engine.TransformerKey + org.apache.camel.impl.transformer.TransformerKey + + + + + + + + + IMPORT + + + + + + The class org.apache.camel.impl.DefaultExecutorServiceManager was moved from camel-core-engine JAR to org.apache.camel.impl.engine.DefaultExecutorServiceManager in the camel-base JAR. + + + + org.apache.camel.impl.engine.DefaultExecutorServiceManager + org.apache.camel.impl.DefaultExecutorServiceManager + + + + + + + + + IMPORT + + + + + + The class org.apache.camel.processor.ConvertBodyProcessor was moved to org.apache.camel.support.ConvertBodyProcessor in the camel-support JAR. + + + + org.apache.camel.support.ConvertBodyProcessor + org.apache.camel.processor.ConvertBodyProcessor + + + + + + + + + IMPORT + + + + + + The class org.apache.camel.impl.engine.DefaultClaimCheckRepository moved to org.apache.camel.processor.DefaultClaimCheckRepository in the camel-core-processor JAR. + + + + org.apache.camel.processor.DefaultClaimCheckRepository + org.apache.camel.impl.engine.DefaultClaimCheckRepository + + + + + + + + IMPORT + + + + + + The class org.apache.camel.impl.engine.DefaultProducerCache was moved to org.apache.camel.support.cache.DefaultProducerCache. + + + + org.apache.camel.support.cache.DefaultProducerCache + org.apache.camel.impl.engine.DefaultProducerCache + + + + + + + + IMPORT + + + + + + The class org.apache.camel.impl.engine.DefaultConsumerCache was moved to org.apache.camel.support.cache.DefaultConsumerCache. + + + + org.apache.camel.support.cache.DefaultConsumerCache + org.apache.camel.impl.engine.DefaultConsumerCache + + + + + + + + + IMPORT + + + + + + The class org.apache.camel.impl.engine.EmptyProducerCache was moved to org.apache.camel.support.cache.EmptyProducerCache. + + + + org.apache.camel.support.cache.EmptyProducerCache + org.apache.camel.impl.engine.EmptyProducerCache + + + + + + + + IMPORT + + + + + + The class org.apache.camel.impl.engine.ServicePool was moved to org.apache.camel.support.cache.ServicePool. + + + + org.apache.camel.support.cache.ServicePool + org.apache.camel.impl.engine.ServicePool + + + + + + + + IMPORT + + + + + + The class org.apache.camel.impl.engine.ProducerServicePool was moved to org.apache.camel.support.cache.ProducerServicePool. + + + + org.apache.camel.support.cache.ProducerServicePool + org.apache.camel.support.cache.ProducerServicePool + + + + + + + + IMPORT + + + + + + The class org.apache.camel.impl.engine.PollingConsumerServicePool was moved to org.apache.camel.support.cache.PollingConsumerServicePool. + + + + org.apache.camel.support.cache.PollingConsumerServicePool + org.apache.camel.impl.engine.PollingConsumerServicePool + + + + + + + + IMPORT + + + + + + The class org.apache.camel.impl.engine.EventNotifierCallback was moved to org.apache.camel.support.cache.EventNotifierCallback. + + + + org.apache.camel.support.cache.EventNotifierCallback + org.apache.camel.impl.engine.EventNotifierCallback + + + + + + + + IMPORT + + + + + + The class org.apache.camel.impl.saga.InMemorySagaService was moved to org.apache.camel.saga.InMemorySagaService. + + + + org.apache.camel.saga.InMemorySagaService + org.apache.camel.impl.saga.InMemorySagaService + + + + + + + + IMPORT + + + + + + The class org.apache.camel.impl.saga.InMemorySagaCoordinator was moved to org.apache.camel.saga.InMemorySagaCoordinator. + + + + org.apache.camel.saga.InMemorySagaCoordinator + org.apache.camel.impl.saga.InMemorySagaCoordinator + + + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/xml-38-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-38-changes.windup.xml new file mode 100644 index 000000000..b6f0288c0 --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/xml-38-changes.windup.xml @@ -0,0 +1,50 @@ + + + + + Rules for changes between Camel 3.7 and Camel 3.8 + + + + + + + + + + + + + + + `camel.springboot.xml-routes` configuration key has been renamed to camel.springboot.routes-include-pattern. + + + + + + + + + + + `camel.springboot.xml-route-templates` configuration key has been renamed to camel.springboot.routes-include-pattern. + + + + + + + + + + + `camel.springboot.xml-rests` configuration key has been renamed to camel.springboot.routes-include-pattern. + + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/xml-39-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-39-changes.windup.xml new file mode 100644 index 000000000..28657e4c9 --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/xml-39-changes.windup.xml @@ -0,0 +1,251 @@ + + + + + Rules for changes between Camel 3.8 and Camel 3.9 + + + + + + + + + + + + + + + + + `org.apache.camel:camel-azure` artifact has been removed in Apache Camel 3.9. Please use camel-azure-storage-blob or camel-azure-storage-queue. + + + + + + + + + + + + + `org.apache.camel:camel-aws-sdb` artifact has been removed in Apache Camel 3.9. The upgrade guide states that there will be no substitution for this component because there is no SDK v2 client for it and the service is not listed in the AWS console. + + + + + + + + + + + + + `org.apache.camel:camel-aws-translate` artifact has been removed in Apache Camel 3.9. Please use camel-aws2-translate instead. + + + + + + + + + + + + + `org.apache.camel:camel-aws-sqs` artifact has been removed in Apache Camel 3.9. Please use camel-aws2-sqs instead. + + + + + + + + + + + + + `org.apache.camel:camel-aws-sns` artifact has been removed in Apache Camel 3.9. Please use camel-aws2-sns instead. + + + + + + + + + + + + + `org.apache.camel:camel-aws-msk` artifact has been removed in Apache Camel 3.9. Please use camel-aws2-msk instead. + + + + + + + + + + + + + `org.apache.camel:camel-aws-mq` artifact has been removed in Apache Camel 3.9. Please use camel-aws2-mq instead. + + + + + + + + + + + + + `org.apache.camel:camel-aws-kms` artifact has been removed in Apache Camel 3.9. Please use camel-aws2-kms instead. + + + + + + + + + + + + + `org.apache.camel:camel-aws-kinesis` artifact has been removed in Apache Camel 3.9. Please use camel-aws2-kinesis instead. + + + + + + + + + + + + + `org.apache.camel:camel-aws-kinesis-firehose` artifact has been removed in Apache Camel 3.9. Please use camel-aws2-kinesis-firehose instead. + + + + + + + + + + + + + `org.apache.camel:camel-aws-iam` artifact has been removed in Apache Camel 3.9. Please use camel-aws2-iam instead. + + + + + + + + + + + + + `org.apache.camel:camel-aws-eks` artifact has been removed in Apache Camel 3.9. Please use camel-aws2-eks instead. + + + + + + + + + + + + + `org.apache.camel:camel-aws-ecs` artifact has been removed in Apache Camel 3.9. Please use camel-aws2-ecs instead. + + + + + + + + + + + + + `org.apache.camel:camel-aws-ecs2` artifact has been removed in Apache Camel 3.9. Please use camel-aws2-ecs2 instead. + + + + + + + + + + + + + `org.apache.camel:camel-aws-ddb` artifact has been removed in Apache Camel 3.9. Please use camel-aws2-ddb instead. + + + + + + + + + + + + + `org.apache.camel:camel-aws-cw` artifact has been removed in Apache Camel 3.9. Please use camel-aws2-cw instead. + + + + + + + + + + + + + `org.apache.camel:camel-aws-s3` artifact has been removed in Apache Camel 3.9. Please use camel-aws2-s3 instead. + + + + + + + + + + + + + `org.apache.camel:camel-aws-swf` artifact has been removed in Apache Camel 3.9. The migration guide notes that there will not be a replacement for it. + + + + + + + diff --git a/rules/rules-reviewed/camel4/camel3/xml-40-changes.windup.xml b/rules/rules-reviewed/camel4/camel3/xml-40-changes.windup.xml new file mode 100644 index 000000000..c17cba149 --- /dev/null +++ b/rules/rules-reviewed/camel4/camel3/xml-40-changes.windup.xml @@ -0,0 +1,528 @@ + + + + + Rules for changes between Camel 3.0 and Camel 4.0 + + + + + + + + + + + + + + + + + + `camel-activemq` component has been removed in Apache Camel 4.0. Please explore alternative components such as camel-jms / camel-sjms / camel-amqp + + + + + + + + + + + + + + `camel-any23` component has been removed in Apache Camel 4.0. + + + + + + + + + + + + + + `camel-atmos` component has been removed in Apache Camel 4.0. + + + + + + + + + + + + + + `camel-caffeine-lrucache` component has been removed in Apache Camel 4.0. Please explore alternative components such as camel-cache, camel-ignite, camel-infinispan + + + + + + + + + + + + + + `camel-cdi` component has been removed in Apache Camel 4.0. Please explore alternative components such as camel-spring-boot, camel-quarkus + + + + + + + + + + + + + + `camel-directvm` component has been removed in Apache Camel 4.0. Please explore alternative components such as camel-direct + + + + + + + + + + + + + + `camel-dozer` component has been removed in Apache Camel 4.0. Please explore alternative components such as camel-mapstruct + + + + + + + + + + + + + + `camel-elasticsearch-rest` component has been removed in Apache Camel 4.0. Please explore alternative components such as camel-elasticsearch + + + + + + + + + + + + + + `camel-elasticsearch-rest` component has been removed in Apache Camel 4.0. Please explore alternative components such as camel-elasticsearch + + + + + + + + + + + + + + `camel-gora` component has been removed in Apache Camel 4.0. + + + + + + + + + + + + + + `camel-hbase` component has been removed in Apache Camel 4.0. + + + + + + + + + + + + + + `camel-iota` component has been removed in Apache Camel 4.0. + + + + + + + + + + + + + + `camel-ipfs` component has been removed in Apache Camel 4.0. + + + + + + + + + + + + + + `camel-jbpm` component has been removed in Apache Camel 4.0. + + + + + + + + + + + + + + `camel-jclouds` component has been removed in Apache Camel 4.0. + + + + + + + + + + + + + + `camel-johnzon` component has been removed in Apache Camel 4.0. Please explore alternative components such as camel-jackson, camel-fastjson, camel-gson + + + + + + + + + + + + + + `camel-microprofile-metrics` component has been removed in Apache Camel 4.0. Please explore alternative components such as camel-micrometer, camel-opentelemetry + + + + + + + + + + + + + + `camel-milo` component has been removed in Apache Camel 4.0. + + + + + + + + + + + + + + `camel-opentracing` component has been removed in Apache Camel 4.0. Please explore alternative components such as camel-micrometer, camel-opentelemetry + + + + + + + + + + + + + + `camel-optaplanner` component has been removed in Apache Camel 4.0. + + + + + + + + + + + + + + `camel-rabbitmq` component has been removed in Apache Camel 4.0. Please explore alternative components such as spring-rabbitmq-component + + + + + + + + + + + + + + `camel-rest-swagger` component has been removed in Apache Camel 4.0. Please explore alternative components such as camel-openapi-rest + + + + + + + + + + + + + + `camel-restdsl-swagger-plugin` component has been removed in Apache Camel 4.0. Please explore alternative components such as camel-restdsl-openapi-plugin + + + + + + + + + + + + + + `camel-resteasy` component has been removed in Apache Camel 4.0. Please explore alternative components such as camel-cxf, camel-rest + + + + + + + + + + + + + + `camel-spark` component has been removed in Apache Camel 4.0. + + + + + + + + + + + + + + `camel-spring-integration` component has been removed in Apache Camel 4.0. + + + + + + + + + + + + + + `camel-swift` component has been removed in Apache Camel 4.0. + + + + + + + + + + + + + + `camel-swagger-java` component has been removed in Apache Camel 4.0. Please explore camel-openapi-java as an alternative component. + + + + + + + + + + + + + + `camel-websocket` component has been removed in Apache Camel 4.0. Please explore +camel-vertx-websocket as an alternative component. + + + + + + + + + + + + + + `camel-websocket-jsr356` component has been removed in Apache Camel 4.0. Please explore +camel-vertx-websocket as an alternative component. + + + + + + + + + + + + + + `camel-vertx-kafka` component has been removed in Apache Camel 4.0. Please explore +camel-kafka as an alternative component. + + + + + + + + + + + + + + `camel-vm` component has been removed in Apache Camel 4.0. Please explore +camel-seda as an alternative component. + + + + + + + + + + + + + + `camel-xstream` component has been removed in Apache Camel 4.0. Please explore +camel-jacksonxml as an alternative component. + + + + + + + + + + + + + + `camel-zipkin` component has been removed in Apache Camel 4.0. Please explore +camel-micrometer, camel-opentelemetry as an alternative component. + + + + + + + + + + + + + + `camel-platform-http-starter` as been changed from using camel-servlet to use Spring HTTP server directly in Apache Camel 4.0. Therefore, all the HTTP endpoints are no longer prefixed with the servlet context-path (default is camel). + + + + + + + + + + + + + + `camel-micrometer-starter` has been changed - the uri tags are now static instead of dynamic (by default), as potential too many tags generated due to URI with dynamic values. + + + + + + + + From 0f69997b4ba5b0163e5c1ee95859837e375345fc Mon Sep 17 00:00:00 2001 From: Tom Cunningham Date: Fri, 5 May 2023 21:00:03 -0400 Subject: [PATCH 2/7] Add tests for camel 3.0->4.0 upgrades --- .../tests/data/xml-31-changes/SampleBean.java | 42 ++ .../camel2/tests/data/xml-31-changes/pom.xml | 175 +++++++ .../camel2/tests/data/xml-310-changes/pom.xml | 175 +++++++ .../data/xml-310-changes/sample.properties | 13 + .../camel2/tests/data/xml-311-changes/pom.xml | 178 ++++++++ .../data/xml-311-changes/sample.properties | 2 + .../camel2/tests/data/xml-312-changes/pom.xml | 185 ++++++++ .../camel2/tests/data/xml-313-changes/pom.xml | 175 +++++++ .../data/xml-314-changes/SampleBean.java | 40 ++ .../camel2/tests/data/xml-315-changes/pom.xml | 167 +++++++ .../data/xml-315-changes/sample.properties | 16 + .../camel2/tests/data/xml-316-changes/pom.xml | 175 +++++++ .../data/xml-317-changes/SampleBean.java | 43 ++ .../camel2/tests/data/xml-317-changes/pom.xml | 239 ++++++++++ .../camel2/tests/data/xml-318-changes/pom.xml | 210 +++++++++ .../camel2/tests/data/xml-319-changes/pom.xml | 194 ++++++++ .../tests/data/xml-32-changes/SampleBean.java | 41 ++ .../camel2/tests/data/xml-32-changes/pom.xml | 210 +++++++++ .../data/xml-32-changes/sample.properties | 3 + .../data/xml-320-changes/SampleBean.java | 42 ++ .../camel2/tests/data/xml-320-changes/pom.xml | 179 ++++++++ .../data/xml-321-changes/SampleBean.java | 40 ++ .../camel2/tests/data/xml-321-changes/pom.xml | 210 +++++++++ .../tests/data/xml-33-changes/SampleBean.java | 42 ++ .../camel2/tests/data/xml-34-changes/pom.xml | 210 +++++++++ .../data/xml-34-changes/sample.properties | 3 + .../camel2/tests/data/xml-35-changes/pom.xml | 175 +++++++ .../tests/data/xml-36-changes/SampleBean.java | 42 ++ .../camel2/tests/data/xml-36-changes/pom.xml | 210 +++++++++ .../tests/data/xml-37-changes/SampleBean.java | 59 +++ .../data/xml-38-changes/sample.properties | 3 + .../camel2/tests/data/xml-39-changes/pom.xml | 242 ++++++++++ .../tests/xml-31-changes.windup.test.xml | 84 ++++ .../tests/xml-310-changes.windup.test.xml | 168 +++++++ .../tests/xml-311-changes.windup.test.xml | 60 +++ .../tests/xml-312-changes.windup.test.xml | 60 +++ .../tests/xml-313-changes.windup.test.xml | 36 ++ .../tests/xml-314-changes.windup.test.xml | 24 + .../tests/xml-315-changes.windup.test.xml | 228 +++++++++ .../tests/xml-316-changes.windup.test.xml | 36 ++ .../tests/xml-317-changes.windup.test.xml | 264 +++++++++++ .../tests/xml-318-changes.windup.test.xml | 60 +++ .../tests/xml-319-changes.windup.test.xml | 84 ++++ .../tests/xml-32-changes.windup.test.xml | 168 +++++++ .../tests/xml-320-changes.windup.test.xml | 72 +++ .../tests/xml-321-changes.windup.test.xml | 72 +++ .../tests/xml-33-changes.windup.test.xml | 24 + .../tests/xml-34-changes.windup.test.xml | 36 ++ .../tests/xml-35-changes.windup.test.xml | 24 + .../tests/xml-36-changes.windup.test.xml | 36 ++ .../tests/xml-37-changes.windup.test.xml | 228 +++++++++ .../tests/xml-38-changes.windup.test.xml | 48 ++ .../tests/xml-39-changes.windup.test.xml | 228 +++++++++ .../camel3/camel2/xml-31-changes.windup.xml | 14 +- .../camel3/camel2/xml-311-changes.windup.xml | 4 +- .../camel3/camel2/xml-313-changes.windup.xml | 3 - .../camel3/camel2/xml-314-changes.windup.xml | 14 +- .../camel3/camel2/xml-315-changes.windup.xml | 39 +- .../camel3/camel2/xml-318-changes.windup.xml | 15 +- .../camel3/camel2/xml-319-changes.windup.xml | 2 +- .../camel3/camel2/xml-32-changes.windup.xml | 12 +- .../camel3/camel2/xml-320-changes.windup.xml | 14 +- .../camel3/camel2/xml-321-changes.windup.xml | 28 +- .../camel3/camel2/xml-33-changes.windup.xml | 4 +- .../camel3/camel2/xml-34-changes.windup.xml | 2 +- .../camel3/camel2/xml-35-changes.windup.xml | 2 +- .../camel3/camel2/xml-36-changes.windup.xml | 2 +- .../camel3/tests/data/xml-40-changes/pom.xml | 309 +++++++++++++ .../tests/xml-40-changes.windup.test.xml | 432 ++++++++++++++++++ .../camel4/camel3/xml-40-changes.windup.xml | 18 +- 70 files changed, 6604 insertions(+), 90 deletions(-) create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-31-changes/SampleBean.java create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-31-changes/pom.xml create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-310-changes/pom.xml create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-310-changes/sample.properties create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-311-changes/pom.xml create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-311-changes/sample.properties create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-312-changes/pom.xml create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-313-changes/pom.xml create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-314-changes/SampleBean.java create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-315-changes/pom.xml create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-315-changes/sample.properties create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-316-changes/pom.xml create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-317-changes/SampleBean.java create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-317-changes/pom.xml create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-318-changes/pom.xml create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-319-changes/pom.xml create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-32-changes/SampleBean.java create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-32-changes/pom.xml create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-32-changes/sample.properties create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-320-changes/SampleBean.java create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-320-changes/pom.xml create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-321-changes/SampleBean.java create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-321-changes/pom.xml create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-33-changes/SampleBean.java create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-34-changes/pom.xml create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-34-changes/sample.properties create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-35-changes/pom.xml create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-36-changes/SampleBean.java create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-36-changes/pom.xml create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-37-changes/SampleBean.java create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-38-changes/sample.properties create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-39-changes/pom.xml create mode 100644 rules/rules-reviewed/camel3/camel2/tests/xml-31-changes.windup.test.xml create mode 100644 rules/rules-reviewed/camel3/camel2/tests/xml-310-changes.windup.test.xml create mode 100644 rules/rules-reviewed/camel3/camel2/tests/xml-311-changes.windup.test.xml create mode 100644 rules/rules-reviewed/camel3/camel2/tests/xml-312-changes.windup.test.xml create mode 100644 rules/rules-reviewed/camel3/camel2/tests/xml-313-changes.windup.test.xml create mode 100644 rules/rules-reviewed/camel3/camel2/tests/xml-314-changes.windup.test.xml create mode 100644 rules/rules-reviewed/camel3/camel2/tests/xml-315-changes.windup.test.xml create mode 100644 rules/rules-reviewed/camel3/camel2/tests/xml-316-changes.windup.test.xml create mode 100644 rules/rules-reviewed/camel3/camel2/tests/xml-317-changes.windup.test.xml create mode 100644 rules/rules-reviewed/camel3/camel2/tests/xml-318-changes.windup.test.xml create mode 100644 rules/rules-reviewed/camel3/camel2/tests/xml-319-changes.windup.test.xml create mode 100644 rules/rules-reviewed/camel3/camel2/tests/xml-32-changes.windup.test.xml create mode 100644 rules/rules-reviewed/camel3/camel2/tests/xml-320-changes.windup.test.xml create mode 100644 rules/rules-reviewed/camel3/camel2/tests/xml-321-changes.windup.test.xml create mode 100644 rules/rules-reviewed/camel3/camel2/tests/xml-33-changes.windup.test.xml create mode 100644 rules/rules-reviewed/camel3/camel2/tests/xml-34-changes.windup.test.xml create mode 100644 rules/rules-reviewed/camel3/camel2/tests/xml-35-changes.windup.test.xml create mode 100644 rules/rules-reviewed/camel3/camel2/tests/xml-36-changes.windup.test.xml create mode 100644 rules/rules-reviewed/camel3/camel2/tests/xml-37-changes.windup.test.xml create mode 100644 rules/rules-reviewed/camel3/camel2/tests/xml-38-changes.windup.test.xml create mode 100644 rules/rules-reviewed/camel3/camel2/tests/xml-39-changes.windup.test.xml create mode 100644 rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/pom.xml create mode 100644 rules/rules-reviewed/camel4/camel3/tests/xml-40-changes.windup.test.xml diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-31-changes/SampleBean.java b/rules/rules-reviewed/camel3/camel2/tests/data/xml-31-changes/SampleBean.java new file mode 100644 index 000000000..c84251709 --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/tests/data/xml-31-changes/SampleBean.java @@ -0,0 +1,42 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package sample.camel; + +import org.springframework.beans.factory.annotation.Value; +import org.springframework.stereotype.Component; +import org.apache.camel.http.common.HttpOperationFailedException; +import org.apache.camel.http.common.cookie.Cookie; +import org.apache.camel.processor.validation.PredicateValidatingProcessor; + +/** + * A bean that returns a message when you call the {@link #saySomething()} method. + *

+ * Uses @Component("myBean") to register this bean with the name myBean + * that we use in the Camel route to lookup this bean. + */ +@Component("myBean") +public class SampleBean { + + @Value("${greeting}") + private String say; + + public String saySomething() { + HttpOperationFailedException hofe = new HttpOperationFailedException(); + return say; + } + +} diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-31-changes/pom.xml b/rules/rules-reviewed/camel3/camel2/tests/data/xml-31-changes/pom.xml new file mode 100644 index 000000000..08c1e44b2 --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/tests/data/xml-31-changes/pom.xml @@ -0,0 +1,175 @@ + + + + + 4.0.0 + + + org.apache.camel.springboot.example + examples + 3.20.1.redhat-00001 + + + camel-example-spring-boot-xml + Camel SB Examples :: XML + An example showing how to work with Camel routes in XML files and Spring Boot + + + Beginner + Spring Boot XML + + UTF-8 + UTF-8 + ${spring-boot-version} + + + + + + com.redhat.camel.springboot.platform + camel-spring-boot-bom + ${camel-spring-boot-version} + pom + import + + + + + + + + + org.springframework.boot + spring-boot-starter-web + + + org.springframework.boot + spring-boot-starter-tomcat + + + + + org.apache.camel + camel-jaxp + + + + org.springframework.boot + spring-boot-starter-undertow + + + org.springframework.boot + spring-boot-starter-actuator + + + + org.apache.camel.springboot + camel-micrometer-starter + + + + + org.apache.camel + camel-management + + + + + org.apache.camel.springboot + camel-spring-boot-xml-starter + + + org.apache.camel.springboot + camel-xml-jaxb-dsl-starter + + + org.apache.camel.springboot + camel-stream-starter + + + + + org.springframework.boot + spring-boot-starter-test + test + + + org.apache.camel + camel-test-spring-junit5 + test + + + org.junit.vintage + junit-vintage-engine + test + + + + + + + org.springframework.boot + spring-boot-maven-plugin + ${spring-boot-version} + + + + repackage + + + + + + + org.apache.camel + camel-maven-plugin + ${camel-community.version} + + + + + + + + openshift + + + + org.eclipse.jkube + openshift-maven-plugin + ${jkube-maven-plugin-version} + + + + resource + build + + + + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-310-changes/pom.xml b/rules/rules-reviewed/camel3/camel2/tests/data/xml-310-changes/pom.xml new file mode 100644 index 000000000..4d53ed27c --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/tests/data/xml-310-changes/pom.xml @@ -0,0 +1,175 @@ + + + + + 4.0.0 + + + org.apache.camel.springboot.example + examples + 3.20.1.redhat-00001 + + + camel-example-spring-boot-xml + Camel SB Examples :: XML + An example showing how to work with Camel routes in XML files and Spring Boot + + + Beginner + Spring Boot XML + + UTF-8 + UTF-8 + ${spring-boot-version} + + + + + + com.redhat.camel.springboot.platform + camel-spring-boot-bom + ${camel-spring-boot-version} + pom + import + + + + + + + + + org.springframework.boot + spring-boot-starter-web + + + org.springframework.boot + spring-boot-starter-tomcat + + + + + org.apache.camel + camel-jdbc + + + + org.springframework.boot + spring-boot-starter-undertow + + + org.springframework.boot + spring-boot-starter-actuator + + + + org.apache.camel.springboot + camel-micrometer-starter + + + + + org.apache.camel + camel-management + + + + + org.apache.camel.springboot + camel-spring-boot-xml-starter + + + org.apache.camel.springboot + camel-xml-jaxb-dsl-starter + + + org.apache.camel.springboot + camel-stream-starter + + + + + org.springframework.boot + spring-boot-starter-test + test + + + org.apache.camel + camel-test-spring-junit5 + test + + + org.junit.vintage + junit-vintage-engine + test + + + + + + + org.springframework.boot + spring-boot-maven-plugin + ${spring-boot-version} + + + + repackage + + + + + + + org.apache.camel + camel-maven-plugin + ${camel-community.version} + + + + + + + + openshift + + + + org.eclipse.jkube + openshift-maven-plugin + ${jkube-maven-plugin-version} + + + + resource + build + + + + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-310-changes/sample.properties b/rules/rules-reviewed/camel3/camel2/tests/data/xml-310-changes/sample.properties new file mode 100644 index 000000000..99028ce4d --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/tests/data/xml-310-changes/sample.properties @@ -0,0 +1,13 @@ +camel.component.atomix.cluster.service=foobar +camel.component.consul.cluster.service=foobar +camel.component.consul.service-registry=foobar +camel.component.file.cluster.service=foobar +camel.component.hystrix.mapping=foobar +camel.component.jgroups.lock.cluster.service=foobar +camel.component.jgroups.raft.cluster.service=foobar +camel.component.kubernetes.cluster.service=foobar +camel.component.servlet.mapping=foobar +camel.component.undertow.spring.security=foobar +camel.component.zookeeper.cluster.service=foobar +camel.component.zookeeper.service-registry=foobar + diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-311-changes/pom.xml b/rules/rules-reviewed/camel3/camel2/tests/data/xml-311-changes/pom.xml new file mode 100644 index 000000000..ff63c40d8 --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/tests/data/xml-311-changes/pom.xml @@ -0,0 +1,178 @@ + + + + + 4.0.0 + + + org.apache.camel.springboot.example + examples + 3.20.1.redhat-00001 + + + camel-example-spring-boot-xml + Camel SB Examples :: XML + An example showing how to work with Camel routes in XML files and Spring Boot + + + Beginner + Spring Boot XML + + UTF-8 + UTF-8 + ${spring-boot-version} + + + + + + com.redhat.camel.springboot.platform + camel-spring-boot-bom + ${camel-spring-boot-version} + pom + import + + + + + + + + + org.springframework.boot + spring-boot-starter-web + + + org.springframework.boot + spring-boot-starter-tomcat + + + + + org.apache.camel + camel-apns + + + org.apache.camel + camel-saxon + + + org.springframework.boot + spring-boot-starter-undertow + + + org.springframework.boot + spring-boot-starter-actuator + + + + org.apache.camel.springboot + camel-micrometer-starter + + + + + org.apache.camel + camel-management + + + + + org.apache.camel.springboot + camel-spring-boot-xml-starter + + + org.apache.camel.springboot + camel-xml-jaxb-dsl-starter + + + org.apache.camel.springboot + camel-stream-starter + + + + + org.springframework.boot + spring-boot-starter-test + test + + + org.apache.camel + camel-test-spring-junit5 + test + + + org.junit.vintage + junit-vintage-engine + test + + + + + + + org.springframework.boot + spring-boot-maven-plugin + ${spring-boot-version} + + + + repackage + + + + + + + org.apache.camel + camel-maven-plugin + ${camel-community.version} + + + + + + + + openshift + + + + org.eclipse.jkube + openshift-maven-plugin + ${jkube-maven-plugin-version} + + + + resource + build + + + + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-311-changes/sample.properties b/rules/rules-reviewed/camel3/camel2/tests/data/xml-311-changes/sample.properties new file mode 100644 index 000000000..e8061c314 --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/tests/data/xml-311-changes/sample.properties @@ -0,0 +1,2 @@ +camel.component.consul.service-registry.write-timeout-millis=foobar +camel.cloud.consul.service-registry=foobar diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-312-changes/pom.xml b/rules/rules-reviewed/camel3/camel2/tests/data/xml-312-changes/pom.xml new file mode 100644 index 000000000..039d5f178 --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/tests/data/xml-312-changes/pom.xml @@ -0,0 +1,185 @@ + + + + + 4.0.0 + + + org.apache.camel.springboot.example + examples + 3.20.1.redhat-00001 + + + camel-example-spring-boot-xml + Camel SB Examples :: XML + An example showing how to work with Camel routes in XML files and Spring Boot + + + Beginner + Spring Boot XML + + UTF-8 + UTF-8 + ${spring-boot-version} + + + + + + com.redhat.camel.springboot.platform + camel-spring-boot-bom + ${camel-spring-boot-version} + pom + import + + + + + + + + + org.springframework.boot + spring-boot-starter-web + + + org.springframework.boot + spring-boot-starter-tomcat + + + + + org.apache.camel + camel-jaxp + + + + org.springframework.boot + spring-boot-starter-undertow + + + org.springframework.boot + spring-boot-starter-actuator + + + + org.apache.camel.springboot + camel-spring-cloud-starter + + + org.apache.camel.springboot + camel-spring-cloud-consul-starter + + + org.apache.camel.springboot + camel-spring-cloud-netflix-starter + + + org.apache.camel.springboot + camel-spring-cloud-zookeeper-starter + + + org.apache.camel + camel-management + + + + + org.apache.camel.springboot + camel-spring-boot-xml-starter + + + org.apache.camel.springboot + camel-xml-jaxb-dsl-starter + + + org.apache.camel.springboot + camel-stream-starter + + + + + org.springframework.boot + spring-boot-starter-test + test + + + org.apache.camel + camel-test-spring-junit5 + test + + + org.junit.vintage + junit-vintage-engine + test + + + + + + + org.springframework.boot + spring-boot-maven-plugin + ${spring-boot-version} + + + + repackage + + + + + + + org.apache.camel + camel-maven-plugin + ${camel-community.version} + + + + + + + + openshift + + + + org.eclipse.jkube + openshift-maven-plugin + ${jkube-maven-plugin-version} + + + + resource + build + + + + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-313-changes/pom.xml b/rules/rules-reviewed/camel3/camel2/tests/data/xml-313-changes/pom.xml new file mode 100644 index 000000000..46ffeeaf7 --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/tests/data/xml-313-changes/pom.xml @@ -0,0 +1,175 @@ + + + + + 4.0.0 + + + org.apache.camel.springboot.example + examples + 3.20.1.redhat-00001 + + + camel-example-spring-boot-xml + Camel SB Examples :: XML + An example showing how to work with Camel routes in XML files and Spring Boot + + + Beginner + Spring Boot XML + + UTF-8 + UTF-8 + ${spring-boot-version} + + + + + + com.redhat.camel.springboot.platform + camel-spring-boot-bom + ${camel-spring-boot-version} + pom + import + + + + + + + + + org.springframework.boot + spring-boot-starter-web + + + org.springframework.boot + spring-boot-starter-tomcat + + + + + org.apache.camel + camel-mllp + + + + org.springframework.boot + spring-boot-starter-undertow + + + org.springframework.boot + spring-boot-starter-actuator + + + + org.apache.camel.springboot + camel-hazelzcast-starter + + + + + org.apache.camel + camel-management + + + + + org.apache.camel.springboot + camel-spring-boot-xml-starter + + + org.apache.camel.springboot + camel-xml-jaxb-dsl-starter + + + org.apache.camel.springboot + camel-stream-starter + + + + + org.springframework.boot + spring-boot-starter-test + test + + + org.apache.camel + camel-test-spring-junit5 + test + + + org.junit.vintage + junit-vintage-engine + test + + + + + + + org.springframework.boot + spring-boot-maven-plugin + ${spring-boot-version} + + + + repackage + + + + + + + org.apache.camel + camel-maven-plugin + ${camel-community.version} + + + + + + + + openshift + + + + org.eclipse.jkube + openshift-maven-plugin + ${jkube-maven-plugin-version} + + + + resource + build + + + + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-314-changes/SampleBean.java b/rules/rules-reviewed/camel3/camel2/tests/data/xml-314-changes/SampleBean.java new file mode 100644 index 000000000..5d278fdfe --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/tests/data/xml-314-changes/SampleBean.java @@ -0,0 +1,40 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package sample.camel; + +import org.springframework.beans.factory.annotation.Value; +import org.springframework.stereotype.Component; +import org.apache.kafka.clients.producer.ProducerConfig; + +/** + * A bean that returns a message when you call the {@link #saySomething()} method. + *

+ * Uses @Component("myBean") to register this bean with the name myBean + * that we use in the Camel route to lookup this bean. + */ +@Component("myBean") +public class SampleBean { + + @Value("${greeting}") + private String say; + + public String saySomething() { + HttpOperationFailedException hofe = new HttpOperationFailedException(); + return say; + } + +} diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-315-changes/pom.xml b/rules/rules-reviewed/camel3/camel2/tests/data/xml-315-changes/pom.xml new file mode 100644 index 000000000..48fb70f2b --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/tests/data/xml-315-changes/pom.xml @@ -0,0 +1,167 @@ + + + + + 4.0.0 + + + org.apache.camel.springboot.example + examples + 3.20.1.redhat-00001 + + + camel-example-spring-boot-xml + Camel SB Examples :: XML + An example showing how to work with Camel routes in XML files and Spring Boot + + + Beginner + Spring Boot XML + + UTF-8 + UTF-8 + ${spring-boot-version} + + + + + + com.redhat.camel.springboot.platform + camel-spring-boot-bom + ${camel-spring-boot-version} + pom + import + + + + + + + + + org.springframework.boot + spring-boot-starter-web + + + org.springframework.boot + spring-boot-starter-tomcat + + + + + org.apache.camel + camel-kamelet-reify + + + org.apache.camel + camel-spring-javaconfig + + + + + + + + org.springframework.boot + spring-boot-starter-undertow + + + org.springframework.boot + spring-boot-starter-actuator + + + + + org.apache.camel.springboot + camel-spring-boot-xml-starter + + + org.apache.camel.springboot + camel-xml-jaxb-dsl-starter + + + org.apache.camel.springboot + camel-stream-starter + + + + + org.springframework.boot + spring-boot-starter-test + test + + + org.junit.vintage + junit-vintage-engine + test + + + + + + + org.springframework.boot + spring-boot-maven-plugin + ${spring-boot-version} + + + + repackage + + + + + + + org.apache.camel + camel-maven-plugin + ${camel-community.version} + + + + + + + + openshift + + + + org.eclipse.jkube + openshift-maven-plugin + ${jkube-maven-plugin-version} + + + + resource + build + + + + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-315-changes/sample.properties b/rules/rules-reviewed/camel3/camel2/tests/data/xml-315-changes/sample.properties new file mode 100644 index 000000000..ed3c7a4a3 --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/tests/data/xml-315-changes/sample.properties @@ -0,0 +1,16 @@ +camel.dataformat.fhirjson.pretty-print=foobar +camel.dataformat.fhirxml.strip-versions-from-references=foobar +camel.dataformat.gzipdeflater.pretty-print=foobar +camel.dataformat.jacksonxml.use-list=foobar +camel.dataformat.jsonapi.pretty-print=foobar +camel.dataformat.mimemultipart.customizer=foobar +camel.dataformat.mime-multipart.customizer=foobar +camel.dataformat.securexml.secure-tag-contents=foobar +camel.dataformat.tarfile.secure=foobar +camel.dataformat.tidymarkup.field=foobar +camel.dataformat.univocitycsv.field=foobar +camel.dataformat.univocityfixed.field=foobar +camel.dataformat.univocitytsv.field=foobar +camel.dataformat.yaml-snakeyaml.field=foobar +camel.dataformat.zipdeflater.field=foobar +camel.dataformat.zipfile.field=foobar diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-316-changes/pom.xml b/rules/rules-reviewed/camel3/camel2/tests/data/xml-316-changes/pom.xml new file mode 100644 index 000000000..a4967ec28 --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/tests/data/xml-316-changes/pom.xml @@ -0,0 +1,175 @@ + + + + + 4.0.0 + + + org.apache.camel.springboot.example + examples + 3.20.1.redhat-00001 + + + camel-example-spring-boot-xml + Camel SB Examples :: XML + An example showing how to work with Camel routes in XML files and Spring Boot + + + Beginner + Spring Boot XML + + UTF-8 + UTF-8 + ${spring-boot-version} + + + + + + com.redhat.camel.springboot.platform + camel-spring-boot-bom + ${camel-spring-boot-version} + pom + import + + + + + + + + + org.springframework.boot + spring-boot-starter-web + + + org.springframework.boot + spring-boot-starter-tomcat + + + + + org.apache.camel + camel-testcontainers-spring + + + + org.springframework.boot + spring-boot-starter-undertow + + + org.springframework.boot + spring-boot-starter-actuator + + + + org.apache.camel + camel-testcontainers-spring-junit5 + + + + + org.apache.camel + camel-management + + + + + org.apache.camel.springboot + camel-spring-boot-xml-starter + + + org.apache.camel.springboot + camel-xml-jaxb-dsl-starter + + + org.apache.camel.springboot + camel-stream-starter + + + + + org.springframework.boot + spring-boot-starter-test + test + + + org.apache.camel + camel-test-spring-junit5 + test + + + org.junit.vintage + junit-vintage-engine + test + + + + + + + org.springframework.boot + spring-boot-maven-plugin + ${spring-boot-version} + + + + repackage + + + + + + + org.apache.camel + camel-maven-plugin + ${camel-community.version} + + + + + + + + openshift + + + + org.eclipse.jkube + openshift-maven-plugin + ${jkube-maven-plugin-version} + + + + resource + build + + + + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-317-changes/SampleBean.java b/rules/rules-reviewed/camel3/camel2/tests/data/xml-317-changes/SampleBean.java new file mode 100644 index 000000000..3cac99617 --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/tests/data/xml-317-changes/SampleBean.java @@ -0,0 +1,43 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package sample.camel; + +import org.springframework.beans.factory.annotation.Value; +import org.springframework.stereotype.Component; +import org.apache.camel.builder.DeadLetterChannelBuilder; +import org.apache.camel.builder.DefaultErrorHandlerBuilder; +import org.apache.camel.builder.NoErrorHandlerBuilder; +import org.apache.camel.spring.spi.TransactionErrorHandlerBuilder; + +/** + * A bean that returns a message when you call the {@link #saySomething()} method. + *

+ * Uses @Component("myBean") to register this bean with the name myBean + * that we use in the Camel route to lookup this bean. + */ +@Component("myBean") +public class SampleBean { + + @Value("${greeting}") + private String say; + + public String saySomething() { + HttpOperationFailedException hofe = new HttpOperationFailedException(); + return say; + } + +} diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-317-changes/pom.xml b/rules/rules-reviewed/camel3/camel2/tests/data/xml-317-changes/pom.xml new file mode 100644 index 000000000..c1dd1cb45 --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/tests/data/xml-317-changes/pom.xml @@ -0,0 +1,239 @@ + + + + + 4.0.0 + + + org.apache.camel.springboot.example + examples + 3.20.1.redhat-00001 + + + camel-example-spring-boot-xml + Camel SB Examples :: XML + An example showing how to work with Camel routes in XML files and Spring Boot + + + Beginner + Spring Boot XML + + UTF-8 + UTF-8 + ${spring-boot-version} + + + + + + com.redhat.camel.springboot.platform + camel-spring-boot-bom + ${camel-spring-boot-version} + pom + import + + + + + + + + + org.springframework.boot + spring-boot-starter-web + + + org.springframework.boot + spring-boot-starter-tomcat + + + + + org.apache.camel + camel-atomix + + + org.apache.camel + camel-beanstalk + + + org.apache.camel + camel-beanio + + + org.apache.camel + camel-etcd + + + org.apache.camel + camel-elsql + + + org.apache.camel + camel-ganglia + + + org.apache.camel + camel-nsq + + + org.apache.camel + camel-hystrix + + + org.apache.camel + camel-jing + + + org.apache.camel + camel-leveldb-legacy + + + org.apache.camel + camel-msv + + + org.apache.camel + camel-nagios + + + org.apache.camel + camel-ribbon + + + org.apache.camel + camel-sip + + + org.apache.camel + camel-soroush + + + org.apache.camel + camel-tagsoup + + + org.apache.camel + camel-yammer + + + + org.springframework.boot + spring-boot-starter-undertow + + + org.springframework.boot + spring-boot-starter-actuator + + + + org.apache.camel.springboot + camel-micrometer-starter + + + + + org.apache.camel + camel-management + + + + + org.apache.camel.springboot + camel-spring-boot-xml-starter + + + org.apache.camel.springboot + camel-xml-jaxb-dsl-starter + + + org.apache.camel.springboot + camel-stream-starter + + + + + org.springframework.boot + spring-boot-starter-test + test + + + org.apache.camel + camel-test-spring-junit5 + test + + + org.junit.vintage + junit-vintage-engine + test + + + + + + + org.springframework.boot + spring-boot-maven-plugin + ${spring-boot-version} + + + + repackage + + + + + + + org.apache.camel + camel-maven-plugin + ${camel-community.version} + + + + + + + + openshift + + + + org.eclipse.jkube + openshift-maven-plugin + ${jkube-maven-plugin-version} + + + + resource + build + + + + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-318-changes/pom.xml b/rules/rules-reviewed/camel3/camel2/tests/data/xml-318-changes/pom.xml new file mode 100644 index 000000000..483b4b26d --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/tests/data/xml-318-changes/pom.xml @@ -0,0 +1,210 @@ + + + + + 4.0.0 + + + org.apache.camel.springboot.example + examples + 3.20.1.redhat-00001 + + + camel-example-spring-boot-xml + Camel SB Examples :: XML + An example showing how to work with Camel routes in XML files and Spring Boot + + + Beginner + Spring Boot XML + + UTF-8 + UTF-8 + ${spring-boot-version} + + + + + + com.redhat.camel.springboot.platform + camel-spring-boot-bom + ${camel-spring-boot-version} + pom + import + + + + + + + + + org.springframework.boot + spring-boot-starter-web + + + org.springframework.boot + spring-boot-starter-tomcat + + + + + org.apache.camel + camel-milo + + + org.apache.camel + camel-cxf + + + org.apache.camel + camel-test-blueprint + + + org.apache.camel + camel-spring + + + org.apache.camel + camel-test-karaf + + + org.apache.camel + camel-eventadmin + + + org.apache.camel + camel-kura + + + org.apache.camel + camel-osgi-activator + + + org.apache.camel + camel-cxf-starter + + + org.apache.camel + camel-spark-rest + + + org.springframework.boot + spring-boot-starter-undertow + + + org.springframework.boot + spring-boot-starter-actuator + + + + org.apache.camel.springboot + cxf-starter + + + + + org.apache.camel + camel-management + + + + + org.apache.camel.springboot + camel-spring-boot-xml-starter + + + org.apache.camel.springboot + camel-xml-jaxb-dsl-starter + + + org.apache.camel.springboot + camel-stream-starter + + + + + org.springframework.boot + spring-boot-starter-test + test + + + org.apache.camel + camel-test-spring-junit5 + test + + + org.junit.vintage + junit-vintage-engine + test + + + + + + + org.springframework.boot + spring-boot-maven-plugin + ${spring-boot-version} + + + + repackage + + + + + + + org.apache.camel + camel-maven-plugin + ${camel-community.version} + + + + + + + + openshift + + + + org.eclipse.jkube + openshift-maven-plugin + ${jkube-maven-plugin-version} + + + + resource + build + + + + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-319-changes/pom.xml b/rules/rules-reviewed/camel3/camel2/tests/data/xml-319-changes/pom.xml new file mode 100644 index 000000000..0423a58d9 --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/tests/data/xml-319-changes/pom.xml @@ -0,0 +1,194 @@ + + + + + 4.0.0 + + + org.apache.camel.springboot.example + examples + 3.20.1.redhat-00001 + + + camel-example-spring-boot-xml + Camel SB Examples :: XML + An example showing how to work with Camel routes in XML files and Spring Boot + + + Beginner + Spring Boot XML + + UTF-8 + UTF-8 + ${spring-boot-version} + + + + + + com.redhat.camel.springboot.platform + camel-spring-boot-bom + ${camel-spring-boot-version} + pom + import + + + + + + + + + org.springframework.boot + spring-boot-starter-web + + + org.springframework.boot + spring-boot-starter-tomcat + + + + + org.apache.camel + camel-ftp + + + org.apache.camel + camel-kafka + + + org.apache.camel + camel-netty + + + org.apache.camel + camel-netty-http + + + org.apache.camel + camel-ahc + + + org.apache.camel + camel-ahc-ws + + + org.springframework.boot + spring-boot-starter-undertow + + + org.springframework.boot + spring-boot-starter-actuator + + + + org.apache.camel.springboot + camel-micrometer-starter + + + + + org.apache.camel + camel-management + + + + + org.apache.camel.springboot + camel-spring-boot-xml-starter + + + org.apache.camel.springboot + camel-xml-jaxb-dsl-starter + + + org.apache.camel.springboot + camel-stream-starter + + + + + org.springframework.boot + spring-boot-starter-test + test + + + org.apache.camel + camel-test-spring-junit5 + test + + + org.junit.vintage + junit-vintage-engine + test + + + + + + + org.springframework.boot + spring-boot-maven-plugin + ${spring-boot-version} + + + + repackage + + + + + + + org.apache.camel + camel-maven-plugin + ${camel-community.version} + + + + + + + + openshift + + + + org.eclipse.jkube + openshift-maven-plugin + ${jkube-maven-plugin-version} + + + + resource + build + + + + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-32-changes/SampleBean.java b/rules/rules-reviewed/camel3/camel2/tests/data/xml-32-changes/SampleBean.java new file mode 100644 index 000000000..aa608fc55 --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/tests/data/xml-32-changes/SampleBean.java @@ -0,0 +1,41 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package sample.camel; + +import org.springframework.beans.factory.annotation.Value; +import org.springframework.stereotype.Component; +import org.apache.camel.impl.JndiRegistry; +import org.apache.camel.cluster.FooBarCluster; + +/** + * A bean that returns a message when you call the {@link #saySomething()} method. + *

+ * Uses @Component("myBean") to register this bean with the name myBean + * that we use in the Camel route to lookup this bean. + */ +@Component("myBean") +public class SampleBean { + + @Value("${greeting}") + private String say; + + public String saySomething() { + HttpOperationFailedException hofe = new HttpOperationFailedException(); + return say; + } + +} diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-32-changes/pom.xml b/rules/rules-reviewed/camel3/camel2/tests/data/xml-32-changes/pom.xml new file mode 100644 index 000000000..deb10f14c --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/tests/data/xml-32-changes/pom.xml @@ -0,0 +1,210 @@ + + + + + 4.0.0 + + + org.apache.camel.springboot.example + examples + 3.20.1.redhat-00001 + + + camel-example-spring-boot-xml + Camel SB Examples :: XML + An example showing how to work with Camel routes in XML files and Spring Boot + + + Beginner + Spring Boot XML + + UTF-8 + UTF-8 + ${spring-boot-version} + + + + + + com.redhat.camel.springboot.platform + camel-spring-boot-bom + ${camel-spring-boot-version} + pom + import + + + + + + + + + org.springframework.boot + spring-boot-starter-web + + + org.springframework.boot + spring-boot-starter-tomcat + + + + + org.apache.camel + camel-jaxp + + + org.apache.camel + camel-blueprint + + + org.apache.camel + camel-test-blueprint + + + org.apache.camel + camel-spring + + + org.apache.camel + camel-test-karaf + + + org.apache.camel + camel-eventadmin + + + org.apache.camel + camel-kura + + + org.apache.camel + camel-osgi-activator + + + org.apache.camel + camel-paxlogging + + + org.apache.camel + camel-spark-rest + + + org.springframework.boot + spring-boot-starter-undertow + + + org.springframework.boot + spring-boot-starter-actuator + + + + org.apache.camel.springboot + camel-micrometer-starter + + + + + org.apache.camel + camel-management + + + + + org.apache.camel.springboot + camel-spring-boot-xml-starter + + + org.apache.camel.springboot + camel-xml-jaxb-dsl-starter + + + org.apache.camel.springboot + camel-stream-starter + + + + + org.springframework.boot + spring-boot-starter-test + test + + + org.apache.camel + camel-test-spring-junit5 + test + + + org.junit.vintage + junit-vintage-engine + test + + + + + + + org.springframework.boot + spring-boot-maven-plugin + ${spring-boot-version} + + + + repackage + + + + + + + org.apache.camel + camel-maven-plugin + ${camel-community.version} + + + + + + + + openshift + + + + org.eclipse.jkube + openshift-maven-plugin + ${jkube-maven-plugin-version} + + + + resource + build + + + + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-32-changes/sample.properties b/rules/rules-reviewed/camel3/camel2/tests/data/xml-32-changes/sample.properties new file mode 100644 index 000000000..1ec9777e9 --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/tests/data/xml-32-changes/sample.properties @@ -0,0 +1,3 @@ +camel.component.infinispan.configuration.hosts=localhost:11222 +camel.component.stomp.configuration.broker-u-r-l=bar + diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-320-changes/SampleBean.java b/rules/rules-reviewed/camel3/camel2/tests/data/xml-320-changes/SampleBean.java new file mode 100644 index 000000000..025c003ae --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/tests/data/xml-320-changes/SampleBean.java @@ -0,0 +1,42 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package sample.camel; + +import org.springframework.beans.factory.annotation.Value; +import org.springframework.stereotype.Component; +import org.apache.camel.impl.JndiRegistry; +import org.apache.camel.cluster.FooBarCluster; +import org.apache.camel.component.google.pubsub.GooglePubsubConstants; + +/** + * A bean that returns a message when you call the {@link #saySomething()} method. + *

+ * Uses @Component("myBean") to register this bean with the name myBean + * that we use in the Camel route to lookup this bean. + */ +@Component("myBean") +public class SampleBean { + + @Value("${greeting}") + private String say; + + public String saySomething() { + HttpOperationFailedException hofe = new HttpOperationFailedException(); + return say; + } + +} diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-320-changes/pom.xml b/rules/rules-reviewed/camel3/camel2/tests/data/xml-320-changes/pom.xml new file mode 100644 index 000000000..7b2e701cc --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/tests/data/xml-320-changes/pom.xml @@ -0,0 +1,179 @@ + + + + + 4.0.0 + + + org.apache.camel.springboot.example + examples + 3.20.1.redhat-00001 + + + camel-example-spring-boot-xml + Camel SB Examples :: XML + An example showing how to work with Camel routes in XML files and Spring Boot + + + Beginner + Spring Boot XML + + UTF-8 + UTF-8 + ${spring-boot-version} + + + + + + com.redhat.camel.springboot.platform + camel-spring-boot-bom + ${camel-spring-boot-version} + pom + import + + + + + + + + + org.springframework.boot + spring-boot-starter-web + + + org.springframework.boot + spring-boot-starter-tomcat + + + + + org.apache.camel + camel-bom + + + + org.springframework.boot + spring-boot-starter-undertow + + + org.springframework.boot + spring-boot-starter-actuator + + + + org.apache.camel.springboot + camel-micrometer-starter + + + + + org.apache.camel + camel-management + + + + + org.apache.camel.springboot + camel-spring-boot-xml-starter + + + org.apache.camel.springboot + camel-xml-jaxb-dsl-starter + + + org.apache.camel.springboot + camel-stream-starter + + + + + org.springframework.boot + spring-boot-starter-test + test + + + org.apache.camel + camel-test-spring-junit5 + test + + + org.junit.vintage + junit-vintage-engine + test + + + + + + + org.springframework.boot + spring-boot-maven-plugin + ${spring-boot-version} + + + + repackage + + + + + + + org.apache.camel + camel-debezium-maven-plugin + ${camel-community.version} + + + org.apache.camel + camel-salesforce-maven-plugin + ${camel-community.version} + + + org.apache.camel + camel-servicenow-maven-plugin + ${camel-community.version} + + + + + + openshift + + + + org.eclipse.jkube + openshift-maven-plugin + ${jkube-maven-plugin-version} + + + + resource + build + + + + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-321-changes/SampleBean.java b/rules/rules-reviewed/camel3/camel2/tests/data/xml-321-changes/SampleBean.java new file mode 100644 index 000000000..0f3a85df6 --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/tests/data/xml-321-changes/SampleBean.java @@ -0,0 +1,40 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package sample.camel; + +import org.springframework.beans.factory.annotation.Value; +import org.springframework.stereotype.Component; +import org.apache.camel.impl.console.AbstractDevConsole; + +/** + * A bean that returns a message when you call the {@link #saySomething()} method. + *

+ * Uses @Component("myBean") to register this bean with the name myBean + * that we use in the Camel route to lookup this bean. + */ +@Component("myBean") +public class SampleBean { + + @Value("${greeting}") + private String say; + + public String saySomething() { + HttpOperationFailedException hofe = new HttpOperationFailedException(); + return say; + } + +} diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-321-changes/pom.xml b/rules/rules-reviewed/camel3/camel2/tests/data/xml-321-changes/pom.xml new file mode 100644 index 000000000..9278c94e2 --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/tests/data/xml-321-changes/pom.xml @@ -0,0 +1,210 @@ + + + + + 4.0.0 + + + org.apache.camel.springboot.example + examples + 3.20.1.redhat-00001 + + + camel-example-spring-boot-xml + Camel SB Examples :: XML + An example showing how to work with Camel routes in XML files and Spring Boot + + + Beginner + Spring Boot XML + + UTF-8 + UTF-8 + ${spring-boot-version} + + + + + + com.redhat.camel.springboot.platform + camel-spring-boot-bom + ${camel-spring-boot-version} + pom + import + + + + + + + + + org.springframework.boot + spring-boot-starter-web + + + org.springframework.boot + spring-boot-starter-tomcat + + + + + org.apache.camel + camel-java-joor-dsl + + + org.apache.camel + camel-blueprint + + + org.apache.camel + camel-dozer + + + org.apache.camel + camel-cmis + + + org.apache.camel + camel-test-karaf + + + org.apache.camel + camel-eventadmin + + + org.apache.camel + camel-kura + + + org.apache.camel + camel-osgi-activator + + + org.apache.camel + camel-paxlogging + + + org.apache.camel + camel-spark-rest + + + org.springframework.boot + spring-boot-starter-undertow + + + org.springframework.boot + spring-boot-starter-actuator + + + + org.apache.camel.springboot + camel-platform-http-starter + + + + + org.apache.camel + camel-management + + + + + org.apache.camel.springboot + camel-spring-boot-xml-starter + + + org.apache.camel.springboot + camel-xml-jaxb-dsl-starter + + + org.apache.camel.springboot + camel-stream-starter + + + + + org.springframework.boot + spring-boot-starter-test + test + + + org.apache.camel + camel-test-spring-junit5 + test + + + org.junit.vintage + junit-vintage-engine + test + + + + + + + org.springframework.boot + spring-boot-maven-plugin + ${spring-boot-version} + + + + repackage + + + + + + + org.apache.camel + camel-maven-plugin + ${camel-community.version} + + + + + + + + openshift + + + + org.eclipse.jkube + openshift-maven-plugin + ${jkube-maven-plugin-version} + + + + resource + build + + + + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-33-changes/SampleBean.java b/rules/rules-reviewed/camel3/camel2/tests/data/xml-33-changes/SampleBean.java new file mode 100644 index 000000000..ab9fef848 --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/tests/data/xml-33-changes/SampleBean.java @@ -0,0 +1,42 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package sample.camel; + +import org.springframework.beans.factory.annotation.Value; +import org.springframework.stereotype.Component; +import org.apache.camel.impl.JndiRegistry; +import org.apache.camel.cluster.FooBarCluster; +import org.apache.camel.support.dump.DumpTruck; + +/** + * A bean that returns a message when you call the {@link #saySomething()} method. + *

+ * Uses @Component("myBean") to register this bean with the name myBean + * that we use in the Camel route to lookup this bean. + */ +@Component("myBean") +public class SampleBean { + + @Value("${greeting}") + private String say; + + public String saySomething() { + HttpOperationFailedException hofe = new HttpOperationFailedException(); + return say; + } + +} diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-34-changes/pom.xml b/rules/rules-reviewed/camel3/camel2/tests/data/xml-34-changes/pom.xml new file mode 100644 index 000000000..a1ca6ec56 --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/tests/data/xml-34-changes/pom.xml @@ -0,0 +1,210 @@ + + + + + 4.0.0 + + + org.apache.camel.springboot.example + examples + 3.20.1.redhat-00001 + + + camel-example-spring-boot-xml + Camel SB Examples :: XML + An example showing how to work with Camel routes in XML files and Spring Boot + + + Beginner + Spring Boot XML + + UTF-8 + UTF-8 + ${spring-boot-version} + + + + + + com.redhat.camel.springboot.platform + camel-spring-boot-bom + ${camel-spring-boot-version} + pom + import + + + + + + + + + org.springframework.boot + spring-boot-starter-web + + + org.springframework.boot + spring-boot-starter-tomcat + + + + + org.apache.camel + camel-jaxp + + + org.apache.camel + camel-test + + + org.apache.camel + camel-test-blueprint + + + org.apache.camel + camel-spring + + + org.apache.camel + camel-test-karaf + + + org.apache.camel + camel-eventadmin + + + org.apache.camel + camel-kura + + + org.apache.camel + camel-osgi-activator + + + org.apache.camel + camel-paxlogging + + + org.apache.camel + camel-spark-rest + + + org.springframework.boot + spring-boot-starter-undertow + + + org.springframework.boot + spring-boot-starter-actuator + + + + org.apache.camel.springboot + camel-micrometer-starter + + + + + org.apache.camel + camel-management + + + + + org.apache.camel.springboot + camel-spring-boot-xml-starter + + + org.apache.camel.springboot + camel-xml-jaxb-dsl-starter + + + org.apache.camel.springboot + camel-stream-starter + + + + + org.springframework.boot + spring-boot-starter-test + test + + + org.apache.camel + camel-test-spring-junit5 + test + + + org.junit.vintage + junit-vintage-engine + test + + + + + + + org.springframework.boot + spring-boot-maven-plugin + ${spring-boot-version} + + + + repackage + + + + + + + org.apache.camel + camel-maven-plugin + ${camel-community.version} + + + + + + + + openshift + + + + org.eclipse.jkube + openshift-maven-plugin + ${jkube-maven-plugin-version} + + + + resource + build + + + + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-34-changes/sample.properties b/rules/rules-reviewed/camel3/camel2/tests/data/xml-34-changes/sample.properties new file mode 100644 index 000000000..17b820e6e --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/tests/data/xml-34-changes/sample.properties @@ -0,0 +1,3 @@ +camel.component.infinispan.configuration.hosts=localhost:11222 +camel.component.stomp.configuration.broker-u-r-l=bar +camel.service.lra.enabled=true diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-35-changes/pom.xml b/rules/rules-reviewed/camel3/camel2/tests/data/xml-35-changes/pom.xml new file mode 100644 index 000000000..831ad2118 --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/tests/data/xml-35-changes/pom.xml @@ -0,0 +1,175 @@ + + + + + 4.0.0 + + + org.apache.camel.springboot.example + examples + 3.20.1.redhat-00001 + + + camel-example-spring-boot-xml + Camel SB Examples :: XML + An example showing how to work with Camel routes in XML files and Spring Boot + + + Beginner + Spring Boot XML + + UTF-8 + UTF-8 + ${spring-boot-version} + + + + + + com.redhat.camel.springboot.platform + camel-spring-boot-bom + ${camel-spring-boot-version} + pom + import + + + + + + + + + org.springframework.boot + spring-boot-starter-web + + + org.springframework.boot + spring-boot-starter-tomcat + + + + + org.apache.camel + camel-jaxp + + + + org.springframework.boot + spring-boot-starter-undertow + + + org.springframework.boot + spring-boot-starter-actuator + + + + org.apache.camel.springboot + camel-micrometer-starter + + + + + org.apache.camel + camel-management + + + + + org.apache.camel.springboot + camel-spring-boot-xml-starter + + + org.apache.camel.springboot + camel-xml-jaxb-dsl-starter + + + org.apache.camel.springboot + camel-stream-starter + + + + + org.springframework.boot + spring-boot-starter-test + test + + + org.apache.camel + camel-test-spring + test + + + org.junit.vintage + junit-vintage-engine + test + + + + + + + org.springframework.boot + spring-boot-maven-plugin + ${spring-boot-version} + + + + repackage + + + + + + + org.apache.camel + camel-maven-plugin + ${camel-community.version} + + + + + + + + openshift + + + + org.eclipse.jkube + openshift-maven-plugin + ${jkube-maven-plugin-version} + + + + resource + build + + + + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-36-changes/SampleBean.java b/rules/rules-reviewed/camel3/camel2/tests/data/xml-36-changes/SampleBean.java new file mode 100644 index 000000000..af0a70662 --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/tests/data/xml-36-changes/SampleBean.java @@ -0,0 +1,42 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package sample.camel; + +import org.springframework.beans.factory.annotation.Value; +import org.springframework.stereotype.Component; +import org.apache.camel.impl.JndiRegistry; +import org.apache.camel.cluster.FooBarCluster; +import org.apache.camel.http.common.CamelFileDataSource; + +/** + * A bean that returns a message when you call the {@link #saySomething()} method. + *

+ * Uses @Component("myBean") to register this bean with the name myBean + * that we use in the Camel route to lookup this bean. + */ +@Component("myBean") +public class SampleBean { + + @Value("${greeting}") + private String say; + + public String saySomething() { + HttpOperationFailedException hofe = new HttpOperationFailedException(); + return say; + } + +} diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-36-changes/pom.xml b/rules/rules-reviewed/camel3/camel2/tests/data/xml-36-changes/pom.xml new file mode 100644 index 000000000..b34c8e34f --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/tests/data/xml-36-changes/pom.xml @@ -0,0 +1,210 @@ + + + + + 4.0.0 + + + org.apache.camel.springboot.example + examples + 3.20.1.redhat-00001 + + + camel-example-spring-boot-xml + Camel SB Examples :: XML + An example showing how to work with Camel routes in XML files and Spring Boot + + + Beginner + Spring Boot XML + + UTF-8 + UTF-8 + ${spring-boot-version} + + + + + + com.redhat.camel.springboot.platform + camel-spring-boot-bom + ${camel-spring-boot-version} + pom + import + + + + + + + + + org.springframework.boot + spring-boot-starter-web + + + org.springframework.boot + spring-boot-starter-tomcat + + + + + org.apache.camel + camel-jaxp + + + org.apache.camel + camel-hipchat + + + org.apache.camel + camel-test-blueprint + + + org.apache.camel + camel-spring + + + org.apache.camel + camel-test-karaf + + + org.apache.camel + camel-eventadmin + + + org.apache.camel + camel-kura + + + org.apache.camel + camel-osgi-activator + + + org.apache.camel + camel-paxlogging + + + org.apache.camel + camel-spark-rest + + + org.springframework.boot + spring-boot-starter-undertow + + + org.springframework.boot + spring-boot-starter-actuator + + + + org.apache.camel.springboot + camel-micrometer-starter + + + + + org.apache.camel + camel-management + + + + + org.apache.camel.springboot + camel-spring-boot-xml-starter + + + org.apache.camel.springboot + camel-xml-jaxb-dsl-starter + + + org.apache.camel.springboot + camel-stream-starter + + + + + org.springframework.boot + spring-boot-starter-test + test + + + org.apache.camel + camel-test-spring-junit5 + test + + + org.junit.vintage + junit-vintage-engine + test + + + + + + + org.springframework.boot + spring-boot-maven-plugin + ${spring-boot-version} + + + + repackage + + + + + + + org.apache.camel + camel-maven-plugin + ${camel-community.version} + + + + + + + + openshift + + + + org.eclipse.jkube + openshift-maven-plugin + ${jkube-maven-plugin-version} + + + + resource + build + + + + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-37-changes/SampleBean.java b/rules/rules-reviewed/camel3/camel2/tests/data/xml-37-changes/SampleBean.java new file mode 100644 index 000000000..8b9806156 --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/tests/data/xml-37-changes/SampleBean.java @@ -0,0 +1,59 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package sample.camel; + +import org.springframework.beans.factory.annotation.Value; +import org.springframework.stereotype.Component; +import org.apache.camel.impl.JndiRegistry; +import org.apache.camel.cluster.FooBarCluster; +import org.apache.camel.processor.interceptor.BreakpointSupport; +import org.apache.camel.impl.validator.ProcessorValidator; +import org.apache.camel.impl.transformer.ProcessorTransformer; +import org.apache.camel.impl.transformer.DataFormatTransformer; +import org.apache.camel.impl.validator.ValidatorKey; +import org.apache.camel.impl.DefaultExecutorServiceManager; +import org.apache.camel.impl.transformer.TransformerKey; +import org.apache.camel.processor.ConvertBodyProcessor; +import org.apache.camel.impl.engine.DefaultClaimCheckRepository; +import org.apache.camel.impl.engine.DefaultProducerCache; +import org.apache.camel.impl.engine.DefaultConsumerCache; +import org.apache.camel.impl.engine.EmptyProducerCache; +import org.apache.camel.impl.engine.ServicePool; +import org.apache.camel.impl.engine.ProducerServicePool; +import org.apache.camel.impl.engine.PollingConsumerServicePool; +import org.apache.camel.impl.engine.EventNotifierCallback; +import org.apache.camel.impl.saga.InMemorySagaService; +import org.apache.camel.impl.saga.InMemorySagaCoordinator; + +/** + * A bean that returns a message when you call the {@link #saySomething()} method. + *

+ * Uses @Component("myBean") to register this bean with the name myBean + * that we use in the Camel route to lookup this bean. + */ +@Component("myBean") +public class SampleBean { + + @Value("${greeting}") + private String say; + + public String saySomething() { + HttpOperationFailedException hofe = new HttpOperationFailedException(); + return say; + } + +} diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-38-changes/sample.properties b/rules/rules-reviewed/camel3/camel2/tests/data/xml-38-changes/sample.properties new file mode 100644 index 000000000..dc17a0e92 --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/tests/data/xml-38-changes/sample.properties @@ -0,0 +1,3 @@ +camel.springboot.xml-routes=foobar +camel.springboot.xml-route-templates=bar +camel.springboot.xml-rests=foo diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-39-changes/pom.xml b/rules/rules-reviewed/camel3/camel2/tests/data/xml-39-changes/pom.xml new file mode 100644 index 000000000..32e38b853 --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/tests/data/xml-39-changes/pom.xml @@ -0,0 +1,242 @@ + + + + + 4.0.0 + + + org.apache.camel.springboot.example + examples + 3.20.1.redhat-00001 + + + camel-example-spring-boot-xml + Camel SB Examples :: XML + An example showing how to work with Camel routes in XML files and Spring Boot + + + Beginner + Spring Boot XML + + UTF-8 + UTF-8 + ${spring-boot-version} + + + + + + com.redhat.camel.springboot.platform + camel-spring-boot-bom + ${camel-spring-boot-version} + pom + import + + + + + + + + + org.springframework.boot + spring-boot-starter-web + + + org.springframework.boot + spring-boot-starter-tomcat + + + + + org.apache.camel + camel-azure + + + org.apache.camel + camel-aws-sdb + + + org.apache.camel + camel-aws-translate + + + org.apache.camel + camel-aws-sqs + + + org.apache.camel + camel-aws-sns + + + org.apache.camel + camel-aws-msk + + + org.apache.camel + camel-aws-mq + + + org.apache.camel + camel-aws-kms + + + org.apache.camel + camel-aws-kinesis + + + org.apache.camel + camel-aws-kinesis-firehose + + + org.apache.camel + camel-aws-iam + + + org.apache.camel + camel-aws-eks + + + org.apache.camel + camel-aws-ecs + + + org.apache.camel + camel-aws-ecs2 + + + org.apache.camel + camel-aws-ddb + + + org.apache.camel + camel-aws-cw + + + org.apache.camel + camel-aws-s3 + + + org.apache.camel + camel-aws-swf + + + org.springframework.boot + spring-boot-starter-undertow + + + org.springframework.boot + spring-boot-starter-actuator + + + + org.apache.camel.springboot + camel-micrometer-starter + + + + + org.apache.camel + camel-management + + + + + org.apache.camel.springboot + camel-spring-boot-xml-starter + + + org.apache.camel.springboot + camel-xml-jaxb-dsl-starter + + + org.apache.camel.springboot + camel-stream-starter + + + + + org.springframework.boot + spring-boot-starter-test + test + + + org.apache.camel + camel-test-spring-junit5 + test + + + org.junit.vintage + junit-vintage-engine + test + + + + + + + org.springframework.boot + spring-boot-maven-plugin + ${spring-boot-version} + + + + repackage + + + + + + + org.apache.camel + camel-maven-plugin + ${camel-community.version} + + + + + + + + openshift + + + + org.eclipse.jkube + openshift-maven-plugin + ${jkube-maven-plugin-version} + + + + resource + build + + + + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/tests/xml-31-changes.windup.test.xml b/rules/rules-reviewed/camel3/camel2/tests/xml-31-changes.windup.test.xml new file mode 100644 index 000000000..a4a8e2257 --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/tests/xml-31-changes.windup.test.xml @@ -0,0 +1,84 @@ + + + data/xml-31-changes + ../xml-31-changes.windup.xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/tests/xml-310-changes.windup.test.xml b/rules/rules-reviewed/camel3/camel2/tests/xml-310-changes.windup.test.xml new file mode 100644 index 000000000..a13501bfd --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/tests/xml-310-changes.windup.test.xml @@ -0,0 +1,168 @@ + + + data/xml-310-changes + ../xml-310-changes.windup.xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/tests/xml-311-changes.windup.test.xml b/rules/rules-reviewed/camel3/camel2/tests/xml-311-changes.windup.test.xml new file mode 100644 index 000000000..4a500b910 --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/tests/xml-311-changes.windup.test.xml @@ -0,0 +1,60 @@ + + + data/xml-311-changes + ../xml-311-changes.windup.xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/tests/xml-312-changes.windup.test.xml b/rules/rules-reviewed/camel3/camel2/tests/xml-312-changes.windup.test.xml new file mode 100644 index 000000000..54f19acb3 --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/tests/xml-312-changes.windup.test.xml @@ -0,0 +1,60 @@ + + + data/xml-312-changes + ../xml-312-changes.windup.xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/tests/xml-313-changes.windup.test.xml b/rules/rules-reviewed/camel3/camel2/tests/xml-313-changes.windup.test.xml new file mode 100644 index 000000000..7ee5948d9 --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/tests/xml-313-changes.windup.test.xml @@ -0,0 +1,36 @@ + + + data/xml-313-changes + ../xml-313-changes.windup.xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/tests/xml-314-changes.windup.test.xml b/rules/rules-reviewed/camel3/camel2/tests/xml-314-changes.windup.test.xml new file mode 100644 index 000000000..962ec689a --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/tests/xml-314-changes.windup.test.xml @@ -0,0 +1,24 @@ + + + data/xml-314-changes + ../xml-314-changes.windup.xml + + + + + + + + + + + + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/tests/xml-315-changes.windup.test.xml b/rules/rules-reviewed/camel3/camel2/tests/xml-315-changes.windup.test.xml new file mode 100644 index 000000000..a0d01133c --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/tests/xml-315-changes.windup.test.xml @@ -0,0 +1,228 @@ + + + data/xml-315-changes + ../xml-315-changes.windup.xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/tests/xml-316-changes.windup.test.xml b/rules/rules-reviewed/camel3/camel2/tests/xml-316-changes.windup.test.xml new file mode 100644 index 000000000..a28d48db3 --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/tests/xml-316-changes.windup.test.xml @@ -0,0 +1,36 @@ + + + data/xml-316-changes + ../xml-316-changes.windup.xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/tests/xml-317-changes.windup.test.xml b/rules/rules-reviewed/camel3/camel2/tests/xml-317-changes.windup.test.xml new file mode 100644 index 000000000..6927b68f4 --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/tests/xml-317-changes.windup.test.xml @@ -0,0 +1,264 @@ + + + data/xml-317-changes + ../xml-317-changes.windup.xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/tests/xml-318-changes.windup.test.xml b/rules/rules-reviewed/camel3/camel2/tests/xml-318-changes.windup.test.xml new file mode 100644 index 000000000..497280957 --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/tests/xml-318-changes.windup.test.xml @@ -0,0 +1,60 @@ + + + data/xml-318-changes + ../xml-318-changes.windup.xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/tests/xml-319-changes.windup.test.xml b/rules/rules-reviewed/camel3/camel2/tests/xml-319-changes.windup.test.xml new file mode 100644 index 000000000..3b1ebfbdf --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/tests/xml-319-changes.windup.test.xml @@ -0,0 +1,84 @@ + + + data/xml-319-changes + ../xml-319-changes.windup.xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/tests/xml-32-changes.windup.test.xml b/rules/rules-reviewed/camel3/camel2/tests/xml-32-changes.windup.test.xml new file mode 100644 index 000000000..81b614dda --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/tests/xml-32-changes.windup.test.xml @@ -0,0 +1,168 @@ + + + data/xml-32-changes + ../xml-32-changes.windup.xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/tests/xml-320-changes.windup.test.xml b/rules/rules-reviewed/camel3/camel2/tests/xml-320-changes.windup.test.xml new file mode 100644 index 000000000..9d7e88997 --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/tests/xml-320-changes.windup.test.xml @@ -0,0 +1,72 @@ + + + data/xml-320-changes + ../xml-320-changes.windup.xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/tests/xml-321-changes.windup.test.xml b/rules/rules-reviewed/camel3/camel2/tests/xml-321-changes.windup.test.xml new file mode 100644 index 000000000..2049445ef --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/tests/xml-321-changes.windup.test.xml @@ -0,0 +1,72 @@ + + + data/xml-321-changes + ../xml-321-changes.windup.xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/tests/xml-33-changes.windup.test.xml b/rules/rules-reviewed/camel3/camel2/tests/xml-33-changes.windup.test.xml new file mode 100644 index 000000000..f00a1e904 --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/tests/xml-33-changes.windup.test.xml @@ -0,0 +1,24 @@ + + + data/xml-33-changes + ../xml-33-changes.windup.xml + + + + + + + + + + + + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/tests/xml-34-changes.windup.test.xml b/rules/rules-reviewed/camel3/camel2/tests/xml-34-changes.windup.test.xml new file mode 100644 index 000000000..c680fe1bd --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/tests/xml-34-changes.windup.test.xml @@ -0,0 +1,36 @@ + + + data/xml-34-changes + ../xml-34-changes.windup.xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/tests/xml-35-changes.windup.test.xml b/rules/rules-reviewed/camel3/camel2/tests/xml-35-changes.windup.test.xml new file mode 100644 index 000000000..c1df55f56 --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/tests/xml-35-changes.windup.test.xml @@ -0,0 +1,24 @@ + + + data/xml-35-changes + ../xml-35-changes.windup.xml + + + + + + + + + + + + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/tests/xml-36-changes.windup.test.xml b/rules/rules-reviewed/camel3/camel2/tests/xml-36-changes.windup.test.xml new file mode 100644 index 000000000..a2e47e0b3 --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/tests/xml-36-changes.windup.test.xml @@ -0,0 +1,36 @@ + + + data/xml-36-changes + ../xml-36-changes.windup.xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/tests/xml-37-changes.windup.test.xml b/rules/rules-reviewed/camel3/camel2/tests/xml-37-changes.windup.test.xml new file mode 100644 index 000000000..5590d8d44 --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/tests/xml-37-changes.windup.test.xml @@ -0,0 +1,228 @@ + + + data/xml-37-changes + ../xml-37-changes.windup.xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/tests/xml-38-changes.windup.test.xml b/rules/rules-reviewed/camel3/camel2/tests/xml-38-changes.windup.test.xml new file mode 100644 index 000000000..7195c8c6b --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/tests/xml-38-changes.windup.test.xml @@ -0,0 +1,48 @@ + + + data/xml-38-changes + ../xml-38-changes.windup.xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/tests/xml-39-changes.windup.test.xml b/rules/rules-reviewed/camel3/camel2/tests/xml-39-changes.windup.test.xml new file mode 100644 index 000000000..5c8303e69 --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/tests/xml-39-changes.windup.test.xml @@ -0,0 +1,228 @@ + + + data/xml-39-changes + ../xml-39-changes.windup.xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/xml-31-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-31-changes.windup.xml index 96392b9a0..81d9ac92a 100644 --- a/rules/rules-reviewed/camel3/camel2/xml-31-changes.windup.xml +++ b/rules/rules-reviewed/camel3/camel2/xml-31-changes.windup.xml @@ -20,7 +20,7 @@ - `HttpOperationFailedException"` has moved from package org.apache.camel.http.common to org.apache.camel.http.base in Camel 3.1. + `HttpOperationFailedException` has moved from package org.apache.camel.http.common to org.apache.camel.http.base in Camel 3.1. @@ -34,7 +34,7 @@ - `camel-jaxp` component has been renamed to camel-xml-jaxp in Apache Camel 3.1. + `camel-jaxp` component has been renamed to camel-xml-jaxp in Apache Camel 3.1. @@ -43,12 +43,12 @@ - + - The `camel-management` dependency which provided JMX support has been removed from camel-spring-boot. If you need JMX support with Camel Spring Boot, please add a dependency on org.apache.camel:camel-management. + The `camel-management` dependency has been removed from camel-spring-boot - If you need JMX support with Camel Spring Boot, please add a dependency on org.apache.camel:camel-management @@ -56,13 +56,13 @@ - + IMPORT - - `org.apache.camel.http.common.cookie` package has been renamed to org.apache.camel.http.base.cookie and moved into the camel-http-base JAR in Apache Camel 3.1. + + `org.apache.camel.http.common.cookie` package has been renamed to org.apache.camel.http.base.cookie and moved into the camel-http-base JAR diff --git a/rules/rules-reviewed/camel3/camel2/xml-311-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-311-changes.windup.xml index dc6c940b7..fe7f97273 100644 --- a/rules/rules-reviewed/camel3/camel2/xml-311-changes.windup.xml +++ b/rules/rules-reviewed/camel3/camel2/xml-311-changes.windup.xml @@ -41,7 +41,7 @@ - + @@ -52,7 +52,7 @@ - + diff --git a/rules/rules-reviewed/camel3/camel2/xml-313-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-313-changes.windup.xml index 461d168d9..f4141c0f0 100644 --- a/rules/rules-reviewed/camel3/camel2/xml-313-changes.windup.xml +++ b/rules/rules-reviewed/camel3/camel2/xml-313-changes.windup.xml @@ -26,9 +26,6 @@ - - - diff --git a/rules/rules-reviewed/camel3/camel2/xml-314-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-314-changes.windup.xml index 45aec51f4..b77353847 100644 --- a/rules/rules-reviewed/camel3/camel2/xml-314-changes.windup.xml +++ b/rules/rules-reviewed/camel3/camel2/xml-314-changes.windup.xml @@ -19,14 +19,12 @@ - - - org.apache.kafka.clients.producer.KafkaProducer and org.apache.kafka.clients.consumer.KafkaConsumer have changed to using their interfaces org.apache.kafka.clients.producer.Producer and org.apache.kafka.clients.consumer.Consumer. - - - - + + org.apache.kafka.clients.producer.KafkaProducer and org.apache.kafka.clients.consumer.KafkaConsumer have changed to using their interfaces org.apache.kafka.clients.producer.Producer and org.apache.kafka.clients.consumer.Consumer. + + + diff --git a/rules/rules-reviewed/camel3/camel2/xml-315-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-315-changes.windup.xml index 58433df9c..654c143dd 100644 --- a/rules/rules-reviewed/camel3/camel2/xml-315-changes.windup.xml +++ b/rules/rules-reviewed/camel3/camel2/xml-315-changes.windup.xml @@ -15,18 +15,17 @@ - + - - In Camel 3.15, JDK 11 or 17 is required. JDK is no longer supported. + + JDK 8 no longer supported - In Camel 3.15, JDK 11 or 17 is required. - @@ -57,11 +56,11 @@ - + - `camel.dataformat.fhirjson"` configuration key has been renamed to camel.dataformat.fhir-json. + `camel.dataformat.fhirjson` configuration key has been renamed to camel.dataformat.fhir-json. @@ -69,7 +68,7 @@ - + @@ -81,7 +80,7 @@ - + @@ -92,7 +91,7 @@ - + @@ -103,7 +102,7 @@ - + @@ -114,7 +113,7 @@ - + @@ -125,7 +124,7 @@ - + @@ -136,7 +135,7 @@ - + @@ -147,7 +146,7 @@ - + @@ -159,7 +158,7 @@ - + @@ -170,7 +169,7 @@ - + @@ -181,7 +180,7 @@ - + @@ -192,7 +191,7 @@ - + @@ -203,7 +202,7 @@ - + @@ -214,7 +213,7 @@ - + diff --git a/rules/rules-reviewed/camel3/camel2/xml-318-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-318-changes.windup.xml index 7875dc308..c05ca0a88 100644 --- a/rules/rules-reviewed/camel3/camel2/xml-318-changes.windup.xml +++ b/rules/rules-reviewed/camel3/camel2/xml-318-changes.windup.xml @@ -46,7 +46,20 @@ - The camel-cxf-starter has been split up into SOAP vs REST (camel-cxf-soap-starter and camel-cxf-rest-starter) in Camel 3.18.0. Please see the Camel 3.18 upgrade guide for details on which artifacts to migrate camel-cxf-starter to. + `camel-cxf-starter` component has been split up - The camel-cxf-starter has been split up into SOAP vs REST (camel-cxf-soap-starter and camel-cxf-rest-starter) in Camel 3.18.0. Please see the Camel 3.18 upgrade guide for details on which artifacts to migrate camel-cxf-starter to. + + + + + + + + + + + + + `camel-cxf-starter` component has been split up - The camel-cxf-starter has been split up into SOAP vs REST (camel-cxf-soap-starter and camel-cxf-rest-starter) in Camel 3.18.0. Please see the Camel 3.18 upgrade guide for details on which artifacts to migrate camel-cxf-starter to. diff --git a/rules/rules-reviewed/camel3/camel2/xml-319-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-319-changes.windup.xml index be3322693..ea77b17db 100644 --- a/rules/rules-reviewed/camel3/camel2/xml-319-changes.windup.xml +++ b/rules/rules-reviewed/camel3/camel2/xml-319-changes.windup.xml @@ -34,7 +34,7 @@ - `org.apache.camel:camel-kafka` - tthe default TLS protocol in Kafka Clients running on JDK11+ is TLSv1.2,TLSv1.3 (prefer v1.3 but can fall back to v1.2). in Camel 3.19.0. + `camel-kafka` default TLS protocol is TLSv1.2,TLSv1.3 - the default TLS protocol in Kafka Clients running on JDK11+ is TLSv1.2,TLSv1.3 (prefer v1.3 but can fall back to v1.2). in Camel 3.19.0. diff --git a/rules/rules-reviewed/camel3/camel2/xml-32-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-32-changes.windup.xml index db82637fc..3e0db61af 100644 --- a/rules/rules-reviewed/camel3/camel2/xml-32-changes.windup.xml +++ b/rules/rules-reviewed/camel3/camel2/xml-32-changes.windup.xml @@ -88,7 +88,7 @@ Camel on Apache Karaf / OSGi has been moved to its own project at: https://github.com/apache/camel-karaf. Please change the `org.apache.camel:camel-kura` dependency to `org.apache.camel.karaf:camel-kura`. - + @@ -135,11 +135,11 @@ - + - - Configuring Camel spring boot components has changed its option keys to be flattened and have the .configuration prefix removed now. See the example in the upgrade guide for 3.2 for more details + + Camel Spring Boot has flattened its option keys and the .configuration prefix has been removed. See the example in the upgrade guide for 3.2 for more details @@ -147,7 +147,7 @@ - + @@ -159,7 +159,7 @@ - + IMPORT diff --git a/rules/rules-reviewed/camel3/camel2/xml-320-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-320-changes.windup.xml index 62377cce5..e990e7616 100644 --- a/rules/rules-reviewed/camel3/camel2/xml-320-changes.windup.xml +++ b/rules/rules-reviewed/camel3/camel2/xml-320-changes.windup.xml @@ -66,15 +66,15 @@ - + + IMPORT + - - - The Camel Google Pubsub headers have been renamed, since dotted keys are not allowed. - - - + + The Camel Google Pubsub headers have been renamed, since dotted keys are not allowed. + + diff --git a/rules/rules-reviewed/camel3/camel2/xml-321-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-321-changes.windup.xml index 1b42b8837..60108c40d 100644 --- a/rules/rules-reviewed/camel3/camel2/xml-321-changes.windup.xml +++ b/rules/rules-reviewed/camel3/camel2/xml-321-changes.windup.xml @@ -14,32 +14,32 @@ - + + IMPORT + - - - The class org.apache.camel.impl.console.AbstractDevConsole has moved from camel-console to camel-support and moved to package org.apache.camel.support.console.AbstractDevConsole. - - - + + The class org.apache.camel.impl.console.AbstractDevConsole has moved from camel-console to camel-support and moved to package org.apache.camel.support.console.AbstractDevConsole. + + - + - + - - camel-java-joor-dsl can no longer load routes defined in class files as we consider it no more needed, consequently the ability to configure the compile directory and the compile load first flag using the corresponding camel-main properties is no longer possible. + + camel-java-joor-dsl can no longer load routes defined in class files as we consider it no longer needed, consequently the ability to configure the compile directory and the compile load first flag using the corresponding camel-main properties is no longer possible. - + @@ -52,7 +52,7 @@ - + @@ -65,7 +65,7 @@ - + diff --git a/rules/rules-reviewed/camel3/camel2/xml-33-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-33-changes.windup.xml index 546d47c34..f214a68d7 100644 --- a/rules/rules-reviewed/camel3/camel2/xml-33-changes.windup.xml +++ b/rules/rules-reviewed/camel3/camel2/xml-33-changes.windup.xml @@ -15,12 +15,12 @@ - + IMPORT - + The dump model classes in package org.apache.camel.support.dump has been removed as they were not in use by Camel. diff --git a/rules/rules-reviewed/camel3/camel2/xml-34-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-34-changes.windup.xml index 559b86d08..4cd0e102d 100644 --- a/rules/rules-reviewed/camel3/camel2/xml-34-changes.windup.xml +++ b/rules/rules-reviewed/camel3/camel2/xml-34-changes.windup.xml @@ -28,7 +28,7 @@ - + diff --git a/rules/rules-reviewed/camel3/camel2/xml-35-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-35-changes.windup.xml index c0fb3092f..ed2f221a3 100644 --- a/rules/rules-reviewed/camel3/camel2/xml-35-changes.windup.xml +++ b/rules/rules-reviewed/camel3/camel2/xml-35-changes.windup.xml @@ -20,7 +20,7 @@ - Camel has been migrated to using JUnit 5 as the default testing framework. Please read the notes in the upgrade guide and look to using org.apachec.camel:camel-test-spring-junit5 + Camel has been migrated to using JUnit 5 as the default testing framework. Please read the notes in the upgrade guide and look to using org.apache.camel:camel-test-spring-junit5 diff --git a/rules/rules-reviewed/camel3/camel2/xml-36-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-36-changes.windup.xml index 7fd19a01e..237909301 100644 --- a/rules/rules-reviewed/camel3/camel2/xml-36-changes.windup.xml +++ b/rules/rules-reviewed/camel3/camel2/xml-36-changes.windup.xml @@ -19,7 +19,7 @@ - + The class CamelFileDataSource has moved from camel-http-common package org.apache.camel.http.common to camel-attachments package org.apache.camel.attachment. diff --git a/rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/pom.xml b/rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/pom.xml new file mode 100644 index 000000000..f0ef6b542 --- /dev/null +++ b/rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/pom.xml @@ -0,0 +1,309 @@ + + + + + 4.0.0 + + + org.apache.camel.springboot.example + examples + 3.20.1.redhat-00001 + + + camel-example-spring-boot-xml + Camel SB Examples :: XML + An example showing how to work with Camel routes in XML files and Spring Boot + + + Beginner + Spring Boot XML + + UTF-8 + UTF-8 + ${spring-boot-version} + + + + + + com.redhat.camel.springboot.platform + camel-spring-boot-bom + ${camel-spring-boot-version} + pom + import + + + + + + + + + org.springframework.boot + spring-boot-starter-web + + + org.springframework.boot + spring-boot-starter-tomcat + + + + + org.apache.camel + camel-activemq + + + org.apache.camel + camel-blueprint + + + org.apache.camel + camel-any23 + + + org.apache.camel + camel-atmos + + + org.apache.camel + camel-caffeine-lrucache + + + org.apache.camel + camel-cdi + + + org.apache.camel + camel-directvm + + + org.apache.camel + camel-dozer + + + org.apache.camel + camel-elasticsearch-rest + + + org.apache.camel + camel-gora + + + org.apache.camel + camel-hbase + + + org.apache.camel + camel-iota + + + org.apache.camel + camel-ipfs + + + org.apache.camel + camel-jbpm + + + org.apache.camel + camel-jclouds + + + org.apache.camel + camel-johnzon + + + org.apache.camel + camel-microprofile-metrics + + + org.apache.camel + camel-milo + + + org.apache.camel + camel-opentracing + + + org.apache.camel + camel-optaplanner + + + org.apache.camel + camel-rabbitmq + + + org.apache.camel + camel-rest-swagger + + + org.apache.camel + camel-restdsl-swagger-plugin + + + org.apache.camel + camel-resteasy + + + org.apache.camel + camel-spark + + + org.apache.camel + camel-spring-integration + + + org.apache.camel + camel-swift + + + org.apache.camel + camel-swagger-java + + + org.apache.camel + camel-websocket + + + org.apache.camel + camel-websocket-jsr356 + + + org.apache.camel + camel-vertx-kafka + + + org.apache.camel + camel-vm + + + org.apache.camel + camel-xstream + + + org.apache.camel + camel-zipkin + + + org.springframework.boot + spring-boot-starter-undertow + + + org.springframework.boot + spring-boot-starter-actuator + + + + org.apache.camel.springboot + camel-micrometer-starter + + + org.apache.camel.springboot + camel-platform-http-starter + + + + org.apache.camel + camel-management + + + + + org.apache.camel.springboot + camel-spring-boot-xml-starter + + + org.apache.camel.springboot + camel-xml-jaxb-dsl-starter + + + org.apache.camel.springboot + camel-stream-starter + + + + + org.springframework.boot + spring-boot-starter-test + test + + + org.apache.camel + camel-test-spring-junit5 + test + + + org.junit.vintage + junit-vintage-engine + test + + + + + + + org.springframework.boot + spring-boot-maven-plugin + ${spring-boot-version} + + + + repackage + + + + + + + org.apache.camel + camel-maven-plugin + ${camel-community.version} + + + + + + + + openshift + + + + org.eclipse.jkube + openshift-maven-plugin + ${jkube-maven-plugin-version} + + + + resource + build + + + + + + + + + diff --git a/rules/rules-reviewed/camel4/camel3/tests/xml-40-changes.windup.test.xml b/rules/rules-reviewed/camel4/camel3/tests/xml-40-changes.windup.test.xml new file mode 100644 index 000000000..97d1a49ff --- /dev/null +++ b/rules/rules-reviewed/camel4/camel3/tests/xml-40-changes.windup.test.xml @@ -0,0 +1,432 @@ + + + data/xml-40-changes + ../xml-40-changes.windup.xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/rules/rules-reviewed/camel4/camel3/xml-40-changes.windup.xml b/rules/rules-reviewed/camel4/camel3/xml-40-changes.windup.xml index c17cba149..9006ae4af 100644 --- a/rules/rules-reviewed/camel4/camel3/xml-40-changes.windup.xml +++ b/rules/rules-reviewed/camel4/camel3/xml-40-changes.windup.xml @@ -22,7 +22,7 @@ `camel-activemq` component has been removed in Apache Camel 4.0. Please explore alternative components such as camel-jms / camel-sjms / camel-amqp - + @@ -36,7 +36,7 @@ `camel-any23` component has been removed in Apache Camel 4.0. - + @@ -125,20 +125,6 @@ - - - - - - - - - `camel-elasticsearch-rest` component has been removed in Apache Camel 4.0. Please explore alternative components such as camel-elasticsearch - - - - - From 7721c47412ffc895e198c741971754452746c800 Mon Sep 17 00:00:00 2001 From: Tom Cunningham Date: Sat, 20 May 2023 09:41:45 -0400 Subject: [PATCH 3/7] Remove javaClass as attribute from rules --- .../camel3/camel2/xml-31-changes.windup.xml | 6 +++--- .../camel3/camel2/xml-317-changes.windup.xml | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/rules/rules-reviewed/camel3/camel2/xml-31-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-31-changes.windup.xml index 81d9ac92a..507ded4b8 100644 --- a/rules/rules-reviewed/camel3/camel2/xml-31-changes.windup.xml +++ b/rules/rules-reviewed/camel3/camel2/xml-31-changes.windup.xml @@ -14,7 +14,7 @@ - + IMPORT @@ -70,7 +70,7 @@ - + IMPORT @@ -84,7 +84,7 @@ - + IMPORT diff --git a/rules/rules-reviewed/camel3/camel2/xml-317-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-317-changes.windup.xml index 88c123807..1975bbf5a 100644 --- a/rules/rules-reviewed/camel3/camel2/xml-317-changes.windup.xml +++ b/rules/rules-reviewed/camel3/camel2/xml-317-changes.windup.xml @@ -238,7 +238,7 @@ - + IMPORT @@ -251,7 +251,7 @@ - + IMPORT @@ -264,7 +264,7 @@ - + IMPORT @@ -278,7 +278,7 @@ - + IMPORT From f76165942a3a29d8ffacce6ed767516b66cfde06 Mon Sep 17 00:00:00 2001 From: Tom Cunningham Date: Sat, 20 May 2023 10:00:38 -0400 Subject: [PATCH 4/7] Reviewed hint priorities --- .../camel3/camel2/xml-31-changes.windup.xml | 12 ++++++------ .../camel3/camel2/xml-310-changes.windup.xml | 2 +- .../camel3/camel2/xml-32-changes.windup.xml | 2 +- .../camel3/camel2/xml-321-changes.windup.xml | 2 +- .../camel3/camel2/xml-33-changes.windup.xml | 2 +- .../camel3/camel2/xml-34-changes.windup.xml | 2 +- .../camel3/camel2/xml-38-changes.windup.xml | 6 +++--- .../camel4/camel3/xml-40-changes.windup.xml | 2 +- 8 files changed, 15 insertions(+), 15 deletions(-) diff --git a/rules/rules-reviewed/camel3/camel2/xml-31-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-31-changes.windup.xml index 507ded4b8..87583995a 100644 --- a/rules/rules-reviewed/camel3/camel2/xml-31-changes.windup.xml +++ b/rules/rules-reviewed/camel3/camel2/xml-31-changes.windup.xml @@ -19,7 +19,7 @@ - + `HttpOperationFailedException` has moved from package org.apache.camel.http.common to org.apache.camel.http.base in Camel 3.1. @@ -33,7 +33,7 @@ - + `camel-jaxp` component has been renamed to camel-xml-jaxp in Apache Camel 3.1. @@ -47,7 +47,7 @@ - + The `camel-management` dependency has been removed from camel-spring-boot - If you need JMX support with Camel Spring Boot, please add a dependency on org.apache.camel:camel-management @@ -61,7 +61,7 @@ - + `org.apache.camel.http.common.cookie` package has been renamed to org.apache.camel.http.base.cookie and moved into the camel-http-base JAR @@ -75,7 +75,7 @@ - + `org.apache.camel.tooling.util.JSonSchemaHelper` class has been removed in Apache Camel 3.1. Instead you can use utils coming from camel-util-json and the class org.apache.camel.tooling.util.PackageHelper. @@ -89,7 +89,7 @@ - + `org.apache.camel.processor.validation.PredicateValidatingProcessor` class has been moved from camel-xml-jaxp JAR to camel-support JAR and renamed to org.apache.camel.support.processor. diff --git a/rules/rules-reviewed/camel3/camel2/xml-310-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-310-changes.windup.xml index 659018175..12ba3bb49 100644 --- a/rules/rules-reviewed/camel3/camel2/xml-310-changes.windup.xml +++ b/rules/rules-reviewed/camel3/camel2/xml-310-changes.windup.xml @@ -19,7 +19,7 @@ - + `org.apache.camel:camel-jdbc` no longer depends on Spring Framework. Please use camel-spring-jdbc if you need Spring and Spring transaction support. diff --git a/rules/rules-reviewed/camel3/camel2/xml-32-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-32-changes.windup.xml index 3e0db61af..7d4db3511 100644 --- a/rules/rules-reviewed/camel3/camel2/xml-32-changes.windup.xml +++ b/rules/rules-reviewed/camel3/camel2/xml-32-changes.windup.xml @@ -164,7 +164,7 @@ - + org.apache.camel.cluster has been moved out of org.apache.camel:camel-core-engine into org.apache.camel:camel-cluster. See the example in the upgrade guide for 3.2 for more details diff --git a/rules/rules-reviewed/camel3/camel2/xml-321-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-321-changes.windup.xml index 60108c40d..fc199aa0a 100644 --- a/rules/rules-reviewed/camel3/camel2/xml-321-changes.windup.xml +++ b/rules/rules-reviewed/camel3/camel2/xml-321-changes.windup.xml @@ -72,7 +72,7 @@ - + The platform-http-starter has been changed from using camel-servlet to use Spring HTTP server directly. Therefore, all the HTTP endpoints are no longer prefixed with the servlet context-path. See the upgrade guide for an example. diff --git a/rules/rules-reviewed/camel3/camel2/xml-33-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-33-changes.windup.xml index f214a68d7..85db1a545 100644 --- a/rules/rules-reviewed/camel3/camel2/xml-33-changes.windup.xml +++ b/rules/rules-reviewed/camel3/camel2/xml-33-changes.windup.xml @@ -22,7 +22,7 @@ - The dump model classes in package org.apache.camel.support.dump has been removed as they were not in use by Camel. + The dump model classes in package org.apache.camel.support.dump have been removed as they were not in use by Camel. diff --git a/rules/rules-reviewed/camel3/camel2/xml-34-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-34-changes.windup.xml index 4cd0e102d..ca3ac0fd8 100644 --- a/rules/rules-reviewed/camel3/camel2/xml-34-changes.windup.xml +++ b/rules/rules-reviewed/camel3/camel2/xml-34-changes.windup.xml @@ -31,7 +31,7 @@ - + camel.service.lra keys have been flattened to camel.lra. See the example in the upgrade guide for 3.4 for more details diff --git a/rules/rules-reviewed/camel3/camel2/xml-38-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-38-changes.windup.xml index b6f0288c0..43b6f4597 100644 --- a/rules/rules-reviewed/camel3/camel2/xml-38-changes.windup.xml +++ b/rules/rules-reviewed/camel3/camel2/xml-38-changes.windup.xml @@ -17,7 +17,7 @@ - + `camel.springboot.xml-routes` configuration key has been renamed to camel.springboot.routes-include-pattern. @@ -28,7 +28,7 @@ - + `camel.springboot.xml-route-templates` configuration key has been renamed to camel.springboot.routes-include-pattern. @@ -39,7 +39,7 @@ - + `camel.springboot.xml-rests` configuration key has been renamed to camel.springboot.routes-include-pattern. diff --git a/rules/rules-reviewed/camel4/camel3/xml-40-changes.windup.xml b/rules/rules-reviewed/camel4/camel3/xml-40-changes.windup.xml index 9006ae4af..0ee3f1317 100644 --- a/rules/rules-reviewed/camel4/camel3/xml-40-changes.windup.xml +++ b/rules/rules-reviewed/camel4/camel3/xml-40-changes.windup.xml @@ -502,7 +502,7 @@ camel-micrometer, camel-opentelemetry as an alternative component. - + `camel-micrometer-starter` has been changed - the uri tags are now static instead of dynamic (by default), as potential too many tags generated due to URI with dynamic values. From 8125cc141783e25b11e56bca521d199066104a15 Mon Sep 17 00:00:00 2001 From: Tom Cunningham Date: Sat, 20 May 2023 10:47:36 -0400 Subject: [PATCH 5/7] Remove all inverted single quotes from hint titles --- .../camel3/camel2/xml-31-changes.windup.xml | 12 ++-- .../camel3/camel2/xml-310-changes.windup.xml | 26 +++---- .../camel3/camel2/xml-311-changes.windup.xml | 8 +-- .../camel3/camel2/xml-312-changes.windup.xml | 8 +-- .../camel3/camel2/xml-313-changes.windup.xml | 4 +- .../camel3/camel2/xml-315-changes.windup.xml | 34 ++++----- .../camel3/camel2/xml-316-changes.windup.xml | 4 +- .../camel3/camel2/xml-317-changes.windup.xml | 42 +++++------ .../camel3/camel2/xml-318-changes.windup.xml | 8 +-- .../camel3/camel2/xml-319-changes.windup.xml | 12 ++-- .../camel3/camel2/xml-32-changes.windup.xml | 3 +- .../camel3/camel2/xml-320-changes.windup.xml | 8 +-- .../camel3/camel2/xml-34-changes.windup.xml | 2 +- .../camel3/camel2/xml-36-changes.windup.xml | 2 +- .../camel3/camel2/xml-38-changes.windup.xml | 6 +- .../camel3/camel2/xml-39-changes.windup.xml | 36 +++++----- .../camel4/camel3/xml-40-changes.windup.xml | 70 +++++++++---------- 17 files changed, 142 insertions(+), 143 deletions(-) diff --git a/rules/rules-reviewed/camel3/camel2/xml-31-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-31-changes.windup.xml index 87583995a..e499b82ef 100644 --- a/rules/rules-reviewed/camel3/camel2/xml-31-changes.windup.xml +++ b/rules/rules-reviewed/camel3/camel2/xml-31-changes.windup.xml @@ -19,7 +19,7 @@ - + `HttpOperationFailedException` has moved from package org.apache.camel.http.common to org.apache.camel.http.base in Camel 3.1. @@ -33,7 +33,7 @@ - + `camel-jaxp` component has been renamed to camel-xml-jaxp in Apache Camel 3.1. @@ -47,7 +47,7 @@ - + The `camel-management` dependency has been removed from camel-spring-boot - If you need JMX support with Camel Spring Boot, please add a dependency on org.apache.camel:camel-management @@ -61,7 +61,7 @@ - + `org.apache.camel.http.common.cookie` package has been renamed to org.apache.camel.http.base.cookie and moved into the camel-http-base JAR @@ -75,7 +75,7 @@ - + `org.apache.camel.tooling.util.JSonSchemaHelper` class has been removed in Apache Camel 3.1. Instead you can use utils coming from camel-util-json and the class org.apache.camel.tooling.util.PackageHelper. @@ -89,7 +89,7 @@ - + `org.apache.camel.processor.validation.PredicateValidatingProcessor` class has been moved from camel-xml-jaxp JAR to camel-support JAR and renamed to org.apache.camel.support.processor. diff --git a/rules/rules-reviewed/camel3/camel2/xml-310-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-310-changes.windup.xml index 12ba3bb49..293b86a41 100644 --- a/rules/rules-reviewed/camel3/camel2/xml-310-changes.windup.xml +++ b/rules/rules-reviewed/camel3/camel2/xml-310-changes.windup.xml @@ -19,7 +19,7 @@ - + `org.apache.camel:camel-jdbc` no longer depends on Spring Framework. Please use camel-spring-jdbc if you need Spring and Spring transaction support. @@ -31,7 +31,7 @@ - + `camel.component.atomix.cluster.service` configuration key has been renamed to camel.cluster.atomix. @@ -42,7 +42,7 @@ - + `camel.component.consul.cluster.service` configuration key has been renamed to camel.cluster.consul. @@ -53,7 +53,7 @@ - + `camel.component.consul.service-registry` configuration key has been renamed to camel.cloud.consul.service-registry. @@ -64,7 +64,7 @@ - + `camel.component.file.cluster.service` configuration key has been renamed to camel.cluster.file. @@ -75,7 +75,7 @@ - + `camel.component.hystrix.mapping` configuration key has been renamed to camel.hystrix.mapping. @@ -86,7 +86,7 @@ - + `camel.component.jgroups.lock.cluster.service` configuration key has been renamed to camel.cluster.jgroups. @@ -97,7 +97,7 @@ - + `camel.component.jgroups.raft.cluster.service` configuration key has been renamed to camel.cluster.jgroups-raft. @@ -108,7 +108,7 @@ - + `camel.component.kubernetes.cluster.service` configuration key has been renamed to camel.cluster.kubernetes. @@ -120,7 +120,7 @@ - + `camel.component.servlet.mapping` configuration key has been renamed to camel.servlet.mapping. @@ -131,7 +131,7 @@ - + `camel.component.undertow.spring.security` configuration key has been renamed to camel.security.undertow. @@ -142,7 +142,7 @@ - + `camel.component.zookeeper.cluster.service` configuration key has been renamed to camel.cluster.zookeeper. @@ -153,7 +153,7 @@ - + `camel.component.zookeeper.service-registry` configuration key has been renamed to camel.cloud.zookeeper. diff --git a/rules/rules-reviewed/camel3/camel2/xml-311-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-311-changes.windup.xml index fe7f97273..b88d5e4c0 100644 --- a/rules/rules-reviewed/camel3/camel2/xml-311-changes.windup.xml +++ b/rules/rules-reviewed/camel3/camel2/xml-311-changes.windup.xml @@ -19,7 +19,7 @@ - + `org.apache.camel:camel-apns` component has been retired in Apache Camel 3.11. APNS (Apple Push Network System) has been retired by Apple. @@ -32,7 +32,7 @@ - + `org.apache.camel:camel-saxon` no longer depends on camel-saxon-xslt in 3.11. Any application that needs to do xslt transformation with saxon should now declare an explicit dependency on camel-saxon-xslt. @@ -44,7 +44,7 @@ - + `camel.component.consul.service-registry` configuration key has been renamed to camel.cloud.consul. @@ -55,7 +55,7 @@ - + `camel.cloud.consul.service-registry` configuration key has been renamed to camel.cloud.consul. diff --git a/rules/rules-reviewed/camel3/camel2/xml-312-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-312-changes.windup.xml index 1dac413f0..c7a079434 100644 --- a/rules/rules-reviewed/camel3/camel2/xml-312-changes.windup.xml +++ b/rules/rules-reviewed/camel3/camel2/xml-312-changes.windup.xml @@ -19,7 +19,7 @@ - + `org.apache.camel.springboot:camel-spring-cloud-starter` starter has been removed in Apache Camel 3.12. @@ -32,7 +32,7 @@ - + `org.apache.camel.springboot:camel-spring-cloud-consul-starter has been removed in Apache Camel 3.12. @@ -45,7 +45,7 @@ - + `org.apache.camel.springboot:camel-spring-cloud-netflix-starter` starter has been removed in Apache Camel 3.12. @@ -58,7 +58,7 @@ - + `org.apache.camel.springboot:camel-spring-cloud-zookeeper-starter` starter has been removed in Apache Camel 3.12. diff --git a/rules/rules-reviewed/camel3/camel2/xml-313-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-313-changes.windup.xml index f4141c0f0..35f826029 100644 --- a/rules/rules-reviewed/camel3/camel2/xml-313-changes.windup.xml +++ b/rules/rules-reviewed/camel3/camel2/xml-313-changes.windup.xml @@ -19,7 +19,7 @@ - + `org.apache.camel.springboot:camel-hazelzcast-starter` starter no longer has customer auto configuration options in Apache Camel 3.13. @@ -33,7 +33,7 @@ - + This component has been refactored to be similar to other Camel components. The old component had an unusual static configuration of the MllpComponent which now is refactored to be Camel standard with regular getter/setters. The component is now also configured reflection free. We also cleaned up how the component dealt with which charset to use when processing HL7 messages. Users using camel-mllp is recommended to test their applications when upgrading to ensure this continues to work. diff --git a/rules/rules-reviewed/camel3/camel2/xml-315-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-315-changes.windup.xml index 654c143dd..774dacf26 100644 --- a/rules/rules-reviewed/camel3/camel2/xml-315-changes.windup.xml +++ b/rules/rules-reviewed/camel3/camel2/xml-315-changes.windup.xml @@ -33,7 +33,7 @@ - + `camel-kamelet-reify` component has been retired in Apache Camel 3.15. @@ -47,7 +47,7 @@ - + `camel-spring-javaconfig` component has been retired in Apache Camel 3.15. @@ -59,7 +59,7 @@ - + `camel.dataformat.fhirjson` configuration key has been renamed to camel.dataformat.fhir-json. @@ -71,7 +71,7 @@ - + `camel.dataformat.fhirxml` configuration key has been renamed to camel.dataformat.fhir-xml. @@ -83,7 +83,7 @@ - + `camel.dataformat.gzipdeflater` configuration key has been renamed to camel.dataformat.gzip-deflater. @@ -94,7 +94,7 @@ - + `camel.dataformat.jacksonxml` configuration key has been renamed to camel.dataformat.jackson-xml. @@ -105,7 +105,7 @@ - + `camel.dataformat.jsonapi` configuration key has been renamed to camel.dataformat.json-api. @@ -116,7 +116,7 @@ - + `camel.dataformat.mimemultipart` configuration key has been renamed to camel.dataformat.mime-multipart. @@ -127,7 +127,7 @@ - + `camel.dataformat.securexml` configuration key has been renamed to camel.dataformat.xml-security. @@ -138,7 +138,7 @@ - + `camel.dataformat.tarfile` configuration key has been renamed to camel.dataformat.tar-file. @@ -149,7 +149,7 @@ - + `camel.dataformat.tidymarkup` configuration key has been renamed to camel.dataformat.tidy-markup. @@ -161,7 +161,7 @@ - + `camel.dataformat.univocitycsv` configuration key has been renamed to camel.dataformat.univocity-csv. @@ -172,7 +172,7 @@ - + `camel.dataformat.univocityfixed` configuration key has been renamed to camel.dataformat.univocity-fixed. @@ -183,7 +183,7 @@ - + `camel.dataformat.univocitytsv` configuration key has been renamed to camel.dataformat.univocity-tsv. @@ -194,7 +194,7 @@ - + `camel.dataformat.yaml-snakeyaml` configuration key has been renamed to camel.dataformat.snake-yaml. @@ -205,7 +205,7 @@ - + `camel.dataformat.zipdeflater` configuration key has been renamed to camel.dataformat.zip-deflater. @@ -216,7 +216,7 @@ - + `camel.dataformat.zipfile` configuration key has been renamed to camel.dataformat.zip-file. diff --git a/rules/rules-reviewed/camel3/camel2/xml-316-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-316-changes.windup.xml index 11732142c..0f127a4d6 100644 --- a/rules/rules-reviewed/camel3/camel2/xml-316-changes.windup.xml +++ b/rules/rules-reviewed/camel3/camel2/xml-316-changes.windup.xml @@ -19,7 +19,7 @@ - + `camel-testcontainers-spring` component has been replaced with camel-test-infra. @@ -33,7 +33,7 @@ - + `camel-testcontainers-spring-junit5` component has been replaced with camel-test-infra. diff --git a/rules/rules-reviewed/camel3/camel2/xml-317-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-317-changes.windup.xml index 1975bbf5a..3e689b414 100644 --- a/rules/rules-reviewed/camel3/camel2/xml-317-changes.windup.xml +++ b/rules/rules-reviewed/camel3/camel2/xml-317-changes.windup.xml @@ -19,7 +19,7 @@ - + `org.apache.camel:camel-atomix` component has been removed in Camel 3.17.0. @@ -32,7 +32,7 @@ - + `org.apache.camel:camel-beanstalk` component has been removed in Camel 3.17.0. @@ -45,7 +45,7 @@ - + `org.apache.camel:camel-beanio` component has been removed in Camel 3.17.0. @@ -58,7 +58,7 @@ - + `org.apache.camel:camel-etcd` component has been removed in Camel 3.17.0. @@ -72,7 +72,7 @@ - + `org.apache.camel:camel-elsql` component has been removed in Camel 3.17.0. @@ -85,7 +85,7 @@ - + `org.apache.camel:camel-ganglia` component has been removed in Camel 3.17.0. @@ -98,7 +98,7 @@ - + `org.apache.camel:camel-nsq` component has been removed in Camel 3.17.0. @@ -111,7 +111,7 @@ - + `org.apache.camel:camel-hystrix` component has been removed in Camel 3.17.0. @@ -124,7 +124,7 @@ - + `org.apache.camel:camel-jing` component has been removed in Camel 3.17.0. @@ -137,7 +137,7 @@ - + `org.apache.camel:camel-leveldb-legacy` component has been removed in Camel 3.17.0. @@ -150,7 +150,7 @@ - + `org.apache.camel:camel-msv` component has been removed in Camel 3.17.0. @@ -163,7 +163,7 @@ - + `org.apache.camel:camel-nagios` component has been removed in Camel 3.17.0. @@ -176,7 +176,7 @@ - + `org.apache.camel:camel-ribbon` component has been removed in Camel 3.17.0. @@ -189,7 +189,7 @@ - + `org.apache.camel:camel-sip` component has been removed in Camel 3.17.0. @@ -202,7 +202,7 @@ - + `org.apache.camel:camel-soroush` component has been removed in Camel 3.17.0. @@ -216,7 +216,7 @@ - + `org.apache.camel:camel-tagsoup` component has been removed in Camel 3.17.0. @@ -229,7 +229,7 @@ - + `org.apache.camel:camel-yammer` component has been removed in Camel 3.17.0. @@ -243,7 +243,7 @@ - + `org.apache.camel.builder.DeadLetterChannelBuilder` component has been replaced by org.apache.camel.builder.LegacyDeadLetterChannelBuilder in Camel 3.17.0. @@ -256,7 +256,7 @@ - + `org.apache.camel.builder.DefaultErrorHandlerBuilder` component has been replaced by org.apache.camel.builder.LegacyDefaultErrorHandlerBuilder in Camel 3.17.0. @@ -269,7 +269,7 @@ - + `org.apache.camel.builder.NoErrorHandlerBuilder` component has been replaced by org.apache.camel.builder.LegacyDeadLetterChannelBuilder in Camel 3.17.0. @@ -283,7 +283,7 @@ - + `org.apache.camel.spring.spi.TransactionErrorHandlerBuilder` component has been replaced by org.apache.camel.spring.spi.LegacyTransactionErrorHandlerBuilder in Camel 3.17.0. diff --git a/rules/rules-reviewed/camel3/camel2/xml-318-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-318-changes.windup.xml index c05ca0a88..b9fba41ae 100644 --- a/rules/rules-reviewed/camel3/camel2/xml-318-changes.windup.xml +++ b/rules/rules-reviewed/camel3/camel2/xml-318-changes.windup.xml @@ -19,7 +19,7 @@ - + `org.apache.camel:camel-milo` component has been removed in Camel 3.18.0. @@ -32,7 +32,7 @@ - + The camel-cxf JAR has been split up into SOAP vs REST and Spring and non Spring JARs in Camel 3.18.0. Please see the Camel 3.18 upgrade guide for details on which artifacts to migrate camel-cxf to. @@ -45,7 +45,7 @@ - + `camel-cxf-starter` component has been split up - The camel-cxf-starter has been split up into SOAP vs REST (camel-cxf-soap-starter and camel-cxf-rest-starter) in Camel 3.18.0. Please see the Camel 3.18 upgrade guide for details on which artifacts to migrate camel-cxf-starter to. @@ -58,7 +58,7 @@ - + `camel-cxf-starter` component has been split up - The camel-cxf-starter has been split up into SOAP vs REST (camel-cxf-soap-starter and camel-cxf-rest-starter) in Camel 3.18.0. Please see the Camel 3.18 upgrade guide for details on which artifacts to migrate camel-cxf-starter to. diff --git a/rules/rules-reviewed/camel3/camel2/xml-319-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-319-changes.windup.xml index ea77b17db..ed085d3a0 100644 --- a/rules/rules-reviewed/camel3/camel2/xml-319-changes.windup.xml +++ b/rules/rules-reviewed/camel3/camel2/xml-319-changes.windup.xml @@ -20,7 +20,7 @@ - + `org.apache.camel:camel-ftp` default TLS protocol is changed from TLSv1.2 to TLSv1.3. @@ -33,7 +33,7 @@ - + `camel-kafka` default TLS protocol is TLSv1.2,TLSv1.3 - the default TLS protocol in Kafka Clients running on JDK11+ is TLSv1.2,TLSv1.3 (prefer v1.3 but can fall back to v1.2). in Camel 3.19.0. @@ -46,7 +46,7 @@ - + `org.apache.camel:camel-netty` - the default TLS protocol is changed from TLSv1,TLSv1.1,TLSv1.2 to TLSv1.2,TLSv1.3 in Camel 3.19.0. @@ -59,7 +59,7 @@ - + `org.apache.camel:camel-netty-http` - the default TLS protocol is changed from TLSv1,TLSv1.1,TLSv1.2 to TLSv1.2,TLSv1.3 in Camel 3.19.0. @@ -74,7 +74,7 @@ - + `org.apache.camel:camel-ahc` component has been removed in Camel 3.19.0. @@ -87,7 +87,7 @@ - + `org.apache.camel:camel-ahc-ws` component has been removed in Camel 3.19.0. diff --git a/rules/rules-reviewed/camel3/camel2/xml-32-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-32-changes.windup.xml index 7d4db3511..ab6c035c8 100644 --- a/rules/rules-reviewed/camel3/camel2/xml-32-changes.windup.xml +++ b/rules/rules-reviewed/camel3/camel2/xml-32-changes.windup.xml @@ -12,7 +12,6 @@ - @@ -20,7 +19,7 @@ - + `org.apache.camel.impl.JndiRegistry` has been removed - please use org.apache.camel.support.jndi.JndiBeanRepository in org.apache.camel:camel-support instead. diff --git a/rules/rules-reviewed/camel3/camel2/xml-320-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-320-changes.windup.xml index e990e7616..11e982332 100644 --- a/rules/rules-reviewed/camel3/camel2/xml-320-changes.windup.xml +++ b/rules/rules-reviewed/camel3/camel2/xml-320-changes.windup.xml @@ -19,7 +19,7 @@ - + `org.apache.camel:camel-bom` no longer includes dependencies with a type of test-jar, and the entries to several maven plugins have changed to include the correct groupId of org.apache.camel.maven @@ -32,7 +32,7 @@ - + `camel-debezium-maven-plugin` has a new groupId of org.apache.camel.maven @@ -45,7 +45,7 @@ - + `camel-salesforce-maven-plugin` has a new groupId of org.apache.camel.maven @@ -58,7 +58,7 @@ - + `camel-servicenow-maven-plugin` has a new groupId of org.apache.camel.maven diff --git a/rules/rules-reviewed/camel3/camel2/xml-34-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-34-changes.windup.xml index ca3ac0fd8..084d4b538 100644 --- a/rules/rules-reviewed/camel3/camel2/xml-34-changes.windup.xml +++ b/rules/rules-reviewed/camel3/camel2/xml-34-changes.windup.xml @@ -19,7 +19,7 @@ - + `camel-management` dependency has been removed from camel-test. camel-management allows JMX support - which is optional - in order to enable it please adda a dependency to org.apache.camel:camel-management. diff --git a/rules/rules-reviewed/camel3/camel2/xml-36-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-36-changes.windup.xml index 237909301..4461263a6 100644 --- a/rules/rules-reviewed/camel3/camel2/xml-36-changes.windup.xml +++ b/rules/rules-reviewed/camel3/camel2/xml-36-changes.windup.xml @@ -39,7 +39,7 @@ - + `camel-hipchat` component has been removed. diff --git a/rules/rules-reviewed/camel3/camel2/xml-38-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-38-changes.windup.xml index 43b6f4597..d2db39123 100644 --- a/rules/rules-reviewed/camel3/camel2/xml-38-changes.windup.xml +++ b/rules/rules-reviewed/camel3/camel2/xml-38-changes.windup.xml @@ -17,7 +17,7 @@ - + `camel.springboot.xml-routes` configuration key has been renamed to camel.springboot.routes-include-pattern. @@ -28,7 +28,7 @@ - + `camel.springboot.xml-route-templates` configuration key has been renamed to camel.springboot.routes-include-pattern. @@ -39,7 +39,7 @@ - + `camel.springboot.xml-rests` configuration key has been renamed to camel.springboot.routes-include-pattern. diff --git a/rules/rules-reviewed/camel3/camel2/xml-39-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-39-changes.windup.xml index 28657e4c9..a7673b9e3 100644 --- a/rules/rules-reviewed/camel3/camel2/xml-39-changes.windup.xml +++ b/rules/rules-reviewed/camel3/camel2/xml-39-changes.windup.xml @@ -19,7 +19,7 @@ - + `org.apache.camel:camel-azure` artifact has been removed in Apache Camel 3.9. Please use camel-azure-storage-blob or camel-azure-storage-queue. @@ -32,7 +32,7 @@ - + `org.apache.camel:camel-aws-sdb` artifact has been removed in Apache Camel 3.9. The upgrade guide states that there will be no substitution for this component because there is no SDK v2 client for it and the service is not listed in the AWS console. @@ -45,7 +45,7 @@ - + `org.apache.camel:camel-aws-translate` artifact has been removed in Apache Camel 3.9. Please use camel-aws2-translate instead. @@ -58,7 +58,7 @@ - + `org.apache.camel:camel-aws-sqs` artifact has been removed in Apache Camel 3.9. Please use camel-aws2-sqs instead. @@ -71,7 +71,7 @@ - + `org.apache.camel:camel-aws-sns` artifact has been removed in Apache Camel 3.9. Please use camel-aws2-sns instead. @@ -84,7 +84,7 @@ - + `org.apache.camel:camel-aws-msk` artifact has been removed in Apache Camel 3.9. Please use camel-aws2-msk instead. @@ -97,7 +97,7 @@ - + `org.apache.camel:camel-aws-mq` artifact has been removed in Apache Camel 3.9. Please use camel-aws2-mq instead. @@ -110,7 +110,7 @@ - + `org.apache.camel:camel-aws-kms` artifact has been removed in Apache Camel 3.9. Please use camel-aws2-kms instead. @@ -123,7 +123,7 @@ - + `org.apache.camel:camel-aws-kinesis` artifact has been removed in Apache Camel 3.9. Please use camel-aws2-kinesis instead. @@ -136,7 +136,7 @@ - + `org.apache.camel:camel-aws-kinesis-firehose` artifact has been removed in Apache Camel 3.9. Please use camel-aws2-kinesis-firehose instead. @@ -149,7 +149,7 @@ - + `org.apache.camel:camel-aws-iam` artifact has been removed in Apache Camel 3.9. Please use camel-aws2-iam instead. @@ -162,7 +162,7 @@ - + `org.apache.camel:camel-aws-eks` artifact has been removed in Apache Camel 3.9. Please use camel-aws2-eks instead. @@ -175,7 +175,7 @@ - + `org.apache.camel:camel-aws-ecs` artifact has been removed in Apache Camel 3.9. Please use camel-aws2-ecs instead. @@ -188,7 +188,7 @@ - + `org.apache.camel:camel-aws-ecs2` artifact has been removed in Apache Camel 3.9. Please use camel-aws2-ecs2 instead. @@ -201,7 +201,7 @@ - + `org.apache.camel:camel-aws-ddb` artifact has been removed in Apache Camel 3.9. Please use camel-aws2-ddb instead. @@ -214,7 +214,7 @@ - + `org.apache.camel:camel-aws-cw` artifact has been removed in Apache Camel 3.9. Please use camel-aws2-cw instead. @@ -227,7 +227,7 @@ - + `org.apache.camel:camel-aws-s3` artifact has been removed in Apache Camel 3.9. Please use camel-aws2-s3 instead. @@ -240,7 +240,7 @@ - + `org.apache.camel:camel-aws-swf` artifact has been removed in Apache Camel 3.9. The migration guide notes that there will not be a replacement for it. diff --git a/rules/rules-reviewed/camel4/camel3/xml-40-changes.windup.xml b/rules/rules-reviewed/camel4/camel3/xml-40-changes.windup.xml index 0ee3f1317..e9fd66908 100644 --- a/rules/rules-reviewed/camel4/camel3/xml-40-changes.windup.xml +++ b/rules/rules-reviewed/camel4/camel3/xml-40-changes.windup.xml @@ -20,7 +20,7 @@ - + `camel-activemq` component has been removed in Apache Camel 4.0. Please explore alternative components such as camel-jms / camel-sjms / camel-amqp @@ -34,7 +34,7 @@ - + `camel-any23` component has been removed in Apache Camel 4.0. @@ -48,7 +48,7 @@ - + `camel-atmos` component has been removed in Apache Camel 4.0. @@ -62,7 +62,7 @@ - + `camel-caffeine-lrucache` component has been removed in Apache Camel 4.0. Please explore alternative components such as camel-cache, camel-ignite, camel-infinispan @@ -76,7 +76,7 @@ - + `camel-cdi` component has been removed in Apache Camel 4.0. Please explore alternative components such as camel-spring-boot, camel-quarkus @@ -90,7 +90,7 @@ - + `camel-directvm` component has been removed in Apache Camel 4.0. Please explore alternative components such as camel-direct @@ -104,7 +104,7 @@ - + `camel-dozer` component has been removed in Apache Camel 4.0. Please explore alternative components such as camel-mapstruct @@ -118,7 +118,7 @@ - + `camel-elasticsearch-rest` component has been removed in Apache Camel 4.0. Please explore alternative components such as camel-elasticsearch @@ -132,7 +132,7 @@ - + `camel-gora` component has been removed in Apache Camel 4.0. @@ -146,7 +146,7 @@ - + `camel-hbase` component has been removed in Apache Camel 4.0. @@ -160,7 +160,7 @@ - + `camel-iota` component has been removed in Apache Camel 4.0. @@ -174,7 +174,7 @@ - + `camel-ipfs` component has been removed in Apache Camel 4.0. @@ -188,7 +188,7 @@ - + `camel-jbpm` component has been removed in Apache Camel 4.0. @@ -202,7 +202,7 @@ - + `camel-jclouds` component has been removed in Apache Camel 4.0. @@ -216,7 +216,7 @@ - + `camel-johnzon` component has been removed in Apache Camel 4.0. Please explore alternative components such as camel-jackson, camel-fastjson, camel-gson @@ -230,7 +230,7 @@ - + `camel-microprofile-metrics` component has been removed in Apache Camel 4.0. Please explore alternative components such as camel-micrometer, camel-opentelemetry @@ -244,7 +244,7 @@ - + `camel-milo` component has been removed in Apache Camel 4.0. @@ -258,7 +258,7 @@ - + `camel-opentracing` component has been removed in Apache Camel 4.0. Please explore alternative components such as camel-micrometer, camel-opentelemetry @@ -272,7 +272,7 @@ - + `camel-optaplanner` component has been removed in Apache Camel 4.0. @@ -286,7 +286,7 @@ - + `camel-rabbitmq` component has been removed in Apache Camel 4.0. Please explore alternative components such as spring-rabbitmq-component @@ -300,7 +300,7 @@ - + `camel-rest-swagger` component has been removed in Apache Camel 4.0. Please explore alternative components such as camel-openapi-rest @@ -314,7 +314,7 @@ - + `camel-restdsl-swagger-plugin` component has been removed in Apache Camel 4.0. Please explore alternative components such as camel-restdsl-openapi-plugin @@ -328,7 +328,7 @@ - + `camel-resteasy` component has been removed in Apache Camel 4.0. Please explore alternative components such as camel-cxf, camel-rest @@ -342,7 +342,7 @@ - + `camel-spark` component has been removed in Apache Camel 4.0. @@ -356,7 +356,7 @@ - + `camel-spring-integration` component has been removed in Apache Camel 4.0. @@ -370,7 +370,7 @@ - + `camel-swift` component has been removed in Apache Camel 4.0. @@ -384,7 +384,7 @@ - + `camel-swagger-java` component has been removed in Apache Camel 4.0. Please explore camel-openapi-java as an alternative component. @@ -398,7 +398,7 @@ - + `camel-websocket` component has been removed in Apache Camel 4.0. Please explore camel-vertx-websocket as an alternative component. @@ -413,7 +413,7 @@ camel-vertx-websocket as an alternative component. - + `camel-websocket-jsr356` component has been removed in Apache Camel 4.0. Please explore camel-vertx-websocket as an alternative component. @@ -428,7 +428,7 @@ camel-vertx-websocket as an alternative component. - + `camel-vertx-kafka` component has been removed in Apache Camel 4.0. Please explore camel-kafka as an alternative component. @@ -443,7 +443,7 @@ camel-kafka as an alternative component. - + `camel-vm` component has been removed in Apache Camel 4.0. Please explore camel-seda as an alternative component. @@ -458,7 +458,7 @@ camel-seda as an alternative component. - + `camel-xstream` component has been removed in Apache Camel 4.0. Please explore camel-jacksonxml as an alternative component. @@ -473,7 +473,7 @@ camel-jacksonxml as an alternative component. - + `camel-zipkin` component has been removed in Apache Camel 4.0. Please explore camel-micrometer, camel-opentelemetry as an alternative component. @@ -488,7 +488,7 @@ camel-micrometer, camel-opentelemetry as an alternative component. - + `camel-platform-http-starter` as been changed from using camel-servlet to use Spring HTTP server directly in Apache Camel 4.0. Therefore, all the HTTP endpoints are no longer prefixed with the servlet context-path (default is camel). @@ -502,7 +502,7 @@ camel-micrometer, camel-opentelemetry as an alternative component. - + `camel-micrometer-starter` has been changed - the uri tags are now static instead of dynamic (by default), as potential too many tags generated due to URI with dynamic values. From a4aa6055ee91fb56f7229cff8aae93d71f200816 Mon Sep 17 00:00:00 2001 From: Tom Cunningham Date: Mon, 22 May 2023 22:05:16 -0400 Subject: [PATCH 6/7] Add fake JARs to test dependencies --- .../test.archive-metadata.txt | 79 +++++ .../xml-31-changes/camel-foobar-3.1.0.jar | Bin 0 -> 470 bytes .../data/xml-31-changes/camel-jaxp-3.1.0.jar | Bin 0 -> 456 bytes .../xml-310-changes/camel-jdbc-3.10.0.jar | Bin 0 -> 457 bytes .../xml-311-changes/camel-apns-3.11.0.jar | Bin 0 -> 457 bytes .../xml-311-changes/camel-saxon-3.11.0.jar | Bin 0 -> 458 bytes ...mel-spring-cloud-consul-starter-3.12.0.jar | Bin 0 -> 486 bytes ...el-spring-cloud-netflix-starter-3.12.0.jar | Bin 0 -> 488 bytes .../camel-spring-cloud-starter-3.12.0.jar | Bin 0 -> 480 bytes ...-spring-cloud-zookeeper-starter-3.12.0.jar | Bin 0 -> 490 bytes .../camel-hazelzcast-starter-3.13.0.jar | Bin 0 -> 483 bytes .../xml-313-changes/camel-mllp-3.13.0.jar | Bin 0 -> 457 bytes .../xml-315-changes/camel-foobar-3.15.0.jar | Bin 0 -> 459 bytes .../camel-kamelet-reify-3.15.0.jar | Bin 0 -> 464 bytes .../camel-spring-javaconfig-3.15.0.jar | Bin 0 -> 470 bytes .../camel-testcontainers-spring-3.16.0.jar | Bin 0 -> 474 bytes ...el-testcontainers-spring-junit5-3.16.0.jar | Bin 0 -> 481 bytes .../xml-317-changes/camel-atomix-3.17.0.jar | Bin 0 -> 459 bytes .../xml-317-changes/camel-beanio-3.17.0.jar | Bin 0 -> 459 bytes .../camel-beanstalk-3.17.0.jar | Bin 0 -> 462 bytes .../xml-317-changes/camel-elsql-3.17.0.jar | Bin 0 -> 458 bytes .../xml-317-changes/camel-etcd-3.17.0.jar | Bin 0 -> 457 bytes .../xml-317-changes/camel-ganglia-3.17.0.jar | Bin 0 -> 460 bytes .../xml-317-changes/camel-hystrix-3.17.0.jar | Bin 0 -> 460 bytes .../xml-317-changes/camel-jing-3.17.0.jar | Bin 0 -> 457 bytes .../camel-leveldb-legacy-3.17.0.jar | Bin 0 -> 466 bytes .../data/xml-317-changes/camel-msv-3.17.0.jar | Bin 0 -> 456 bytes .../xml-317-changes/camel-nagios-3.17.0.jar | Bin 0 -> 459 bytes .../data/xml-317-changes/camel-nsq-3.17.0.jar | Bin 0 -> 456 bytes .../xml-317-changes/camel-ribbon-3.17.0.jar | Bin 0 -> 459 bytes .../data/xml-317-changes/camel-sip-3.17.0.jar | Bin 0 -> 456 bytes .../xml-317-changes/camel-soroush-3.17.0.jar | Bin 0 -> 460 bytes .../xml-317-changes/camel-tagsoup-3.17.0.jar | Bin 0 -> 460 bytes .../xml-317-changes/camel-yammer-3.17.0.jar | Bin 0 -> 459 bytes .../data/xml-318-changes/camel-cxf-3.18.0.jar | Bin 0 -> 456 bytes .../camel-cxf-starter-3.18.0.jar | Bin 0 -> 476 bytes .../xml-318-changes/camel-milo-3.18.0.jar | Bin 0 -> 457 bytes .../data/xml-319-changes/camel-ahc-3.19.0.jar | Bin 0 -> 456 bytes .../xml-319-changes/camel-ahc-ws-3.19.0.jar | Bin 0 -> 459 bytes .../data/xml-319-changes/camel-ftp-3.19.0.jar | Bin 0 -> 456 bytes .../xml-319-changes/camel-kafka-3.19.0.jar | Bin 0 -> 458 bytes .../xml-319-changes/camel-netty-3.19.0.jar | Bin 0 -> 458 bytes .../camel-netty-http-3.19.0.jar | Bin 0 -> 463 bytes .../xml-32-changes/camel-blueprint-3.2.0.jar | Bin 0 -> 461 bytes .../xml-32-changes/camel-eventadmin-3.2.0.jar | Bin 0 -> 462 bytes .../data/xml-32-changes/camel-kura-3.2.0.jar | Bin 0 -> 456 bytes .../camel-osgi-activator-3.2.0.jar | Bin 0 -> 466 bytes .../xml-32-changes/camel-paxlogging-3.2.0.jar | Bin 0 -> 462 bytes .../xml-32-changes/camel-spark-rest-3.2.0.jar | Bin 0 -> 462 bytes .../xml-32-changes/camel-spring-3.2.0.jar | Bin 0 -> 458 bytes .../xml-32-changes/camel-test-karaf-3.2.0.jar | Bin 0 -> 462 bytes .../data/xml-320-changes/camel-bom-3.20.0.jar | Bin 0 -> 456 bytes .../camel-salesforce-maven-plugin-3.20.0.jar | Bin 0 -> 476 bytes .../camel-servicenow-maven-plugin-3.20.0.jar | Bin 0 -> 476 bytes .../xml-321-changes/camel-cmis-3.21.0.jar | Bin 0 -> 457 bytes .../xml-321-changes/camel-dozer-3.21.0.jar | Bin 0 -> 458 bytes .../camel-java-joor-dsl-3.21.0.jar | Bin 0 -> 466 bytes .../camel-platform-http-starter-3.21.0.jar | Bin 0 -> 486 bytes .../data/xml-34-changes/camel-test-3.4.0.jar | Bin 0 -> 456 bytes .../camel-test-spring-3.5.0.jar | Bin 0 -> 463 bytes .../xml-36-changes/camel-hipchat-3.6.0.jar | Bin 0 -> 459 bytes .../xml-39-changes/camel-aws-cw-3.9.0.jar | Bin 0 -> 458 bytes .../xml-39-changes/camel-aws-ddb-3.9.0.jar | Bin 0 -> 459 bytes .../xml-39-changes/camel-aws-ecs-3.9.0.jar | Bin 0 -> 459 bytes .../xml-39-changes/camel-aws-ecs2-3.9.0.jar | Bin 0 -> 460 bytes .../xml-39-changes/camel-aws-eks-3.9.0.jar | Bin 0 -> 459 bytes .../xml-39-changes/camel-aws-iam-3.9.0.jar | Bin 0 -> 459 bytes .../camel-aws-kinesis-3.9.0.jar | Bin 0 -> 463 bytes .../camel-aws-kinesis-firehose-3.9.0.jar | Bin 0 -> 472 bytes .../xml-39-changes/camel-aws-kms-3.9.0.jar | Bin 0 -> 459 bytes .../xml-39-changes/camel-aws-mq-3.9.0.jar | Bin 0 -> 458 bytes .../xml-39-changes/camel-aws-msk-3.9.0.jar | Bin 0 -> 459 bytes .../xml-39-changes/camel-aws-s3-3.9.0.jar | Bin 0 -> 458 bytes .../xml-39-changes/camel-aws-sdb-3.9.0.jar | Bin 0 -> 459 bytes .../xml-39-changes/camel-aws-sns-3.9.0.jar | Bin 0 -> 459 bytes .../xml-39-changes/camel-aws-sqs-3.9.0.jar | Bin 0 -> 459 bytes .../xml-39-changes/camel-aws-swf-3.9.0.jar | Bin 0 -> 459 bytes .../camel-aws-translate-3.9.0.jar | Bin 0 -> 465 bytes .../data/xml-39-changes/camel-azure-3.9.0.jar | Bin 0 -> 457 bytes .../tests/xml-33-changes.windup.test.xml | 2 +- .../camel3/camel2/xml-31-changes.windup.xml | 18 +- .../camel3/camel2/xml-310-changes.windup.xml | 9 +- .../camel3/camel2/xml-311-changes.windup.xml | 18 +- .../camel3/camel2/xml-312-changes.windup.xml | 36 +- .../camel3/camel2/xml-313-changes.windup.xml | 18 +- .../camel3/camel2/xml-315-changes.windup.xml | 27 +- .../camel3/camel2/xml-316-changes.windup.xml | 18 +- .../camel3/camel2/xml-317-changes.windup.xml | 153 ++++++--- .../camel3/camel2/xml-318-changes.windup.xml | 36 +- .../camel3/camel2/xml-319-changes.windup.xml | 54 ++- .../camel3/camel2/xml-32-changes.windup.xml | 81 +++-- .../camel3/camel2/xml-320-changes.windup.xml | 27 +- .../camel3/camel2/xml-321-changes.windup.xml | 36 +- .../camel3/camel2/xml-33-changes.windup.xml | 2 +- .../camel3/camel2/xml-34-changes.windup.xml | 9 +- .../camel3/camel2/xml-35-changes.windup.xml | 9 +- .../camel3/camel2/xml-36-changes.windup.xml | 9 +- .../camel3/camel2/xml-39-changes.windup.xml | 162 ++++++--- .../test.archive-metadata.txt | 35 ++ .../xml-40-changes/camel-activemq-4.0.0.jar | Bin 0 -> 476 bytes .../data/xml-40-changes/camel-any23-4.0.0.jar | Bin 0 -> 473 bytes .../data/xml-40-changes/camel-atmos-4.0.0.jar | Bin 0 -> 473 bytes .../camel-caffeine-lrucache-4.0.0.jar | Bin 0 -> 483 bytes .../data/xml-40-changes/camel-cdi-4.0.0.jar | Bin 0 -> 471 bytes .../xml-40-changes/camel-directvm-4.0.0.jar | Bin 0 -> 476 bytes .../data/xml-40-changes/camel-dozer-4.0.0.jar | Bin 0 -> 473 bytes .../camel-elasticsearch-rest-4.0.0.jar | Bin 0 -> 486 bytes .../data/xml-40-changes/camel-gora-4.0.0.jar | Bin 0 -> 472 bytes .../data/xml-40-changes/camel-hbase-4.0.0.jar | Bin 0 -> 473 bytes .../data/xml-40-changes/camel-iota-4.0.0.jar | Bin 0 -> 472 bytes .../data/xml-40-changes/camel-ipfs-4.0.0.jar | Bin 0 -> 472 bytes .../data/xml-40-changes/camel-jbpm-4.0.0.jar | Bin 0 -> 472 bytes .../xml-40-changes/camel-jclouds-4.0.0.jar | Bin 0 -> 475 bytes .../xml-40-changes/camel-johnzon-4.0.0.jar | Bin 0 -> 475 bytes .../camel-micrometer-starter-4.0.0.jar | Bin 0 -> 496 bytes .../camel-microprofile-metrics-4.0.0.jar | Bin 0 -> 488 bytes .../data/xml-40-changes/camel-milo-4.0.0.jar | Bin 0 -> 472 bytes .../camel-opentracing-4.0.0.jar | Bin 0 -> 479 bytes .../camel-optaplanner-4.0.0.jar | Bin 0 -> 479 bytes .../camel-platform-http-starter-4.0.0.jar | Bin 0 -> 501 bytes .../xml-40-changes/camel-rabbitmq-4.0.0.jar | Bin 0 -> 476 bytes .../camel-rest-swagger-4.0.0.jar | Bin 0 -> 480 bytes .../camel-restdsl-swagger-plugin-4.0.0.jar | Bin 0 -> 490 bytes .../xml-40-changes/camel-resteasy-4.0.0.jar | Bin 0 -> 476 bytes .../data/xml-40-changes/camel-spark-4.0.0.jar | Bin 0 -> 473 bytes .../camel-spring-integration-4.0.0.jar | Bin 0 -> 486 bytes .../camel-swagger-java-4.0.0.jar | Bin 0 -> 480 bytes .../data/xml-40-changes/camel-swift-4.0.0.jar | Bin 0 -> 473 bytes .../camel-vertx-kafka-4.0.0.jar | Bin 0 -> 479 bytes .../data/xml-40-changes/camel-vm-4.0.0.jar | Bin 0 -> 470 bytes .../xml-40-changes/camel-websocket-4.0.0.jar | Bin 0 -> 477 bytes .../camel-websocket-jsr356-4.0.0.jar | Bin 0 -> 484 bytes .../xml-40-changes/camel-xstream-4.0.0.jar | Bin 0 -> 475 bytes .../xml-40-changes/camel-zipkin-4.0.0.jar | Bin 0 -> 474 bytes .../camel4/camel3/xml-40-changes.windup.xml | 315 ++++++++++++------ 135 files changed, 806 insertions(+), 347 deletions(-) create mode 100644 rules/rules-reviewed/camel3/camel2/tests/.windup/cache/nexus-indexer-data/test.archive-metadata.txt create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-31-changes/camel-foobar-3.1.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-31-changes/camel-jaxp-3.1.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-310-changes/camel-jdbc-3.10.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-311-changes/camel-apns-3.11.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-311-changes/camel-saxon-3.11.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-312-changes/camel-spring-cloud-consul-starter-3.12.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-312-changes/camel-spring-cloud-netflix-starter-3.12.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-312-changes/camel-spring-cloud-starter-3.12.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-312-changes/camel-spring-cloud-zookeeper-starter-3.12.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-313-changes/camel-hazelzcast-starter-3.13.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-313-changes/camel-mllp-3.13.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-315-changes/camel-foobar-3.15.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-315-changes/camel-kamelet-reify-3.15.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-315-changes/camel-spring-javaconfig-3.15.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-316-changes/camel-testcontainers-spring-3.16.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-316-changes/camel-testcontainers-spring-junit5-3.16.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-317-changes/camel-atomix-3.17.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-317-changes/camel-beanio-3.17.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-317-changes/camel-beanstalk-3.17.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-317-changes/camel-elsql-3.17.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-317-changes/camel-etcd-3.17.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-317-changes/camel-ganglia-3.17.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-317-changes/camel-hystrix-3.17.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-317-changes/camel-jing-3.17.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-317-changes/camel-leveldb-legacy-3.17.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-317-changes/camel-msv-3.17.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-317-changes/camel-nagios-3.17.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-317-changes/camel-nsq-3.17.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-317-changes/camel-ribbon-3.17.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-317-changes/camel-sip-3.17.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-317-changes/camel-soroush-3.17.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-317-changes/camel-tagsoup-3.17.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-317-changes/camel-yammer-3.17.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-318-changes/camel-cxf-3.18.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-318-changes/camel-cxf-starter-3.18.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-318-changes/camel-milo-3.18.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-319-changes/camel-ahc-3.19.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-319-changes/camel-ahc-ws-3.19.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-319-changes/camel-ftp-3.19.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-319-changes/camel-kafka-3.19.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-319-changes/camel-netty-3.19.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-319-changes/camel-netty-http-3.19.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-32-changes/camel-blueprint-3.2.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-32-changes/camel-eventadmin-3.2.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-32-changes/camel-kura-3.2.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-32-changes/camel-osgi-activator-3.2.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-32-changes/camel-paxlogging-3.2.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-32-changes/camel-spark-rest-3.2.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-32-changes/camel-spring-3.2.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-32-changes/camel-test-karaf-3.2.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-320-changes/camel-bom-3.20.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-320-changes/camel-salesforce-maven-plugin-3.20.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-320-changes/camel-servicenow-maven-plugin-3.20.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-321-changes/camel-cmis-3.21.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-321-changes/camel-dozer-3.21.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-321-changes/camel-java-joor-dsl-3.21.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-321-changes/camel-platform-http-starter-3.21.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-34-changes/camel-test-3.4.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-35-changes/camel-test-spring-3.5.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-36-changes/camel-hipchat-3.6.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-39-changes/camel-aws-cw-3.9.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-39-changes/camel-aws-ddb-3.9.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-39-changes/camel-aws-ecs-3.9.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-39-changes/camel-aws-ecs2-3.9.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-39-changes/camel-aws-eks-3.9.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-39-changes/camel-aws-iam-3.9.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-39-changes/camel-aws-kinesis-3.9.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-39-changes/camel-aws-kinesis-firehose-3.9.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-39-changes/camel-aws-kms-3.9.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-39-changes/camel-aws-mq-3.9.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-39-changes/camel-aws-msk-3.9.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-39-changes/camel-aws-s3-3.9.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-39-changes/camel-aws-sdb-3.9.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-39-changes/camel-aws-sns-3.9.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-39-changes/camel-aws-sqs-3.9.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-39-changes/camel-aws-swf-3.9.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-39-changes/camel-aws-translate-3.9.0.jar create mode 100644 rules/rules-reviewed/camel3/camel2/tests/data/xml-39-changes/camel-azure-3.9.0.jar create mode 100644 rules/rules-reviewed/camel4/camel3/tests/.windup/cache/nexus-indexer-data/test.archive-metadata.txt create mode 100644 rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/camel-activemq-4.0.0.jar create mode 100644 rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/camel-any23-4.0.0.jar create mode 100644 rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/camel-atmos-4.0.0.jar create mode 100644 rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/camel-caffeine-lrucache-4.0.0.jar create mode 100644 rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/camel-cdi-4.0.0.jar create mode 100644 rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/camel-directvm-4.0.0.jar create mode 100644 rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/camel-dozer-4.0.0.jar create mode 100644 rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/camel-elasticsearch-rest-4.0.0.jar create mode 100644 rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/camel-gora-4.0.0.jar create mode 100644 rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/camel-hbase-4.0.0.jar create mode 100644 rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/camel-iota-4.0.0.jar create mode 100644 rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/camel-ipfs-4.0.0.jar create mode 100644 rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/camel-jbpm-4.0.0.jar create mode 100644 rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/camel-jclouds-4.0.0.jar create mode 100644 rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/camel-johnzon-4.0.0.jar create mode 100644 rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/camel-micrometer-starter-4.0.0.jar create mode 100644 rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/camel-microprofile-metrics-4.0.0.jar create mode 100644 rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/camel-milo-4.0.0.jar create mode 100644 rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/camel-opentracing-4.0.0.jar create mode 100644 rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/camel-optaplanner-4.0.0.jar create mode 100644 rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/camel-platform-http-starter-4.0.0.jar create mode 100644 rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/camel-rabbitmq-4.0.0.jar create mode 100644 rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/camel-rest-swagger-4.0.0.jar create mode 100644 rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/camel-restdsl-swagger-plugin-4.0.0.jar create mode 100644 rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/camel-resteasy-4.0.0.jar create mode 100644 rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/camel-spark-4.0.0.jar create mode 100644 rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/camel-spring-integration-4.0.0.jar create mode 100644 rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/camel-swagger-java-4.0.0.jar create mode 100644 rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/camel-swift-4.0.0.jar create mode 100644 rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/camel-vertx-kafka-4.0.0.jar create mode 100644 rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/camel-vm-4.0.0.jar create mode 100644 rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/camel-websocket-4.0.0.jar create mode 100644 rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/camel-websocket-jsr356-4.0.0.jar create mode 100644 rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/camel-xstream-4.0.0.jar create mode 100644 rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/camel-zipkin-4.0.0.jar diff --git a/rules/rules-reviewed/camel3/camel2/tests/.windup/cache/nexus-indexer-data/test.archive-metadata.txt b/rules/rules-reviewed/camel3/camel2/tests/.windup/cache/nexus-indexer-data/test.archive-metadata.txt new file mode 100644 index 000000000..c382f51b2 --- /dev/null +++ b/rules/rules-reviewed/camel3/camel2/tests/.windup/cache/nexus-indexer-data/test.archive-metadata.txt @@ -0,0 +1,79 @@ +81c156807aa64217fef569ff25ef770b org.apache.camel:camel-jaxp:3.1.0 +aea8b504e74e35d124e763a036f4ff22 org.apache.camel.springboot:camel-foobar:3.1.0 +70d26871ac2c58032269454c11bfee7f org.apache.camel:camel-blueprint:3.2.0 +70d26871ac2c58032269454c11bfee7f org.apache.camel:camel-blueprint:3.2.0 +d0df744d51b60f69daa2d85b4027608b org.apache.camel:camel-test-karaf:3.2.0 +d34715e67800effa4d1669066907abaf org.apache.camel:camel-eventadmin:3.2.0 +3c72b4ea30512713559a0bc6af7584da org.apache.camel:camel-kura:3.2.0 +2c3e5fde62241498d79a0a50ee9c0ae8 org.apache.camel:camel-osgi-activator:3.2.0 +4d51b9c454129e3882b535bfd34deb81 org.apache.camel:camel-paxlogging:3.2.0 +83f861cebd418b25175ecaab111df3f9 org.apache.camel:camel-spark-rest:3.2.0 +6a6d8b88526f10b0e28221447d645b4b org.apache.camel:camel-spring:3.2.0 +3fc50c8f20e3e65a4a27136fad8d5ac1 org.apache.camel:camel-test:3.4.0 +ab08734d77587d0f669e4523f2a911f0 org.apache.camel:camel-test-spring:3.5.0 +8ae36cf8a078c1f93f2f078e4d3e3c92 org.apache.camel:camel-hipchat:3.6.0 +42787760cce9eedb96ed423bd4a5c2f6 org.apache.camel:camel-azure:3.9.0 +46f8cda84f8d5b2912488967348dd7df org.apache.camel:camel-aws-sdb:3.9.0 +304b9d177b0620f0e1191b527786301b org.apache.camel:camel-aws-translate:3.9.0 +a7c228fe29d8087edbb0498d8fd7d919 org.apache.camel:camel-aws-sqs:3.9.0 +9d2847565902af2a02ff5ef780fe4a79 org.apache.camel:camel-aws-sns:3.9.0 +b914a042f6ee890dd34f612a0ba7f5a7 org.apache.camel:camel-aws-msk:3.9.0 +317f1c0de2abaf31c829829b59186805 org.apache.camel:camel-aws-mq:3.9.0 +2033bb40b8c5d82a4fc9e5f4e5037f43 org.apache.camel:camel-aws-kms:3.9.0 +eb5feeca5d4ac6f8a74ca08079457be8 org.apache.camel:camel-aws-kinesis:3.9.0 +d258877368cd92b7bb32f0a3995fdcfb org.apache.camel:camel-aws-kinesis-firehose:3.9.0 +572ef1709cdd2822df6fa6581f4209df org.apache.camel:camel-aws-iam:3.9.0 +11d8df523fb50a9761edf27aead7b149 org.apache.camel:camel-aws-eks:3.9.0 +d2c37666d4d4880567f012804a8c371a org.apache.camel:camel-aws-ecs:3.9.0 +1a88c1582d14695c2a87ae2afea2ee24 org.apache.camel:camel-aws-ecs2:3.9.0 +160eaed6cf91c2255192ce21a5deaa57 org.apache.camel:camel-aws-ddb:3.9.0 +c92fd3c553b7cc9b71887139535c726f org.apache.camel:camel-aws-cw:3.9.0 +064fd875ef10e59425d2fc0888bc1101 org.apache.camel:camel-aws-s3:3.9.0 +81835452f138f99739962a1e58bff189 org.apache.camel:camel-aws-swf:3.9.0 +8a9e67511a34aea381564f71d7a419a7 org.apache.camel:camel-jdbc:3.10.0 +9960963b34a8a9881775c0c8790a44bb org.apache.camel:camel-apns:3.11.0 +147380b5045a7fc498a20767044be627 org.apache.camel:camel-saxon:3.11.0 +8911aa357e4966aa2f9893a44b243d75 org.apache.camel.springboot:camel-spring-cloud-starter:3.12.0 +a6f058cb9c6f313ac967f8005d519c21 org.apache.camel.springboot:camel-spring-cloud-consul-starter:3.12.0 +330ec811c92cb5ca33391f0352e5a9e1 org.apache.camel.springboot:camel-spring-cloud-netflix-starter:3.12.0 +c69f402b13442ae35ae863c6562fa276 org.apache.camel.springboot:camel-spring-cloud-zookeeper-starter:3.12.0 +12d715448d97e6dba0facccfbabdbfa1 org.apache.camel.springboot:camel-hazelzcast-starter:3.13.0 +f74dd921813289e9948bd1b0907cd178 org.apache.camel:camel-mllp:3.13.0 +9eb3d9151f27d4dbe6171d88aa586544 org.apache.camel:camel-foobar:3.15.0 +ac839ff060034d32d19ff6ce1b2a4594 org.apache.camel:camel-kamelet-reify:3.15.0 +419e1302cdb35e90a06c619e10520e80 org.apache.camel:camel-spring-javaconfig:3.15.0 +9e10aad68b2617e1d46edd9e2af44e15 org.apache.camel:camel-testcontainers-spring:3.16.0 +b911664efd6563303e63ed0c0a8d2098 org.apache.camel:camel-testcontainers-spring-junit5:3.16.0 +ce25779d2e41e6e0e27dda1ec966c60e org.apache.camel:camel-atomix:3.17.0 +0cd0273713f72e1b7242c846f8cb32cd org.apache.camel:camel-beanstalk:3.17.0 +3e792be53140d0bb10ff11f14ed9a8e0 org.apache.camel:camel-beanio:3.17.0 +8ff1fd2faf54f7f169f86d1a37dfb385 org.apache.camel:camel-etcd:3.17.0 +6df3cbe4c851e757b295eba73ded3f9c org.apache.camel:camel-elsql:3.17.0 +dd8e71b196a03fbef1a28efa697ba264 org.apache.camel:camel-ganglia:3.17.0 +2e84e13c9a699a569410c337f1979aa8 org.apache.camel:camel-nsq:3.17.0 +64ecb5f4dea5dfdba4ea5e29cf009234 org.apache.camel:camel-hystrix:3.17.0 +de1be8838ab0b9130cf892a8d4998eb4 org.apache.camel:camel-jing:3.17.0 +533e3b5e913f9d63219e0665232799c8 org.apache.camel:camel-leveldb-legacy:3.17.0 +ca91cb7d36e77b6fabfa8317257d5947 org.apache.camel:camel-msv:3.17.0 +f79353c097a16eb5679b36269c7fd9a7 org.apache.camel:camel-nagios:3.17.0 +ac595ac3eeeb507e3a34a871de76ae54 org.apache.camel:camel-ribbon:3.17.0 +91d57cb65644b25003d1c679092bf52e org.apache.camel:camel-sip:3.17.0 +cc17357ac1110e99fcee5f5593760ea5 org.apache.camel:camel-soroush:3.17.0 +21f18119bc4cbdde01de2daa8c8f8e41 org.apache.camel:camel-tagsoup:3.17.0 +fffa9cb80dfe922a1f1f72ebf062b3b4 org.apache.camel:camel-yammer:3.17.0 +99b575eb77e153985d7f568e099c9cee org.apache.camel:camel-milo:3.18.0 +d2cbe34a2da0a991641b568fe23ccd2e org.apache.camel:camel-cxf:3.18.0 +1ad1431176d0f84a0601ea26cc707a43 org.apache.camel.springboot:camel-cxf-starter:3.18.0 +0f590a275bfffc1712cc47739817cff6 org.apache.camel:camel-ftp:3.19.0 +936c30e908b9074418203d06e1641780 org.apache.camel:camel-kafka:3.19.0 +e0f2f73631ac7c4066f1db94b3cc97fd org.apache.camel:camel-netty:3.19.0 +9ecded1d79a2eb16f953e3ce26cde5e5 org.apache.camel:camel-netty-http:3.19.0 +d12e8546c94118231cf4b27ee8c9ff96 org.apache.camel:camel-ahc:3.19.0 +969bc42fc35a01ead73b97613b4e05be org.apache.camel:camel-ahc-ws:3.19.0 +05e2031baf1d5fe1f9f07c8107722a23 org.apache.camel:camel-bom:3.20.0 +9a0d61df6611ce75d54c57247e8960c9 org.apache.camel:camel-salesforce-maven-plugin:3.20.0 +3b53c25a796f9fcfeb856efc58a06ee2 org.apache.camel:camel-servicenow-maven-plugin:3.20.0 +fe9f34f51e63a170de9141c173c2272a org.apache.camel:camel-java-joor-dsl:3.21.0 +d94f533897d619ece9cef65ef1737d8e org.apache.camel:camel-dozer:3.21.0 +a7281d882265321a01e329d80396f392 org.apache.camel:camel-cmis:3.21.0 +1084304aa67fd8a4adaf842c05154a0e org.apache.camel.springboot:camel-platform-http-starter:3.21.0 diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-31-changes/camel-foobar-3.1.0.jar b/rules/rules-reviewed/camel3/camel2/tests/data/xml-31-changes/camel-foobar-3.1.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..a5f34cce70fd0faf15f64236ecc44e47e4812715 GIT binary patch literal 470 zcmWIWW@h1HVBlb2IMcH&i~$L7GO#fCx`sIFdiuHP|2xIN5CBvv!ob17fuU3cs12^v z*U`_@%{4eg&)4m<@0rs+-nx1hdA)VD&Yd~GImqCO@q?#DdS1Rdp1v1LS8WM0FuGuT z!8qi?hZE<0eYL!FuRnSE=qVG>E_RL`mb1mJfF@f2F>bp#fwC#3xw(~kB^4#7^}Vip z>v;H_^SJ8mcgFYZMQuHeQ)j&WPo3A_$i)3(+0*Chs$!9nuO(ke7BGS>5sPYCs0TDc zA8ZLD6Bh&S&;Tky0&ovQ!iJGagaHvc$ZiLP4gzQcnQ*O0VHMzwY67yuKz>AkE_RL`mb1mJfF@f2F~aWC7|vv1NGZ+Dt<)>2C^@a~ zb=_OX!{?mGRd2sDzGpWwP2LsRDasmltg5YwEe33?$y@__1)z~iU}G7XxEOHzAE*Qg zz`Y0w4Mrvr21IxuyA~842%rsQ!nGoWPJlPU1dy+g9ma{!4rDC{Vz?gzyjj^mvdloZ K1xWt`aTow@%VV?v literal 0 HcmV?d00001 diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-310-changes/camel-jdbc-3.10.0.jar b/rules/rules-reviewed/camel3/camel2/tests/data/xml-310-changes/camel-jdbc-3.10.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..1f5d38734d92bfe9e46b3dbcd6e9b9b0b3aea6d8 GIT binary patch literal 457 zcmWIWW@h1HVBlb2IM=f+i~$L7GO#fCx`sIFdiuHP|2xIN5CBvv!ob17fuU3cs12^v z*U`_@%{4eg&)4m<@0rs+-nx1hdA)VD&Yd~GImqCO@q?#DdS1Rdp1v1LS8WM0FuGuT z!8qi?hZE<0eYL!FuRnSE=qVG>E_RL`mb1mJfF@f2F>bp#fwC#3xw(~kB^4#7^}Vip z>v;H_^SJ8mcgFYZMyAQTA~iivh8?SFW2<6|0h@ccP}W5es7o1aE+Z2c1MUC-DnSBp zKSF|okx7IB5g^FU1qBEKXakvWtw_NW;Eiemvco{$LV)E!Cft(&-mGjODP|zt0;KE_RL`mb1mJfF@f2F~aV17|vv1NGZ+Dt<)>2C^@a~ zb=_OX!{?mGRd2sDzGpWwP2SbXT6r|=SXEnF6E_RL`mb1mJfF@f2F>bp#fwC#3xw(~kB^4#7^}Vip z>v;H_^SJ8mcgFYZMyAQTj&_RvtPDF=)z((U76UdoA^ax45>T58*kDE`E(Y8o091km z;GTqp2P2aR10qC_-3tm41keUD;aZWxC%_xk1Z0PS{DlC^flRnB1H4(;KvK*=xCO*u G1Q7s*YGv>M literal 0 HcmV?d00001 diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-312-changes/camel-spring-cloud-consul-starter-3.12.0.jar b/rules/rules-reviewed/camel3/camel2/tests/data/xml-312-changes/camel-spring-cloud-consul-starter-3.12.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..d3785971f940da05ee1483f08424ff2373159efc GIT binary patch literal 486 zcmWIWW@h1HVBlb2IN!4^i~$L7GO#fCx`sIFdiuHP|2xIN5CBvv!ob17fuU3cs12^v z*U`_@%{4eg&)4m<@0rs+-nx1hdA)VD&Yd~GImqCO@q?#DdS1Rdp1v1LS8WM0FuGuT z!8qi?hZE<0eYL!FuRnSE=qVG>E_RL`mb1mJfF@f2F>bp#fwC#3xw(~kB^4#7^}Vip z>v;H_^SJ8mcgFYZMQuHeQ)j&WPo3A_$i)4^iKS$6@h9)#lF6SxcX>A^sdl=mu5=AM zR@LTK#TEm$H26pUCp(~#u3$?UnYb8mhYnB)5`YH)B&-;jL>LgEh3pqlXd!?$kO|j{ l6m|jLs3ssg4CH47SPo>uLmE_RL`mb1mJfF@f2F>bp#fwC#3xw(~kB^4#7^}Vip z>v;H_^SJ8mcgFYZMQuHeQ)j&WPo3A_$i)4^iKS$6@h9)#lFvcjmx_$EOS-*HWg918l8W!(DX;prLMHYZ;li7;uLVPze%%2LU9s7@0&E5aEUF8&G&5fHsf` n*NPN+0p6%4AUh1?YXn#hWWvKBz?+o~B*hGbTY$72BZvn8;fiyj literal 0 HcmV?d00001 diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-312-changes/camel-spring-cloud-starter-3.12.0.jar b/rules/rules-reviewed/camel3/camel2/tests/data/xml-312-changes/camel-spring-cloud-starter-3.12.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..ec2992850e64af13667ff4509aa0013a9c92daf8 GIT binary patch literal 480 zcmWIWW@h1HVBlb2IN!4^i~$L7GO#fCx`sIFdiuHP|2xIN5CBvv!ob17fuU3cs12^v z*U`_@%{4eg&)4m<@0rs+-nx1hdA)VD&Yd~GImqCO@q?#DdS1Rdp1v1LS8WM0FuGuT z!8qi?hZE<0eYL!FuRnSE=qVG>E_RL`mb1mJfF@f2F>bp#fwC#3xw(~kB^4#7^}Vip z>v;H_^SJ8mcgFYZMQuHeQ)j&WPo3A_$i)4^iKS$6@h9)#l5TIIZm*#3H9cQ>dcW}O z09zLmaefELDm$=sj7(e%xWfgg1PQ>s4hbbjCJ_ciI3fE26ix`B4P?T#B86IjH>wH9 d4g>iX0hR-qaK8t5v$BDtn1OH$kQQSE@c_@*aTfpp literal 0 HcmV?d00001 diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-312-changes/camel-spring-cloud-zookeeper-starter-3.12.0.jar b/rules/rules-reviewed/camel3/camel2/tests/data/xml-312-changes/camel-spring-cloud-zookeeper-starter-3.12.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..caca59ff8138d5b9979d8c8870aa6770eaf881d4 GIT binary patch literal 490 zcmWIWW@h1HVBlb2IN!4^i~$L7GO#fCx`sIFdiuHP|2xIN5CBvv!ob17fuU3cs12^v z*U`_@%{4eg&)4m<@0rs+-nx1hdA)VD&Yd~GImqCO@q?#DdS1Rdp1v1LS8WM0FuGuT z!8qi?hZE<0eYL!FuRnSE=qVG>E_RL`mb1mJfF@f2F>bp#fwC#3xw(~kB^4#7^}Vip z>v;H_^SJ8mcgFYZMQuHeQ)j&WPo3A_$i)4^iKS$6@h9)#lGUF+Zw?OT4(cxH_7>{) z3hG|d^OdLf3(pR)#U-ov+d2V_^#EJU$i&5fJA{BrkN`XoAmPQxB*K6QF=YRMLJR@4 pflRnor0@&yMl}K1VIY4az;YlH9tr{8tZX1DW+2=Gq!k!JJOGR=c1{2Q literal 0 HcmV?d00001 diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-313-changes/camel-hazelzcast-starter-3.13.0.jar b/rules/rules-reviewed/camel3/camel2/tests/data/xml-313-changes/camel-hazelzcast-starter-3.13.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..361a34e4a9c3ab17ee8d740521bc64bd9a4624a0 GIT binary patch literal 483 zcmWIWW@h1HVBlb2IN!4^i~$L7GO#fCx`sIFdiuHP|2xIN5CBvv!ob17fuU3cs12^v z*U`_@%{4eg&)4m<@0rs+-nx1hdA)VD&Yd~GImqCO@q?#DdS1Rdp1v1LS8WM0FuGuT z!8qi?hZE<0eYL!FuRnSE=qVG>E_RL`mb1mJfF@f2F>bp#fwC#3xw(~kB^4#7^}Vip z>v;H_^SJ8mcgFYZMQuHeQ)j&WPo3A_$i)33O(ksUvk+BvvFR_wrmKieT_P4K`C3xy zwPXP!*hT{{=Udi5^K8I2GBR;7;0_v~5+nfkJtUwQnM4>6L51uQP*5R&HjoL|iWG1G i-l!%ZI}GGu1XvDa!o45h&B_LnVg|x3Kw6R!!~*~)Hg3}Z literal 0 HcmV?d00001 diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-313-changes/camel-mllp-3.13.0.jar b/rules/rules-reviewed/camel3/camel2/tests/data/xml-313-changes/camel-mllp-3.13.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..d47eaa80ee8b28e22908ef933b062f7adc981ed2 GIT binary patch literal 457 zcmWIWW@h1HVBlb2IN!4^i~$L7GO#fCx`sIFdiuHP|2xIN5CBvv!ob17fuU3cs12^v z*U`_@%{4eg&)4m<@0rs+-nx1hdA)VD&Yd~GImqCO@q?#DdS1Rdp1v1LS8WM0FuGuT z!8qi?hZE<0eYL!FuRnSE=qVG>E_RL`mb1mJfF@f2F>bp#fwC#3xw(~kB^4#7^}Vip z>v;H_^SJ8mcgFYZMyAQTc3N7ph8?SFJ66RO12*@;jB;T`pe|*wxr|I)47dXTs00bX z{RjyTMkWykM1UYW7Ze}}pbccgwIT&ifH$fM$PNQ}3jvk`nQ%`Ac(byBq?mzl3y}T~ H;xGUJa;IiX literal 0 HcmV?d00001 diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-315-changes/camel-foobar-3.15.0.jar b/rules/rules-reviewed/camel3/camel2/tests/data/xml-315-changes/camel-foobar-3.15.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..3a497c5f831f3b48861dfdc5be38fe276ae96491 GIT binary patch literal 459 zcmWIWW@h1HVBlb2IN!4^i~$L7GO#fCx`sIFdiuHP|2xIN5CBvv!ob17fuU3cs12^v z*U`_@%{4eg&)4m<@0rs+-nx1hdA)VD&Yd~GImqCO@q?#DdS1Rdp1v1LS8WM0FuGuT z!8qi?hZE<0eYL!FuRnSE=qVG>E_RL`mb1mJfF@f2F>bp#fwC#3xw(~kB^4#7^}Vip z>v;H_^SJ8mcgFYZMyAQTGJpQ`>~sw~R@JtwiY*3gvTZB7yfRRqD%fO3CN2itK>$>O z1mM1e1PCLO2m>NWkR1#P5(Ll>~a00w};6)dXaRfjou)%YjU|Hv_y`*+5dvK)3}+ IGctmB0I>jNL;wH) literal 0 HcmV?d00001 diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-315-changes/camel-kamelet-reify-3.15.0.jar b/rules/rules-reviewed/camel3/camel2/tests/data/xml-315-changes/camel-kamelet-reify-3.15.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..cd492f562ded98a2a4688c21c9f347c57084b6ee GIT binary patch literal 464 zcmWIWW@h1HVBlb2IN!4^i~$L7GO#fCx`sIFdiuHP|2xIN5CBvv!ob17!EgahsR&RT zT&b_4pQoE^aEP9-+h^Z1r+vJ2^)B*y>uQ}lbAEG>!4=~NPmA=te04m1FP5&_5@cX> z!T5r4$b}Cl&indmdFft%^7PSDCZJvH96Ky$i(3Irwg6&;-I&f~U`Q#=&8^fcsVF(E z?{(c<$HV8G$5n5?GrngxGELrfQ^9Df%XSS@2@-&N6%s0pOd<@3a6xu8C|nRg8_0xfMGB<=Z-faT-yu7U6QLc*S`Nf; UzXo`-vVmlofp80uW@7~L0ID-+$^ZZW literal 0 HcmV?d00001 diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-315-changes/camel-spring-javaconfig-3.15.0.jar b/rules/rules-reviewed/camel3/camel2/tests/data/xml-315-changes/camel-spring-javaconfig-3.15.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..624b108a037857624c315ebb8645abbe9db4c1b8 GIT binary patch literal 470 zcmWIWW@h1HVBlb2xX`mLi~$L7GO#fCx`sIFdiuHP|2xIN5CBvv!ob17fuU3cs12^v z*U`_@%{4eg&)4m<@0rs+-nx1hdA)VD&Yd~GImqCO@q?#DdS1Rdp1v1LS8WM0FuGuT z!8qi?hZE<0eYL!FuRnSE=qVG>E_RL`mb1mJfF@f2F>bp#fwC#3xw(~kB^4#7^}Vip z>v;H_^SJ8mcgFYZMyAQTjeRRkbavVv7M=lEtOjuLm^3 z0Bi{(6Bh&S&;Tky0&ovQ!iJGagaHvc$ZiLP4gzQcnQ*O0VHMzwY67yuKz>AkE_RL`mb1mJfF@f2F>bp#fwC#3xw(~kB^4#7^}Vip z>v;H_^SJ8mcgFYZMyAQTR97BVJ^8azwR2|WO4p;ijLeugzSD$2qAzrkO|j{6kY+|s3ssg4CGG) ZSPo>ueI4M<$_A2R2Er{sT7VJ60|51mZE_RL`mb1mJfF@f2F>bp#fwC#3xw(~kB^4#7^}Vip z>v;H_^SJ8mcgFYZMyAQTR97BVJ^8azwR2|WO4p;ijd@ gH38XSAnzi;av&4#`2cTLHjorE5N-j|;*2030CYuhw*UYD literal 0 HcmV?d00001 diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-317-changes/camel-atomix-3.17.0.jar b/rules/rules-reviewed/camel3/camel2/tests/data/xml-317-changes/camel-atomix-3.17.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..f7facf296705a52a33168df398680e2633d8dd25 GIT binary patch literal 459 zcmWIWW@h1HVBlb2xX`mLi~$L7GO#fCx`sIFdiuHP|2xIN5CBvv!ob17fuU3cs12^v z*U`_@%{4eg&)4m<@0rs+-nx1hdA)VD&Yd~GImqCO@q?#DdS1Rdp1v1LS8WM0FuGuT z!8qi?hZE<0eYL!FuRnSE=qVG>E_RL`mb1mJfF@f2F>bp#fwC#3xw(~kB^4#7^}Vip z>v;H_^SJ8mcgFYZMyAQTI#qw}oGBW1tg7u<6E_RL`mb1mJfF@f2F>bp#fwC#3xw(~kB^4#7^}Vip z>v;H_^SJ8mcgFYZMyAQTJXdyB&iom6tg7u<6E_RL`mb1mJfF@f2F>bp#fwC#3xw(~kB^4#7^}Vip z>v;H_^SJ8mcgFYZMyAQTJXdyB9#!qMycu?^s_j`7TMXFn#|zVcs{yrYfDLD4;$pxZ z3P2@D0Paypm@qPlFd#w&+0CF(K>%$a6Rs60i~_t-O+a=S$ZrU+9LR+GG{Bpc4J5@3 Mgj;|#3nPdJ0K(B~oB#j- literal 0 HcmV?d00001 diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-317-changes/camel-elsql-3.17.0.jar b/rules/rules-reviewed/camel3/camel2/tests/data/xml-317-changes/camel-elsql-3.17.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..91c17aca463c6872fecb4fd132a02d038de328be GIT binary patch literal 458 zcmWIWW@h1HVBlb2xX`mLi~$L7GO#fCx`sIFdiuHP|2xIN5CBvv!ob17fuU3cs12^v z*U`_@%{4eg&)4m<@0rs+-nx1hdA)VD&Yd~GImqCO@q?#DdS1Rdp1v1LS8WM0FuGuT z!8qi?hZE<0eYL!FuRnSE=qVG>E_RL`mb1mJfF@f2F>bp#fwC#3xw(~kB^4#7^}Vip z>v;H_^SJ8mcgFYZMyAQTR$3lywG2B})%L84Ee34xnLPg~NE_RL`mb1mJfF@f2F>bp#fwC#3xw(~kB^4#7^}Vip z>v;H_^SJ8mcgFYZMyAQTR;r%V3_DiU_Nclyjj^mQp`ZO1xWt~ GaToyMd1S=^ literal 0 HcmV?d00001 diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-317-changes/camel-ganglia-3.17.0.jar b/rules/rules-reviewed/camel3/camel2/tests/data/xml-317-changes/camel-ganglia-3.17.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..76db74897cf0f3d4f4a65626a475260e058df1b4 GIT binary patch literal 460 zcmWIWW@h1HVBlb2xX`mLi~$L7GO#fCx`sIFdiuHP|2xIN5CBvv!ob17fuU3cs12^v z*U`_@%{4eg&)4m<@0rs+-nx1hdA)VD&Yd~GImqCO@q?#DdS1Rdp1v1LS8WM0FuGuT z!8qi?hZE<0eYL!FuRnSE=qVG>E_RL`mb1mJfF@f2F>bp#fwC#3xw(~kB^4#7^}Vip z>v;H_^SJ8mcgFYZMyAQTUUpW#w4B))cC4!HSruCh*yt~|c{^2r8r8r?Gcs{8;0^6VS?;pP?#WqHjoL|iWEWt-l!%ZI}GGA1XvDa!u=WG&B_LnVg|x3 KK$?jW!~+0hduc2H literal 0 HcmV?d00001 diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-317-changes/camel-hystrix-3.17.0.jar b/rules/rules-reviewed/camel3/camel2/tests/data/xml-317-changes/camel-hystrix-3.17.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..6e99c5c2b563da3f31cc189ca5cb5ea9c9704da2 GIT binary patch literal 460 zcmWIWW@h1HVBlb2xX`mLi~$L7GO#fCx`sIFdiuHP|2xIN5CBvv!ob17fuU3cs12^v z*U`_@%{4eg&)4m<@0rs+-nx1hdA)VD&Yd~GImqCO@q?#DdS1Rdp1v1LS8WM0FuGuT z!8qi?hZE<0eYL!FuRnSE=qVG>E_RL`mb1mJfF@f2F>bp#fwC#3xw(~kB^4#7^}Vip z>v;H_^SJ8mcgFYZMyAQTB&Qx#b)6|1cC4!HSruCh*ytKN=QAomjcQ<{8JV~kaEAd< z2@-&N6A~hfOd<@3FhO=PC`=GQ8_0xfMGBz+Z&VYI9R~6l0xSnI;rE_RL`mb1mJfF@f2F>bp#fwC#3xw(~kB^4#7^}Vip z>v;H_^SJ8mcgFYZMyAQTB4<{<3_DiU_NGU1*K@MdKLNihTA79jl} H#9;scJX~nS literal 0 HcmV?d00001 diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-317-changes/camel-leveldb-legacy-3.17.0.jar b/rules/rules-reviewed/camel3/camel2/tests/data/xml-317-changes/camel-leveldb-legacy-3.17.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..16e3562c9596b0fc51f7eb092fbb7ab96f815b84 GIT binary patch literal 466 zcmWIWW@h1HVBlb2xY)BTi~$L7GO#fCx`sIFdiuHP|2xIN5CBvv!ob17fuU3cs12^v z*U`_@%{4eg&)4m<@0rs+-nx1hdA)VD&Yd~GImqCO@q?#DdS1Rdp1v1LS8WM0FuGuT z!8qi?hZE<0eYL!FuRnSE=qVG>E_RL`mb1mJfF@f2F>bp#fwC#3xw(~kB^4#7^}Vip z>v;H_^SJ8mcgFYZMyAQTELWzkwAA!;u(CDWdFfQd`3o`U8@Rz1tZH^t&;n}L1zW(# z#KnL+B!Ehg0Nk^XaA9N;VL*fovb#Ycg81IgknWZGbl` Q8%T;72)6)f4n`0U0DHY@HUIzs literal 0 HcmV?d00001 diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-317-changes/camel-msv-3.17.0.jar b/rules/rules-reviewed/camel3/camel2/tests/data/xml-317-changes/camel-msv-3.17.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..dc7c9dff795f633fda3a25478be5266d7ad7a3ba GIT binary patch literal 456 zcmWIWW@h1HVBlb2xY)BTi~$L7GO#fCx`sIFdiuHP|2xIN5CBvv!ob17fuU3cs12^v z*U`_@%{4eg&)4m<@0rs+-nx1hdA)VD&Yd~GImqCO@q?#DdS1Rdp1v1LS8WM0FuGuT z!8qi?hZE<0eYL!FuRnSE=qVG>E_RL`mb1mJfF@f2F>bp#fwC#3xw(~kB^4#7^}Vip z>v;H_^SJ8mcgFYZMyAQTb{6;eqU0P8nu G!vFviM`=F* literal 0 HcmV?d00001 diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-317-changes/camel-nagios-3.17.0.jar b/rules/rules-reviewed/camel3/camel2/tests/data/xml-317-changes/camel-nagios-3.17.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..37179307fbcdb6fc8ba1172eb5c2f33a0cd18c59 GIT binary patch literal 459 zcmWIWW@h1HVBlb2xY)BTi~$L7GO#fCx`sIFdiuHP|2xIN5CBvv!ob17fuU3cs12^v z*U`_@%{4eg&)4m<@0rs+-nx1hdA)VD&Yd~GImqCO@q?#DdS1Rdp1v1LS8WM0FuGuT z!8qi?hZE<0eYL!FuRnSE=qVG>E_RL`mb1mJfF@f2F>bp#fwC#3xw(~kB^4#7^}Vip z>v;H_^SJ8mcgFYZMyAQTDm!1!{CPC&SXJAzDz+G~$yHr?0m?vqs$i2DnYb8m2LVtC z5`g;>5+ICBA`FNiL3S`GNDx39$b@S}3ZMXQR1=UL2J#pJEC({--VE?&Wdlhu1K}1R J&BzGi0RT}JXOsW{ literal 0 HcmV?d00001 diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-317-changes/camel-nsq-3.17.0.jar b/rules/rules-reviewed/camel3/camel2/tests/data/xml-317-changes/camel-nsq-3.17.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..455895d757603465498996ed5eae468f5b5cc2d1 GIT binary patch literal 456 zcmWIWW@h1HVBlb2xX`mLi~$L7GO#fCx`sIFdiuHP|2xIN5CBvv!ob17fuU3cs12^v z*U`_@%{4eg&)4m<@0rs+-nx1hdA)VD&Yd~GImqCO@q?#DdS1Rdp1v1LS8WM0FuGuT z!8qi?hZE<0eYL!FuRnSE=qVG>E_RL`mb1mJfF@f2F>bp#fwC#3xw(~kB^4#7^}Vip z>v;H_^SJ8mcgFYZMyAQTDv!2?9jj`4R>c+rHkRd%d#D0XlM>iiMkX!>-2MkDK>~0u zLPCR)NrV9r9>}f*g$Dv?1DSBGNTCzpjcNk2!$7`5faO3Y+>Zg?tZX1DW+2=Gr2m09 F3;;tiW%B?4 literal 0 HcmV?d00001 diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-317-changes/camel-ribbon-3.17.0.jar b/rules/rules-reviewed/camel3/camel2/tests/data/xml-317-changes/camel-ribbon-3.17.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..1e44a877af71007f33a792e61ada02a65c480da5 GIT binary patch literal 459 zcmWIWW@h1HVBlb2xY)BTi~$L7GO#fCx`sIFdiuHP|2xIN5CBvv!ob17fuU3cs12^v z*U`_@%{4eg&)4m<@0rs+-nx1hdA)VD&Yd~GImqCO@q?#DdS1Rdp1v1LS8WM0FuGuT z!8qi?hZE<0eYL!FuRnSE=qVG>E_RL`mb1mJfF@f2F>bp#fwC#3xw(~kB^4#7^}Vip z>v;H_^SJ8mcgFYZMyAQTTxWWE{;Ui;R@L^biY*3gvdY5r15+ICBA`FNiL3S`GNDx39$b@S}3ZMXQR1=UL2J#pJEC({--VE?&Wdlhu1K}1R J&BzGi0RUjnX2<{l literal 0 HcmV?d00001 diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-317-changes/camel-sip-3.17.0.jar b/rules/rules-reviewed/camel3/camel2/tests/data/xml-317-changes/camel-sip-3.17.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..665709387d03b56198eb7a70a9cd224f0fd77adc GIT binary patch literal 456 zcmWIWW@h1HVBlb2xY)BTi~$L7GO#fCx`sIFdiuHP|2xIN5CBvv!ob17fuU3cs12^v z*U`_@%{4eg&)4m<@0rs+-nx1hdA)VD&Yd~GImqCO@q?#DdS1Rdp1v1LS8WM0FuGuT z!8qi?hZE<0eYL!FuRnSE=qVG>E_RL`mb1mJfF@f2F>bp#fwC#3xw(~kB^4#7^}Vip z>v;H_^SJ8mcgFYZMyAQTj?QEaJ66^9tcooLZ0xFlOX3PZO-f*68JV~kaQh#q1PQ>s z2nh{FCJ_cicp$qL6dnkm4P?T#B85(XH>wH94g>iL0hR-qa6blkv$BDtn1OH$kp2ha GFaQ8!4Q6Km literal 0 HcmV?d00001 diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-317-changes/camel-soroush-3.17.0.jar b/rules/rules-reviewed/camel3/camel2/tests/data/xml-317-changes/camel-soroush-3.17.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..2a45bb638366c0066c8d83a268429ea3e7b9ce50 GIT binary patch literal 460 zcmWIWW@h1HVBlb2xY)BTi~$L7GO#fCx`sIFdiuHP|2xIN5CBvv!ob17fuU3cs12^v z*U`_@%{4eg&)4m<@0rs+-nx1hdA)VD&Yd~GImqCO@q?#DdS1Rdp1v1LS8WM0FuGuT z!8qi?hZE<0eYL!FuRnSE=qVG>E_RL`mb1mJfF@f2F>bp#fwC#3xw(~kB^4#7^}Vip z>v;H_^SJ8mcgFYZMyAQTj{bE0x%8-H*s-d%XH{%5V52uLJ9k$Fs8J1UG$Rui1MV;Y zDnSBpZ$d(Zkx7IB5hlnk289U%XakvWtwE_RL`mb1mJfF@f2F>bp#fwC#3xw(~kB^4#7^}Vip z>v;H_^SJ8mcgFYZMyAQTR6AcD{kfDi>{wOXvnsY2u+e{94Xagv8r8r?Gcs{8;0^6VS?;pP?#WqHjoL|iWEWt-l!%ZI}GGA1XvDa!u=WG&B_LnVg|x3 KK$?jW!~+1#QD`gx literal 0 HcmV?d00001 diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-317-changes/camel-yammer-3.17.0.jar b/rules/rules-reviewed/camel3/camel2/tests/data/xml-317-changes/camel-yammer-3.17.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..1936a9104a7be8013c7677c8078eddd4b857e41c GIT binary patch literal 459 zcmWIWW@h1HVBlb2xY)BTi~$L7GO#fCx`sIFdiuHP|2xIN5CBvv!ob17fuU3cs12^v z*U`_@%{4eg&)4m<@0rs+-nx1hdA)VD&Yd~GImqCO@q?#DdS1Rdp1v1LS8WM0FuGuT z!8qi?hZE<0eYL!FuRnSE=qVG>E_RL`mb1mJfF@f2F>bp#fwC#3xw(~kB^4#7^}Vip z>v;H_^SJ8mcgFYZMyAQTrgrY!xzaW4SXJAzDz+G~$@`g~aVi7#se(;rWa47L9Rxrn zNC56jNPsXhi7+671lhr$AVC0aAQP??DS!gJQB6R07|3G?upG#Qdo#eBl?^1t41`;N JG$SL32LRN#XD$E$ literal 0 HcmV?d00001 diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-318-changes/camel-cxf-3.18.0.jar b/rules/rules-reviewed/camel3/camel2/tests/data/xml-318-changes/camel-cxf-3.18.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..5f77d5bfa38a1324b90cd2b6640ce14f6324861e GIT binary patch literal 456 zcmWIWW@h1HVBlb2xY)BTi~$L7GO#fCx`sIFdiuHP|2xIN5CBvv!ob17!EgypsR&RT zT&b_4pQoE^aEP9-+h^Z1r+vJ2^)B*y>uQ}lbAEG>!4=~NPmA=te04m1FP5&_5@cX> z!T5r4$b}Cl&indmdFft%^7PSDCZJvH96Ky$i(3Irwg6&;-I&f~U`Q#=&8^fcsVF(E z?{(c<$HV8G$5n5?GrngxGELrfQZzH{SXG-?6Lg^f$UmPcp!i_kO|j{6gmOk2opfQLUtG@LOYPP9Ejn54De=U1IaQ2 M;T9nM55!>r01QxOV*mgE literal 0 HcmV?d00001 diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-318-changes/camel-cxf-starter-3.18.0.jar b/rules/rules-reviewed/camel3/camel2/tests/data/xml-318-changes/camel-cxf-starter-3.18.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..ee6b94fc0d59cf45180d44c26334067db22744b1 GIT binary patch literal 476 zcmWIWW@h1HVBlb2xYV;Pi~$L7GO#fCx`sIFdiuHP|2xIN5CBvv!ob17fuU3cs12^v z*U`_@%{4eg&)4m<@0rs+-nx1hdA)VD&Yd~GImqCO@q?#DdS1Rdp1v1LS8WM0FuGuT z!8qi?hZE<0eYL!FuRnSE=qVG>E_RL`mb1mJfF@f2F>bp#fwC#3xw(~kB^4#7^}Vip z>v;H_^SJ8mcgFYZMQuHeQ)j&WPo3A_$i)3ZEquvKvFR#eQ&N=Rg6qr47kGts00bXy$uN=MkWykL>M9a02D?DpbccgwIYRBfH$fM$PNSf a6akh4nQ(sxc(byBq?mzl3y>CK1n~eh8*H-x literal 0 HcmV?d00001 diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-318-changes/camel-milo-3.18.0.jar b/rules/rules-reviewed/camel3/camel2/tests/data/xml-318-changes/camel-milo-3.18.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..73e79231cbbe24e4d35210723fafdb0c479e86b8 GIT binary patch literal 457 zcmWIWW@h1HVBlb2xY)BTi~$L7GO#fCx`sIFdiuHP|2xIN5CBvv!ob17fuU3cs12^v z*U`_@%{4eg&)4m<@0rs+-nx1hdA)VD&Yd~GImqCO@q?#DdS1Rdp1v1LS8WM0FuGuT z!8qi?hZE<0eYL!FuRnSE=qVG>E_RL`mb1mJfF@f2F>bp#fwC#3xw(~kB^4#7^}Vip z>v;H_^SJ8mcgFYZMyAQTcFwf?8Fs9yO{|J725c^~UBod(pe|*wxr|I)47dXTs00bX z{RjyTMkWykM1UYW7Ze}}pbccgwIT&ifH$fM$PNQ}3jvk`nQ%`Ac(byBq?mzl3y}T~ H;xGUJVy0!a literal 0 HcmV?d00001 diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-319-changes/camel-ahc-3.19.0.jar b/rules/rules-reviewed/camel3/camel2/tests/data/xml-319-changes/camel-ahc-3.19.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..de98221ea8bd71367387f6892a386edafda8b4e4 GIT binary patch literal 456 zcmWIWW@h1HVBlb2xYV;Pi~$L7GO#fCx`sIFdiuHP|2xIN5CBvv!ob17fuU3cs12^v z*U`_@%{4eg&)4m<@0rs+-nx1hdA)VD&Yd~GImqCO@q?#DdS1Rdp1v1LS8WM0FuGuT z!8qi?hZE<0eYL!FuRnSE=qVG>E_RL`mb1mJfF@f2F>bp#fwC#3xw(~kB^4#7^}Vip z>v;H_^SJ8mcgFYZMyAQTIwenr9jj`aR>c+rHdfMKqFMo{NeOH$BNG<`ZvO+7AOW}+ zA)&#@B*K6Q4`kPZ!UF-cflRnoq|gcQMl}K1VIW^2z;YlH?#BRcRyL3nGZ1b8(*Hml F1^_U+WK{qF literal 0 HcmV?d00001 diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-319-changes/camel-ahc-ws-3.19.0.jar b/rules/rules-reviewed/camel3/camel2/tests/data/xml-319-changes/camel-ahc-ws-3.19.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..597640886a0d8a6fb9a176489f3e96ca9fdd8ff5 GIT binary patch literal 459 zcmWIWW@h1HVBlb2xYV;Pi~$L7GO#fCx`sIFdiuHP|2xIN5CBvv!ob17fuU3cs12^v z*U`_@%{4eg&)4m<@0rs+-nx1hdA)VD&Yd~GImqCO@q?#DdS1Rdp1v1LS8WM0FuGuT z!8qi?hZE<0eYL!FuRnSE=qVG>E_RL`mb1mJfF@f2F>bp#fwC#3xw(~kB^4#7^}Vip z>v;H_^SJ8mcgFYZMyAQTIweo;dU`bMSXJA!Dz+G~$&r`k43vTTRKX@QGI25B4g#PO zBmnm%BtRIML>Lf3g6v>WkRX6IkO|j{6hHyqs3ssg4CFBcSPo>uy&2%m$_A2R2Er{s JnvoI20|22CX2$>k literal 0 HcmV?d00001 diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-319-changes/camel-ftp-3.19.0.jar b/rules/rules-reviewed/camel3/camel2/tests/data/xml-319-changes/camel-ftp-3.19.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..c381a3a5e8d00a6b8acdf83ac28740be8a378737 GIT binary patch literal 456 zcmWIWW@h1HVBlb2xYV;Pi~$L7GO#fCx`sIFdiuHP|2xIN5CBvv!ob17fuU3cs12^v z*U`_@%{4eg&)4m<@0rs+-nx1hdA)VD&Yd~GImqCO@q?#DdS1Rdp1v1LS8WM0FuGuT z!8qi?hZE<0eYL!FuRnSE=qVG>E_RL`mb1mJfF@f2F>bp#fwC#3xw(~kB^4#7^}Vip z>v;H_^SJ8mcgFYZMyAQTGF4f_j#afyt73}*8|&fv=a&LdlM>iiMkX!>-2MkDK>~0u zLPCR)NrV9r9>}f*g$Dv?1DSBGNTCzpjcNk2!$7`5faO3Y+>Zg?tZX1DW+2=Gr2m09 F3;+(-W{m&< literal 0 HcmV?d00001 diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-319-changes/camel-kafka-3.19.0.jar b/rules/rules-reviewed/camel3/camel2/tests/data/xml-319-changes/camel-kafka-3.19.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..b6b5be41c10c5084f9e4c1cbbeeb0b1d1e314807 GIT binary patch literal 458 zcmWIWW@h1HVBlb2xYV;Pi~$L7GO#fCx`sIFdiuHP|2xIN5CBvv!ob17fuU3cs12^v z*U`_@%{4eg&)4m<@0rs+-nx1hdA)VD&Yd~GImqCO@q?#DdS1Rdp1v1LS8WM0FuGuT z!8qi?hZE<0eYL!FuRnSE=qVG>E_RL`mb1mJfF@f2F>bp#fwC#3xw(~kB^4#7^}Vip z>v;H_^SJ8mcgFYZMyAQTZgytg>TnxBF0H_2B zz&!~G4@M>t21JM;yB8E92%rsQ!nGoWPk=Y73CIou`3nJ-1DSAN26(fwfuxv$a0`gR G2qFLn-)4>g literal 0 HcmV?d00001 diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-319-changes/camel-netty-3.19.0.jar b/rules/rules-reviewed/camel3/camel2/tests/data/xml-319-changes/camel-netty-3.19.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..bcc9f12820cac940a73a5f10f733e4607ca80eae GIT binary patch literal 458 zcmWIWW@h1HVBlb2xYV;Pi~$L7GO#fCx`sIFdiuHP|2xIN5CBvv!ob17fuU3cs12^v z*U`_@%{4eg&)4m<@0rs+-nx1hdA)VD&Yd~GImqCO@q?#DdS1Rdp1v1LS8WM0FuGuT z!8qi?hZE<0eYL!FuRnSE=qVG>E_RL`mb1mJfF@f2F>bp#fwC#3xw(~kB^4#7^}Vip z>v;H_^SJ8mcgFYZMyAQTDp#tiP7OO&)i$k)Ee33`iR)H%C7?DHu)&N>TnxBF0H_2B zz&!~G4@M>t21JM;yB8E92%rsQ!nGoWPk=Y73CIou`3nJ-1DSAN26(fwfuxv$a0`gR G2qFNNZDgtd literal 0 HcmV?d00001 diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-319-changes/camel-netty-http-3.19.0.jar b/rules/rules-reviewed/camel3/camel2/tests/data/xml-319-changes/camel-netty-http-3.19.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..27ca429bab6df6ba29c4e41beb8868a0af64e3c1 GIT binary patch literal 463 zcmWIWW@h1HVBlb2xYV;Pi~$L7GO#fCx`sIFdiuHP|2xIN5CBvv!ob17fuU3cs12^v z*U`_@%{4eg&)4m<@0rs+-nx1hdA)VD&Yd~GImqCO@q?#DdS1Rdp1v1LS8WM0FuGuT z!8qi?hZE<0eYL!FuRnSE=qVG>E_RL`mb1mJfF@f2F>bp#fwC#3xw(~kB^4#7^}Vip z>v;H_^SJ8mcgFYZMyAQTDp#tiPTeJ`s>&L6tg3BV6E_RL`mb1mJfF@f2F>bp#fwC#3xw(~kB^4#7^}Vip z>v;H_^SJ8mcgFYZMyAQTJS~^5WObccsTy{y%B_km25k1H{5@`}K%MGfvl*GV7;pyy zPze%%`x6o*j7%a7h(JMhGAK|GKpV(}Yefp80B=+ikR1l{8Uic_GT|N#@MdKLNihTA K77)z{;sF58t!FC$ literal 0 HcmV?d00001 diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-32-changes/camel-eventadmin-3.2.0.jar b/rules/rules-reviewed/camel3/camel2/tests/data/xml-32-changes/camel-eventadmin-3.2.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..2b410084886957a31199c476214bfe77641e9e28 GIT binary patch literal 462 zcmWIWW@h1HVBlb2IMcH&i~$L7GO#fCx`sIFdiuHP|2xIN5CBvv!ob17fuU3cs12^v z*U`_@%{4eg&)4m<@0rs+-nx1hdA)VD&Yd~GImqCO@q?#DdS1Rdp1v1LS8WM0FuGuT z!8qi?hZE<0eYL!FuRnSE=qVG>E_RL`mb1mJfF@f2F>bp#fwC#3xw(~kB^4#7^}Vip z>v;H_^SJ8mcgFYZMyAQTR;I43RPEHE_RL`mb1mJfF@f2F>bp#fwC#3xw(~kB^4#7^}Vip z>v;H_^SJ8mcgFYZMyAQTZZ3803_DikR>c+rHg<7&;d2F`CMB@3j7(e%xcv`Qf&}1R zgoFkolL!MMJdj-r3J(O(1~TDVkwPcH8`T74hk<;B0Ly_)xE}+&S=m5R%s{vWNdE(I F7yzheXDR>y literal 0 HcmV?d00001 diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-32-changes/camel-osgi-activator-3.2.0.jar b/rules/rules-reviewed/camel3/camel2/tests/data/xml-32-changes/camel-osgi-activator-3.2.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..da9d06d000f83b2e41250c2fb38f81e20037d251 GIT binary patch literal 466 zcmWIWW@h1HVBlb2IMcH&i~$L7GO#fCx`sIFdiuHP|2xIN5CBvv!ob17fuU3cs12^v z*U`_@%{4eg&)4m<@0rs+-nx1hdA)VD&Yd~GImqCO@q?#DdS1Rdp1v1LS8WM0FuGuT z!8qi?hZE<0eYL!FuRnSE=qVG>E_RL`mb1mJfF@f2F>bp#fwC#3xw(~kB^4#7^}Vip z>v;H_^SJ8mcgFYZMyAQTeja@}b64j{)tRZCsy|)Bj#ar;vBiKb@YpClQ46SD2W$Z& z6Bh&SkN_${0&vel!iAAZgaHvU$nFM(3<78anQ*O0;S}JFY67yuK>kC3E_RL`mb1mJfF@f2F>bp#fwC#3xw(~kB^4#7^}Vip z>v;H_^SJ8mcgFYZMyAQTSUW{6f4+P%$a6Rs60i~_t-O+a=S$ZrU+9LR+GG{Bpc4J5@3 Mgj;|#3nPdJ04%dE_RL`mb1mJfF@f2F>bp#fwC#3xw(~kB^4#7^}Vip z>v;H_^SJ8mcgFYZMyAQTjE_RL`mb1mJfF@f2F>bp#fwC#3xw(~kB^4#7^}Vip z>v;H_^SJ8mcgFYZMyAQTjTnxBF0H_2B zz&!~G4@M>t21JM;yB8E92%rsQ!nGoWPk=Y73CIou`3nJ-1DSAN26(fwfuxv$a0`gR G2qFNYK4iH7 literal 0 HcmV?d00001 diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-32-changes/camel-test-karaf-3.2.0.jar b/rules/rules-reviewed/camel3/camel2/tests/data/xml-32-changes/camel-test-karaf-3.2.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..eb6a145c88ce5e8f37aede07e1c601c3750c61f2 GIT binary patch literal 462 zcmWIWW@h1HVBlb2IMcH&i~$L7GO#fCx`sIFdiuHP|2xIN5CBvv!ob17fuU3cs12^v z*U`_@%{4eg&)4m<@0rs+-nx1hdA)VD&Yd~GImqCO@q?#DdS1Rdp1v1LS8WM0FuGuT z!8qi?hZE<0eYL!FuRnSE=qVG>E_RL`mb1mJfF@f2F>bp#fwC#3xw(~kB^4#7^}Vip z>v;H_^SJ8mcgFYZMyAQTR97BV-F36mwKFs9Se089TMXE6kMh6g)qq+xz=kt2aWUWy z1)vfn0QV>)Oc}F7?Ab>WI3D=4gMgiWaCLlWu!29jb1 M!Yx3Wg%QL90LUI`IsgCw literal 0 HcmV?d00001 diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-320-changes/camel-bom-3.20.0.jar b/rules/rules-reviewed/camel3/camel2/tests/data/xml-320-changes/camel-bom-3.20.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..ff10efa922d493514d26add48a018f79afdc8efc GIT binary patch literal 456 zcmWIWW@h1HVBlb2xYV;Pi~$L7GO#fCx`sIFdiuHP|2xIN5CBvv!ob17fuU3cs12^v z*U`_@%{4eg&)4m<@0rs+-nx1hdA)VD&Yd~GImqCO@q?#DdS1Rdp1v1LS8WM0FuGuT z!8qi?hZE<0eYL!FuRnSE=qVG>E_RL`mb1mJfF@f2F>bp#fwC#3xw(~kB^4#7^}Vip z>v;H_^SJ8mcgFYZMyAQTJb&&CJ67e!R>c+rHg@G5pHB)vO-f*68JV~kaQh#q1PQ>s z2nh{FCJ_cicp$qL6dnkm4P?T#B85(XH>wH94g>iL0hR-qa6blkv$BDtn1OH$kp2ha GFaQAI9cQHg literal 0 HcmV?d00001 diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-320-changes/camel-salesforce-maven-plugin-3.20.0.jar b/rules/rules-reviewed/camel3/camel2/tests/data/xml-320-changes/camel-salesforce-maven-plugin-3.20.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..9c22cda769167369f289b73fe433e553ba9706b3 GIT binary patch literal 476 zcmWIWW@h1HVBlb2xYV;Pi~$L7GO#fCx`sIFdiuHP|2xIN5CBvv!ob17fuU3cs12^v z*U`_@%{4eg&)4m<@0rs+-nx1hdA)VD&Yd~GImqCO@q?#DdS1Rdp1v1LS8WM0FuGuT z!8qi?hZE<0eYL!FuRnSE=qVG>E_RL`mb1mJfF@f2F>bp#fwC#3xw(~kB^4#7^}Vip z>v;H_^SJ8mcgFYZMyAQTj&@qEJev8__2kN3J3CWXR_5fmW!SMQH?}Ia7_e2d zRNtI30UBfmwu+I7ivf3-0F@vCxVIr8#KE_RL`mb1mJfF@f2F~aUk7|vv1NGZ+Dt<)>2C^@a~ zb=_OX!{?mGRd2sDzGpWwP2P2MrEBWUlPfEKKHasmGj(O_E>FK1SU9jkIjaEA#{2@-&N8xlf{Od<@3FhceLD2xz58_0xfMGCP1Z-faT gpCUVq6QLc*S`Nf;e+PK8vVmlofp80u7GebP0DL5I%m4rY literal 0 HcmV?d00001 diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-321-changes/camel-cmis-3.21.0.jar b/rules/rules-reviewed/camel3/camel2/tests/data/xml-321-changes/camel-cmis-3.21.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..fc9a0aa24553c945cfab0bac90d62c1889aac06b GIT binary patch literal 457 zcmWIWW@h1HVBlb2xZJZXi~$L7GO#fCx`sIFdiuHP|2xIN5CBvv!ob17fuU3cs12^v z*U`_@%{4eg&)4m<@0rs+-nx1hdA)VD&Yd~GImqCO@q?#DdS1Rdp1v1LS8WM0FuGuT z!8qi?hZE<0eYL!FuRnSE=qVG>E_RL`mb1mJfF@f2F>bp#fwC#3xw(~kB^4#7^}Vip z>v;H_^SJ8mcgFYZMyAQTPVSs}H0)TFTU!-d4A|T!7mso(0(B{a&1GcbV!#~$KqW{3 z?ng*)FfxfSAOZy0xu5_+0Bs->t`#YG0=!X8Kz10&TL`cm$b@?`z?+o~B*hGbTY&U` H5QhN(CN5}| literal 0 HcmV?d00001 diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-321-changes/camel-dozer-3.21.0.jar b/rules/rules-reviewed/camel3/camel2/tests/data/xml-321-changes/camel-dozer-3.21.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..73ef14526611408643e6eeb2726d9f7ad532626e GIT binary patch literal 458 zcmWIWW@h1HVBlb2xZJZXi~$L7GO#fCx`sIFdiuHP|2xIN5CBvv!ob17fuU3cs12^v z*U`_@%{4eg&)4m<@0rs+-nx1hdA)VD&Yd~GImqCO@q?#DdS1Rdp1v1LS8WM0FuGuT z!8qi?hZE<0eYL!FuRnSE=qVG>E_RL`mb1mJfF@f2F>bp#fwC#3xw(~kB^4#7^}Vip z>v;H_^SJ8mcgFYZMyAQTG=GM!bPYRJ<T58*kDE`E(Y8o091km z;GTqp2P2aR10qC_-3tm41keUD;aZWxC%_xk1Z0PS{DlC^flRnB1H4(;KvK*=xCO*u G1Q7sWb!H9# literal 0 HcmV?d00001 diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-321-changes/camel-java-joor-dsl-3.21.0.jar b/rules/rules-reviewed/camel3/camel2/tests/data/xml-321-changes/camel-java-joor-dsl-3.21.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..a9ff601988eb805767d25d7095f353248d708f97 GIT binary patch literal 466 zcmWIWW@h1HVBlb2xZJZXi~$L7GO#fCx`sIFdiuHP|2xIN5CBvv!ob17fuU3cs12^v z*U`_@%{4eg&)4m<@0rs+-nx1hdA)VD&Yd~GImqCO@q?#DdS1Rdp1v1LS8WM0FuGuT z!8qi?hZE<0eYL!FuRnSE=qVG>E_RL`mb1mJfF@f2F>bp#fwC#3xw(~kB^4#7^}Vip z>v;H_^SJ8mcgFYZMyAQTB0Ez%cSZjE>AFkvsAbr(Dz~;OwivJlDgK@eT0reOU<(+T zxEOGU1W*YQfO{4aE{sef42Y0Hb~h+w5I`Hqglk0#rvPtM6ObJS@*e^$2QuNl4e(}V Q14%Ih;T9mx!3g330G+vL&;S4c literal 0 HcmV?d00001 diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-321-changes/camel-platform-http-starter-3.21.0.jar b/rules/rules-reviewed/camel3/camel2/tests/data/xml-321-changes/camel-platform-http-starter-3.21.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..cbac173cc703cafd5dccd603b5556acb77d9fa0f GIT binary patch literal 486 zcmWIWW@h1HVBlb2xZJZXi~$L7GO#fCx`sIFdiuHP|2xIN5CBvv!ob17fuU3cs12^v z*U`_@%{4eg&)4m<@0rs+-nx1hdA)VD&Yd~GImqCO@q?#DdS1Rdp1v1LS8WM0FuGuT z!8qi?hZE<0eYL!FuRnSE=qVG>E_RL`mb1mJfF@f2F>bp#fwC#3xw(~kB^4#7^}Vip z>v;H_^SJ8mcgFYZMQuHeQ)j&WPo3A_$i)3Z?1{>>B~QhlzDk=iMdXFpbQQ6wOT;22 zUrS29k}O~ZTUxmIkewaSNPDoQj7(e%xI+i11PQE_RL`mb1mJfF@f2F>bp#fwC#3xw(~kB^4#7^}Vip z>v;H_^SJ8mcgFYZMyAQTR97BV4Leq)R>c+rHg?*kS-%y4nv}rCGBR;7;PyXI2@-&N z5fU1VOd<@3@IZDgC_E5A8_0xfMGBn&Z&VYI9R~6h0xSnI;eHJ8W@Q6OF$3WiApH-- GVE_Pm7H3QV literal 0 HcmV?d00001 diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-35-changes/camel-test-spring-3.5.0.jar b/rules/rules-reviewed/camel3/camel2/tests/data/xml-35-changes/camel-test-spring-3.5.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..2d5aea7e477d90fb21922d3ed026e0b8d329d8d9 GIT binary patch literal 463 zcmWIWW@h1HVBlb2INP%=i~$L7GO#fCx`sIFdiuHP|2xIN5CBvv!ob17fuU3cs12^v z*U`_@%{4eg&)4m<@0rs+-nx1hdA)VD&Yd~GImqCO@q?#DdS1Rdp1v1LS8WM0FuGuT z!8qi?hZE<0eYL!FuRnSE=qVG>E_RL`mb1mJfF@f2F>bp#fwC#3xw(~kB^4#7^}Vip z>v;H_^SJ8mcgFYZMyAQTR97BV-F1}Jb!O$uuwzxrs@P({rVIKw=cxnrYJyE?Wa47L z9SlGvNC56rNT4t>i7+671=-P{U_k(FAQP??DUbrZQB6R07|3%7upG#Qdo{qDl?^1t N41`;NG%F*B2LLv)XB+?k literal 0 HcmV?d00001 diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-36-changes/camel-hipchat-3.6.0.jar b/rules/rules-reviewed/camel3/camel2/tests/data/xml-36-changes/camel-hipchat-3.6.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..a0c97122d4660b7d1e21334eeed28c116f115329 GIT binary patch literal 459 zcmWIWW@h1HVBlb2INP%=i~$L7GO#fCx`sIFdiuHP|2xIN5CBvv!ob17fuU3cs12^v z*U`_@%{4eg&)4m<@0rs+-nx1hdA)VD&Yd~GImqCO@q?#DdS1Rdp1v1LS8WM0FuGuT z!8qi?hZE<0eYL!FuRnSE=qVG>E_RL`mb1mJfF@f2F>bp#fwC#3xw(~kB^4#7^}Vip z>v;H_^SJ8mcgFYZMyAQTBxkaol5+ICBA`FNiL3S`GNDx39$b@S}3ZMXQR1=UL2J#pJEC({--VE?&Wdlhu1K}1R J&BzGi0RY1TX2$>k literal 0 HcmV?d00001 diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-39-changes/camel-aws-cw-3.9.0.jar b/rules/rules-reviewed/camel3/camel2/tests/data/xml-39-changes/camel-aws-cw-3.9.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..0dfa8b20cc0d2066e24e29a652f014deab4a4dbc GIT binary patch literal 458 zcmWIWW@h1HVBlb2IM=f+i~$L7GO#fCx`sIFdiuHP|2xIN5CBvv!ob17fuU3cs12^v z*U`_@%{4eg&)4m<@0rs+-nx1hdA)VD&Yd~GImqCO@q?#DdS1Rdp1v1LS8WM0FuGuT z!8qi?hZE<0eYL!FuRnSE=qVG>E_RL`mb1mJfF@f2F>bp#fwC#3xw(~kB^4#7^}Vip z>v;H_^SJ8mcgFYZMyAQTI-efhb@FN0v8riRY%ySiO9f7yR|0BN0UON7#KnL+1b|AA z0Nj(1@L*&TVL*fkvU@=xf&kh;CR{60_yl;Pnt<#ukiQUMIgknWWq>y;8%T;72)BS3 Hj35F4Fd=9- literal 0 HcmV?d00001 diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-39-changes/camel-aws-ddb-3.9.0.jar b/rules/rules-reviewed/camel3/camel2/tests/data/xml-39-changes/camel-aws-ddb-3.9.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..92d70792f22216aa764a9f31a664d525879fed25 GIT binary patch literal 459 zcmWIWW@h1HVBlb2IM=f+i~$L7GO#fCx`sIFdiuHP|2xIN5CBvv!ob17fuU3cs12^v z*U`_@%{4eg&)4m<@0rs+-nx1hdA)VD&Yd~GImqCO@q?#DdS1Rdp1v1LS8WM0FuGuT z!8qi?hZE<0eYL!FuRnSE=qVG>E_RL`mb1mJfF@f2F>bp#fwC#3xw(~kB^4#7^}Vip z>v;H_^SJ8mcgFYZMyAQTI-efhrK#x|cC2bz6QpJyizkQw5vM$i&5fI|zVE zkO175kN{z15@A3D39^GhL4p9bqnd#1Fp$R(U^$Qp_hx`MD;r3P83?xk JX+}m64*=QE_RL`mb1mJfF@f2F>bp#fwC#3xw(~kB^4#7^}Vip z>v;H_^SJ8mcgFYZMyAQTI-efhwesZAuwzxzs@P({CcnKLaZeejPZex3BNG<`?jQgv zK>~1JLIQ-5NrV9rB*+d11qlLZ1DSBGNC6b!jcNk2!$2NGfaO3Y+?xU3tZX1DW+2=G Jq!}4OJOJ07YIXns literal 0 HcmV?d00001 diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-39-changes/camel-aws-ecs2-3.9.0.jar b/rules/rules-reviewed/camel3/camel2/tests/data/xml-39-changes/camel-aws-ecs2-3.9.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..23ebdb9a68989b05805ece4de6867880fc06df23 GIT binary patch literal 460 zcmWIWW@h1HVBlb2IM=f+i~$L7GO#fCx`sIFdiuHP|2xIN5CBvv!ob17fuU3cs12^v z*U`_@%{4eg&)4m<@0rs+-nx1hdA)VD&Yd~GImqCO@q?#DdS1Rdp1v1LS8WM0FuGuT z!8qi?hZE<0eYL!FuRnSE=qVG>E_RL`mb1mJfF@f2F>bp#fwC#3xw(~kB^4#7^}Vip z>v;H_^SJ8mcgFYZMyAQTI-efhwesXqx3FVX)2i5Fz(x!Ho?)p1)TjnFnvsc%0e2Vx zl^_AQHz6Uy$Rxsm2oq!%gTe#>w1G^xR-_OL@J2NO*E_RL`mb1mJfF@f2F>bp#fwC#3xw(~kB^4#7^}Vip z>v;H_^SJ8mcgFYZMyAQTI-efhwesfCuwzxzs@P({CVwq#NL2>vQw5vM$i&5fI|zVE zkO175kN{z15@A3D39^GhL4p9bqnd#1Fp$R(U^$Qp_hx`MD;r3P83?xk JX+}m64*)SHX)pi) literal 0 HcmV?d00001 diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-39-changes/camel-aws-iam-3.9.0.jar b/rules/rules-reviewed/camel3/camel2/tests/data/xml-39-changes/camel-aws-iam-3.9.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..6e6131ee2e908310e1034aabe650e9a4a90552b6 GIT binary patch literal 459 zcmWIWW@h1HVBlb2IM=f+i~$L7GO#fCx`sIFdiuHP|2xIN5CBvv!ob17fuU3cs12^v z*U`_@%{4eg&)4m<@0rs+-nx1hdA)VD&Yd~GImqCO@q?#DdS1Rdp1v1LS8WM0FuGuT z!8qi?hZE<0eYL!FuRnSE=qVG>E_RL`mb1mJfF@f2F>bp#fwC#3xw(~kB^4#7^}Vip z>v;H_^SJ8mcgFYZMyAQTI-efhHM4VP*s-cbqnd#1Fp$R(U^$Qp_hx`MD;r3P83?xk JX+}m64*=jYXyO0> literal 0 HcmV?d00001 diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-39-changes/camel-aws-kinesis-3.9.0.jar b/rules/rules-reviewed/camel3/camel2/tests/data/xml-39-changes/camel-aws-kinesis-3.9.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..3d759790a3cb37610db78ea411ac816c7967fcdc GIT binary patch literal 463 zcmWIWW@h1HVBlb2INP%=i~$L7GO#fCx`sIFdiuHP|2xIN5CBvv!ob17!Eg>usR&RT zT&b_4pQoE^aEP9-+h^Z1r+vJ2^)B*y>uQ}lbAEG>!4=~NPmA=te04m1FP5&_5@cX> z!T5r4$b}Cl&indmdFft%^7PSDCZJvH96Ky$i(3Irwg6&;-I&f~U`Q#=&8^fcsVF(E z?{(c<$HV8G$5n5?GrngxGELsq`Sj?nn=>m{9-VnK>{!*bDz+G~=`){9)KLeTtO+)q zk%@}|cQ62zAOW~fA%VikB*K6Q7Gy_*f&~GzflRnoq(BPrMwkHd9J0eW5!!*QE_RL`mb1mJfF@f2F>bp#fwC#3xw(~kB^4#7^}Vip z>v;H_^SJ8mcgFYZMyAQTI-efhb#rFr%A+%n?#i6$x>EAz(UoDxs-{)3#el6jW6<;2 z0BDF2*cwJAE(YA;0aStn;9iD=4kMEY10sBoT@MN$1keUD;aZVGE5IAo1Z0PSe2DE_RL`mb1mJfF@f2F>bp#fwC#3xw(~kB^4#7^}Vip z>v;H_^SJ8mcgFYZMyAQTI-efhb#v#@uwzxzs@P({CZDkg=1>OeQw5vM$i&5fI|zVE zkO175kN{z15@A3D39^GhL4p9bqnd#1Fp$R(U^$Qp_hx`MD;r3P83?xk JX+}m64*)-8XJP;V literal 0 HcmV?d00001 diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-39-changes/camel-aws-mq-3.9.0.jar b/rules/rules-reviewed/camel3/camel2/tests/data/xml-39-changes/camel-aws-mq-3.9.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..08f062f3649bcddb2c6a1e78f53f0987873852cd GIT binary patch literal 458 zcmWIWW@h1HVBlb2INP%=i~$L7GO#fCx`sIFdiuHP|2xIN5CBvv!ob17fuU3cs12^v z*U`_@%{4eg&)4m<@0rs+-nx1hdA)VD&Yd~GImqCO@q?#DdS1Rdp1v1LS8WM0FuGuT z!8qi?hZE<0eYL!FuRnSE=qVG>E_RL`mb1mJfF@f2F>bp#fwC#3xw(~kB^4#7^}Vip z>v;H_^SJ8mcgFYZMyAQTI-efhwX-$sSk<&DwivL%35U`TDgm{rfDLA3;$pxZ0zf55 z0PaahcrY@FFd#w%*}b3;K>%$a6Rs60d;+{tO+a=S$X^Js9LR+GGQgXa4J5@3gj+xi HMi2o2_JU{{ literal 0 HcmV?d00001 diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-39-changes/camel-aws-msk-3.9.0.jar b/rules/rules-reviewed/camel3/camel2/tests/data/xml-39-changes/camel-aws-msk-3.9.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..4d8cd56bc16a8cf878778f83b7b8267458bad703 GIT binary patch literal 459 zcmWIWW@h1HVBlb2INP%=i~$L7GO#fCx`sIFdiuHP|2xIN5CBvv!ob17fuU3cs12^v z*U`_@%{4eg&)4m<@0rs+-nx1hdA)VD&Yd~GImqCO@q?#DdS1Rdp1v1LS8WM0FuGuT z!8qi?hZE<0eYL!FuRnSE=qVG>E_RL`mb1mJfF@f2F>bp#fwC#3xw(~kB^4#7^}Vip z>v;H_^SJ8mcgFYZMyAQTI-efhwe#rBuwzxzs@P({CV%@acupCpPZex3BNG<`?jQgv zK>~1JLIQ-5NrV9rB*+d11qlLZ1DSBGNC6b!jcNk2!$2NGfaO3Y+?xU3tZX1DW+2=G Jq!}4OJOIXkYD544 literal 0 HcmV?d00001 diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-39-changes/camel-aws-s3-3.9.0.jar b/rules/rules-reviewed/camel3/camel2/tests/data/xml-39-changes/camel-aws-s3-3.9.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..98c1415657f361a5d0435c256594e0551b2ae9da GIT binary patch literal 458 zcmWIWW@h1HVBlb2IM=f+i~$L7GO#fCx`sIFdiuHP|2xIN5CBvv!ob17fuU3cs12^v z*U`_@%{4eg&)4m<@0rs+-nx1hdA)VD&Yd~GImqCO@q?#DdS1Rdp1v1LS8WM0FuGuT z!8qi?hZE<0eYL!FuRnSE=qVG>E_RL`mb1mJfF@f2F>bp#fwC#3xw(~kB^4#7^}Vip z>v;H_^SJ8mcgFYZMyAQTI-efhb@W)+v8riRY%ySih3DNprv%id0ydbDiHiYu2mqBJ z0k|h2;laox!hi@7WcPwX1Oc>xOt@C0@CoonH38XSAb%miav&4#%K&dyHjorE5N-i6 H7(oO8QcP%( literal 0 HcmV?d00001 diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-39-changes/camel-aws-sdb-3.9.0.jar b/rules/rules-reviewed/camel3/camel2/tests/data/xml-39-changes/camel-aws-sdb-3.9.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..72d2b1872780d1262a0e7e83126bd48561de6465 GIT binary patch literal 459 zcmWIWW@h1HVBlb2INP%=i~$L7GO#fCx`sIFdiuHP|2xIN5CBvv!ob17fuU3cs12^v z*U`_@%{4eg&)4m<@0rs+-nx1hdA)VD&Yd~GImqCO@q?#DdS1Rdp1v1LS8WM0FuGuT z!8qi?hZE<0eYL!FuRnSE=qVG>E_RL`mb1mJfF@f2F>bp#fwC#3xw(~kB^4#7^}Vip z>v;H_^SJ8mcgFYZMyAQTI-efhbyU+c>{!*bDz+G~$#!)!6qJGbRKX@QGI25B4g#PO zBmnm%BtRIML>Lf3g6v>WkRX6IkO|j{6hHyqs3ssg4CFBcSPo>uy&2%m$_A2R2Er{s JnvoI20{~N;W^4ce literal 0 HcmV?d00001 diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-39-changes/camel-aws-sns-3.9.0.jar b/rules/rules-reviewed/camel3/camel2/tests/data/xml-39-changes/camel-aws-sns-3.9.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..ab08c8a3b9d557bf5c52b59671d5bcdce537b4d1 GIT binary patch literal 459 zcmWIWW@h1HVBlb2INP%=i~$L7GO#fCx`sIFdiuHP|2xIN5CBvv!ob17fuU3cs12^v z*U`_@%{4eg&)4m<@0rs+-nx1hdA)VD&Yd~GImqCO@q?#DdS1Rdp1v1LS8WM0FuGuT z!8qi?hZE<0eYL!FuRnSE=qVG>E_RL`mb1mJfF@f2F>bp#fwC#3xw(~kB^4#7^}Vip z>v;H_^SJ8mcgFYZMyAQTI-efhb+qzm*s-cbqnd#1Fp$R(U^$Qp_hx`MD;r3P83?xk JX+}m64*(nuXIuaP literal 0 HcmV?d00001 diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-39-changes/camel-aws-sqs-3.9.0.jar b/rules/rules-reviewed/camel3/camel2/tests/data/xml-39-changes/camel-aws-sqs-3.9.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..8a6355c0288bc8f873ee7e7991a962465c1fc2dc GIT binary patch literal 459 zcmWIWW@h1HVBlb2INP%=i~$L7GO#fCx`sIFdiuHP|2xIN5CBvv!ob17fuU3cs12^v z*U`_@%{4eg&)4m<@0rs+-nx1hdA)VD&Yd~GImqCO@q?#DdS1Rdp1v1LS8WM0FuGuT z!8qi?hZE<0eYL!FuRnSE=qVG>E_RL`mb1mJfF@f2F>bp#fwC#3xw(~kB^4#7^}Vip z>v;H_^SJ8mcgFYZMyAQTI-efhb+q+p*s-cbqnd#1Fp$R(U^$Qp_hx`MD;r3P83?xk JX+}m64*>o~X#M~I literal 0 HcmV?d00001 diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-39-changes/camel-aws-swf-3.9.0.jar b/rules/rules-reviewed/camel3/camel2/tests/data/xml-39-changes/camel-aws-swf-3.9.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..8508365eee94dfd97d9ad0ab226cd4a919332abd GIT binary patch literal 459 zcmWIWW@h1HVBlb2IM=f+i~$L7GO#fCx`sIFdiuHP|2xIN5CBvv!ob17fuU3cs12^v z*U`_@%{4eg&)4m<@0rs+-nx1hdA)VD&Yd~GImqCO@q?#DdS1Rdp1v1LS8WM0FuGuT z!8qi?hZE<0eYL!FuRnSE=qVG>E_RL`mb1mJfF@f2F>bp#fwC#3xw(~kB^4#7^}Vip z>v;H_^SJ8mcgFYZMyAQTI-efhb@XXw*s-cE_RL`mb1mJfF@f2F>bp#fwC#3xw(~kB^4#7^}Vip z>v;H_^SJ8mcgFYZMyAQTI-efhrRv&QdDOB~b!FJGs%cehF<|reSNxu<3Dm6(HlLA+ zivf2)0F@vCxL+Z`!pJ1TfCw05XM+L;0YDbPwIT&mfH$fM$PNQ}4*`|~nQ+erc(byB Oq?mzl3y@}K1n~f@hil3J literal 0 HcmV?d00001 diff --git a/rules/rules-reviewed/camel3/camel2/tests/data/xml-39-changes/camel-azure-3.9.0.jar b/rules/rules-reviewed/camel3/camel2/tests/data/xml-39-changes/camel-azure-3.9.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..8f19a4d944fc0921051fe56533cd9345109e8e2b GIT binary patch literal 457 zcmWIWW@h1HVBlb2INP%=i~$L7GO#fCx`sIFdiuHP|2xIN5CBvv!ob17fuU3cs12^v z*U`_@%{4eg&)4m<@0rs+-nx1hdA)VD&Yd~GImqCO@q?#DdS1Rdp1v1LS8WM0FuGuT z!8qi?hZE<0eYL!FuRnSE=qVG>E_RL`mb1mJfF@f2F>bp#fwC#3xw(~kB^4#7^}Vip z>v;H_^SJ8mcgFYZMyAQTIzyMbt_(X?HLZ#*25fE{&x$@ppe|*wxr|I)47dXTs00bX z{RjyTMkWykM1UYW7Ze}}pbccgwIT&ifH$fM$PNQ}3jvk`nQ%`Ac(byBq?mzl3y}T~ H;xGUJqMBw_ literal 0 HcmV?d00001 diff --git a/rules/rules-reviewed/camel3/camel2/tests/xml-33-changes.windup.test.xml b/rules/rules-reviewed/camel3/camel2/tests/xml-33-changes.windup.test.xml index f00a1e904..1a61961af 100644 --- a/rules/rules-reviewed/camel3/camel2/tests/xml-33-changes.windup.test.xml +++ b/rules/rules-reviewed/camel3/camel2/tests/xml-33-changes.windup.test.xml @@ -11,7 +11,7 @@ - + diff --git a/rules/rules-reviewed/camel3/camel2/xml-31-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-31-changes.windup.xml index e499b82ef..935cf0129 100644 --- a/rules/rules-reviewed/camel3/camel2/xml-31-changes.windup.xml +++ b/rules/rules-reviewed/camel3/camel2/xml-31-changes.windup.xml @@ -28,9 +28,12 @@ - - - + + + + + + @@ -42,9 +45,12 @@ - - - + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/xml-310-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-310-changes.windup.xml index 293b86a41..e50a0802c 100644 --- a/rules/rules-reviewed/camel3/camel2/xml-310-changes.windup.xml +++ b/rules/rules-reviewed/camel3/camel2/xml-310-changes.windup.xml @@ -14,9 +14,12 @@ - - - + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/xml-311-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-311-changes.windup.xml index b88d5e4c0..94010c013 100644 --- a/rules/rules-reviewed/camel3/camel2/xml-311-changes.windup.xml +++ b/rules/rules-reviewed/camel3/camel2/xml-311-changes.windup.xml @@ -14,9 +14,12 @@ - - - + + + + + + @@ -27,9 +30,12 @@ - - - + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/xml-312-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-312-changes.windup.xml index c7a079434..56f534d8c 100644 --- a/rules/rules-reviewed/camel3/camel2/xml-312-changes.windup.xml +++ b/rules/rules-reviewed/camel3/camel2/xml-312-changes.windup.xml @@ -14,9 +14,12 @@ - - - + + + + + + @@ -27,9 +30,12 @@ - - - + + + + + + @@ -40,9 +46,12 @@ - - - + + + + + + @@ -53,9 +62,12 @@ - - - + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/xml-313-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-313-changes.windup.xml index 35f826029..9a9f39692 100644 --- a/rules/rules-reviewed/camel3/camel2/xml-313-changes.windup.xml +++ b/rules/rules-reviewed/camel3/camel2/xml-313-changes.windup.xml @@ -14,9 +14,12 @@ - - - + + + + + + @@ -28,9 +31,12 @@ - - - + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/xml-315-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-315-changes.windup.xml index 774dacf26..7e9de907d 100644 --- a/rules/rules-reviewed/camel3/camel2/xml-315-changes.windup.xml +++ b/rules/rules-reviewed/camel3/camel2/xml-315-changes.windup.xml @@ -14,9 +14,12 @@ - - - + + + + + + @@ -28,9 +31,12 @@ - - - + + + + + + @@ -42,9 +48,12 @@ - - - + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/xml-316-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-316-changes.windup.xml index 0f127a4d6..5efaddbab 100644 --- a/rules/rules-reviewed/camel3/camel2/xml-316-changes.windup.xml +++ b/rules/rules-reviewed/camel3/camel2/xml-316-changes.windup.xml @@ -14,9 +14,12 @@ - - - + + + + + + @@ -28,9 +31,12 @@ - - - + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/xml-317-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-317-changes.windup.xml index 3e689b414..737ad4419 100644 --- a/rules/rules-reviewed/camel3/camel2/xml-317-changes.windup.xml +++ b/rules/rules-reviewed/camel3/camel2/xml-317-changes.windup.xml @@ -14,9 +14,12 @@ - - - + + + + + + @@ -27,9 +30,12 @@ - - - + + + + + + @@ -40,9 +46,12 @@ - - - + + + + + + @@ -53,9 +62,12 @@ - - - + + + + + + @@ -67,9 +79,12 @@ - - - + + + + + + @@ -80,9 +95,12 @@ - - - + + + + + + @@ -93,9 +111,12 @@ - - - + + + + + + @@ -106,9 +127,12 @@ - - - + + + + + + @@ -119,9 +143,12 @@ - - - + + + + + + @@ -132,9 +159,12 @@ - - - + + + + + + @@ -145,9 +175,12 @@ - - - + + + + + + @@ -158,9 +191,12 @@ - - - + + + + + + @@ -171,9 +207,12 @@ - - - + + + + + + @@ -184,9 +223,12 @@ - - - + + + + + + @@ -197,9 +239,12 @@ - - - + + + + + + @@ -211,9 +256,12 @@ - - - + + + + + + @@ -224,9 +272,12 @@ - - - + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/xml-318-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-318-changes.windup.xml index b9fba41ae..1913ec744 100644 --- a/rules/rules-reviewed/camel3/camel2/xml-318-changes.windup.xml +++ b/rules/rules-reviewed/camel3/camel2/xml-318-changes.windup.xml @@ -14,9 +14,12 @@ - - - + + + + + + @@ -27,9 +30,12 @@ - - - + + + + + + @@ -40,9 +46,12 @@ - - - + + + + + + @@ -53,9 +62,12 @@ - - - + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/xml-319-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-319-changes.windup.xml index ed085d3a0..5d77491ac 100644 --- a/rules/rules-reviewed/camel3/camel2/xml-319-changes.windup.xml +++ b/rules/rules-reviewed/camel3/camel2/xml-319-changes.windup.xml @@ -15,9 +15,12 @@ - - - + + + + + + @@ -28,9 +31,12 @@ - - - + + + + + + @@ -41,9 +47,12 @@ - - - + + + + + + @@ -54,9 +63,12 @@ - - - + + + + + + @@ -69,9 +81,12 @@ - - - + + + + + + @@ -82,9 +97,12 @@ - - - + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/xml-32-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-32-changes.windup.xml index ab6c035c8..4a0e03da0 100644 --- a/rules/rules-reviewed/camel3/camel2/xml-32-changes.windup.xml +++ b/rules/rules-reviewed/camel3/camel2/xml-32-changes.windup.xml @@ -28,9 +28,12 @@ - - - + + + + + + @@ -41,9 +44,12 @@ - - - + + + + + + @@ -54,9 +60,12 @@ - - - + + + + + + @@ -67,9 +76,12 @@ - - - + + + + + + @@ -80,9 +92,12 @@ - - - + + + + + + @@ -93,9 +108,12 @@ - - - + + + + + + @@ -106,9 +124,12 @@ - - - + + + + + + @@ -120,9 +141,12 @@ - - - + + + + + + @@ -172,9 +196,12 @@ - - - + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/xml-320-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-320-changes.windup.xml index 11e982332..60dd250fe 100644 --- a/rules/rules-reviewed/camel3/camel2/xml-320-changes.windup.xml +++ b/rules/rules-reviewed/camel3/camel2/xml-320-changes.windup.xml @@ -14,9 +14,12 @@ - - - + + + + + + @@ -40,9 +43,12 @@ - - - + + + + + + @@ -53,9 +59,12 @@ - - - + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/xml-321-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-321-changes.windup.xml index fc199aa0a..b1312908f 100644 --- a/rules/rules-reviewed/camel3/camel2/xml-321-changes.windup.xml +++ b/rules/rules-reviewed/camel3/camel2/xml-321-changes.windup.xml @@ -28,9 +28,12 @@ - - - + + + + + + @@ -41,9 +44,12 @@ - - - + + + + + + @@ -54,9 +60,12 @@ - - - + + + + + + @@ -67,9 +76,12 @@ - - - + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/xml-33-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-33-changes.windup.xml index 85db1a545..d7b4346a7 100644 --- a/rules/rules-reviewed/camel3/camel2/xml-33-changes.windup.xml +++ b/rules/rules-reviewed/camel3/camel2/xml-33-changes.windup.xml @@ -20,7 +20,7 @@ - + The dump model classes in package org.apache.camel.support.dump have been removed as they were not in use by Camel. diff --git a/rules/rules-reviewed/camel3/camel2/xml-34-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-34-changes.windup.xml index 084d4b538..965f6ca47 100644 --- a/rules/rules-reviewed/camel3/camel2/xml-34-changes.windup.xml +++ b/rules/rules-reviewed/camel3/camel2/xml-34-changes.windup.xml @@ -14,9 +14,12 @@ - - - + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/xml-35-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-35-changes.windup.xml index ed2f221a3..58368caff 100644 --- a/rules/rules-reviewed/camel3/camel2/xml-35-changes.windup.xml +++ b/rules/rules-reviewed/camel3/camel2/xml-35-changes.windup.xml @@ -14,9 +14,12 @@ - - - + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/xml-36-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-36-changes.windup.xml index 4461263a6..174083530 100644 --- a/rules/rules-reviewed/camel3/camel2/xml-36-changes.windup.xml +++ b/rules/rules-reviewed/camel3/camel2/xml-36-changes.windup.xml @@ -34,9 +34,12 @@ - - - + + + + + + diff --git a/rules/rules-reviewed/camel3/camel2/xml-39-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-39-changes.windup.xml index a7673b9e3..844b5fd86 100644 --- a/rules/rules-reviewed/camel3/camel2/xml-39-changes.windup.xml +++ b/rules/rules-reviewed/camel3/camel2/xml-39-changes.windup.xml @@ -14,9 +14,12 @@ - - - + + + + + + @@ -27,9 +30,12 @@ - - - + + + + + + @@ -40,9 +46,12 @@ - - - + + + + + + @@ -53,9 +62,12 @@ - - - + + + + + + @@ -66,9 +78,12 @@ - - - + + + + + + @@ -79,9 +94,12 @@ - - - + + + + + + @@ -92,9 +110,12 @@ - - - + + + + + + @@ -105,9 +126,12 @@ - - - + + + + + + @@ -118,9 +142,12 @@ - - - + + + + + + @@ -131,9 +158,12 @@ - - - + + + + + + @@ -144,9 +174,12 @@ - - - + + + + + + @@ -157,9 +190,12 @@ - - - + + + + + + @@ -170,9 +206,12 @@ - - - + + + + + + @@ -183,9 +222,12 @@ - - - + + + + + + @@ -196,9 +238,12 @@ - - - + + + + + + @@ -209,9 +254,12 @@ - - - + + + + + + @@ -222,9 +270,12 @@ - - - + + + + + + @@ -235,9 +286,12 @@ - - - + + + + + + diff --git a/rules/rules-reviewed/camel4/camel3/tests/.windup/cache/nexus-indexer-data/test.archive-metadata.txt b/rules/rules-reviewed/camel4/camel3/tests/.windup/cache/nexus-indexer-data/test.archive-metadata.txt new file mode 100644 index 000000000..6a66eee53 --- /dev/null +++ b/rules/rules-reviewed/camel4/camel3/tests/.windup/cache/nexus-indexer-data/test.archive-metadata.txt @@ -0,0 +1,35 @@ +74226e88b9cda30cf98740739f63fca6 org.apache.camel:camel-activemq:4.0.0 +183f071d4707ef5ac414df5950e829df org.apache.camel:camel-any23:4.0.0 +18da70705cf7680e7f6159a007c2e723 org.apache.camel:camel-atmos:4.0.0 +64bafe42ecd4e0c28c0d4a4420c05e79 org.apache.camel:camel-caffeine-lrucache:4.0.0 +2d72ec5fcedf2e1a4a582bd21faef82b org.apache.camel:camel-cdi:4.0.0 +ec29ca930e45e14a472fb810b14188f2 org.apache.camel:camel-directvm:4.0.0 +03ab5620633775118341481f9a61b0e0 org.apache.camel:camel-dozer:4.0.0 +1cdc9b821312c7b481402e2e14e31467 org.apache.camel:camel-elasticsearch-rest:4.0.0 +55dfd5c36db85eeffb4cd4d431d574dd org.apache.camel:camel-gora:4.0.0 +9a60bef4c9738f783d07e0aa9c87ff0f org.apache.camel:camel-hbase:4.0.0 +b025962a1a6e16a737e2b93896e9330e org.apache.camel:camel-iota:4.0.0 +cde39ebb6d5a5834944f0e209f69d07f org.apache.camel:camel-ipfs:4.0.0 +cf0842390f2eeb26e9ffba4fea64b9b5 org.apache.camel:camel-jbpm:4.0.0 +703fcd44b92cae4c93d33cc917b81096 org.apache.camel:camel-jclouds:4.0.0 +13af97a54e5578162f68fd4e65c4a469 org.apache.camel:camel-johnzon:4.0.0 +ce5d39e77b29c4e716f57dda3ceb3c95 org.apache.camel:camel-microprofile-metrics:4.0.0 +da0e7971f59cc9d98ba12e37fdcba5c2 org.apache.camel:camel-milo:4.0.0 +d0ed0bcc1c90c7a17b973ae8e17265b2 org.apache.camel:camel-opentracing:4.0.0 +4be2d776f67ea1a4088546cc025a09d6 org.apache.camel:camel-optaplanner:4.0.0 +237b5f5ad56e66839dff257c2a956b74 org.apache.camel:camel-rabbitmq:4.0.0 +8e28a17974e6d5ba780c7775639d12b4 org.apache.camel:camel-rest-swagger:4.0.0 +c96560b12bd2459a23a039a8ed849880 org.apache.camel:camel-restdsl-swagger-plugin:4.0.0 +bc1f08795bd2ade9129235fbbe2bbfd5 org.apache.camel:camel-resteasy:4.0.0 +788200c5816c53f95596bbc0456f810f org.apache.camel:camel-spark:4.0.0 +24d20049087131fbb82d07eb70bf91c6 org.apache.camel:camel-spring-integration:4.0.0 +6a5a1f13a0319b97272636e4e330a7d8 org.apache.camel:camel-swift:4.0.0 +b9ff1a1e0c7bcf3585d23d88bb70e491 org.apache.camel:camel-swagger-java:4.0.0 +7cdfb8975aa6b47d0670f0ea850298c6 org.apache.camel:camel-websocket:4.0.0 +31036b3c420621c356a892ccf3afc68e org.apache.camel:camel-websocket-jsr356:4.0.0 +3aa948df94c2e889c495b5caf7be2e85 org.apache.camel:camel-vertx-kafka:4.0.0 +ec1b2881323e6b62fd48c9dfcea959f3 org.apache.camel:camel-vm:4.0.0 +96711282007112971450aee7bb651757 org.apache.camel:camel-xstream:4.0.0 +f45cae2785a01d3a60da325da3abfaf8 org.apache.camel:camel-zipkin:4.0.0 +50c0563fc78eb042990073121deeb8a6 org.apache.camel.springboot:camel-platform-http-starter:4.0.0 +68447923b50fc78541027d796bb8f9c8 org.apache.camel.springboot:camel-micrometer-starter:4.0.0 diff --git a/rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/camel-activemq-4.0.0.jar b/rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/camel-activemq-4.0.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..e4b7f265b75607b493d8369905afb8beff006745 GIT binary patch literal 476 zcmWIWW@Zs#;Nak3@LIPmi~$L7GO#fCx`sIFdiuHP|2xINz|0Wf&CUT*!30$nfK#&w zPz7AGucM!*n`>~0p0C?y-!rFuymj?1@_OrPojY@WbCAIm;|EWR^t^m^Jbf>gu43V0 zaQ(ugD{5l%sW^CYSI}wG%AFNE!8V)KO0BT~nrjKfxNYVH%BGa&=2q&JRFs_7_qy(_ z+_1FtsYSDz+G~(T|PWC#nE7s)3DWWD;RO4HKA$ zL1BUl;GP79P=Gh8R%920LIeS9flRnor0_vE0oh?7pCQ0@AQSG-0B=?{kQ6fzZUNFl Hj36EWSN&l` literal 0 HcmV?d00001 diff --git a/rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/camel-any23-4.0.0.jar b/rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/camel-any23-4.0.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..840f97d7f184e9255254f94c01ea5d36c4d5b9c9 GIT binary patch literal 473 zcmWIWW@Zs#;Nak3@LIPmi~$L7GO#fCx`sIFdiuHP|2xINz|0Wf&CUT*!30$nfK#&w zPz7AGucM!*n`>~0p0C?y-!rFuymj?1@_OrPojY@WbCAIm;|EWR^t^m^Jbf>gu43V0 zaQ(ugD{5l%sW^CYSI}wG%AFNE!8V)KO0BT~nrjKfxNYVH%BGa&=2q&JRFs_7_qy(_ zFPy+~0p0C?y-!rFuymj?1@_OrPojY@WbCAIm;|EWR^t^m^Jbf>gu43V0 zaQ(ugD{5l%sW^CYSI}wG%AFNE!8V)KO0BT~nrjKfxNYVH%BGa&=2q&JRFs_7_qy(_ zFPy+~0p0C?y-!rFuymj?1@_OrPojY@WbCAIm;|EWR^t^m^Jbf>gu43V0 zaQ(ugD{5l%sW^CYSI}wG%AFNE!8V)KO0BT~nrjKfxNYVH%BGa&=2q&JRFs_7_qy(_ ztenD literal 0 HcmV?d00001 diff --git a/rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/camel-cdi-4.0.0.jar b/rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/camel-cdi-4.0.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..df9dc73831fa701e7e5e6960e5f92ed840fa6683 GIT binary patch literal 471 zcmWIWW@Zs#;Nak3@LIPmi~$L7GO#fCx`sIFdiuHP|2xINz|0Wf&CUT*!30$nfK#&w zPz7AGucM!*n`>~0p0C?y-!rFuymj?1@_OrPojY@WbCAIm;|EWR^t^m^Jbf>gu43V0 zaQ(ugD{5l%sW^CYSI}wG%AFNE!8V)KO0BT~nrjKfxNYVH%BGa&=2q&JRFs_7_qy(_ zN$m1LjvyaG(OX z|3HBg;Ek#k*|DI&Kmc1H6Rs60XwXeSb{NQ02(TT~0p0C?y-!rFuymj?1@_OrPojY@WbCAIm;|EWR^t^m^Jbf>gu43V0 zaQ(ugD{5l%sW^CYSI}wG%AFNE!8V)KO0BT~nrjKfxNYVH%BGa&=2q&JRFs_7_qy(_ zl$F} literal 0 HcmV?d00001 diff --git a/rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/camel-dozer-4.0.0.jar b/rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/camel-dozer-4.0.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..191377583f5b11b5459fc50a7345c847460c2dcb GIT binary patch literal 473 zcmWIWW@Zs#;Nak3@LIPmi~$L7GO#fCx`sIFdiuHP|2xINz|0Wf&CUT*!30$nfK#&w zPz7AGucM!*n`>~0p0C?y-!rFuymj?1@_OrPojY@WbCAIm;|EWR^t^m^Jbf>gu43V0 zaQ(ugD{5l%sW^CYSI}wG%AFNE!8V)KO0BT~nrjKfxNYVH%BGa&=2q&JRFs_7_qy(_ z~0p0C?y-!rFuymj?1@_OrPojY@WbCAIm;|EWR^t^m^Jbf>gu43V0 zaQ(ugD{5l%sW^CYSI}wG%AFNE!8V)KO0BT~nrjKfxNYVH%BGa&=2q&JRFs_7_qy(_ z_*VD?43JO73!9c~mt_t%|LREe32!s@&a1J)jW= zU`rU8L>N#*2j+E9=%50)cR^tl;Ek#k+3ldPK>%AI6Rs60q|i-3b{NQy2(TTG literal 0 HcmV?d00001 diff --git a/rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/camel-gora-4.0.0.jar b/rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/camel-gora-4.0.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..ef8448987102e9a4beff1c9e2aac29d39b686bc1 GIT binary patch literal 472 zcmWIWW@Zs#;Nak3@LIPmi~$L7GO#fCx`sIFdiuHP|2xINz|0Wf&CUT*!30$nfK#&w zPz7AGucM!*n`>~0p0C?y-!rFuymj?1@_OrPojY@WbCAIm;|EWR^t^m^Jbf>gu43V0 zaQ(ugD{5l%sW^CYSI}wG%AFNE!8V)KO0BT~nrjKfxNYVH%BGa&=2q&JRFs_7_qy(_ z~0p0C?y-!rFuymj?1@_OrPojY@WbCAIm;|EWR^t^m^Jbf>gu43V0 zaQ(ugD{5l%sW^CYSI}wG%AFNE!8V)KO0BT~nrjKf2%EhyoXxz#CO7vU5SffdIBZCR{60;2@g-@)okgI1$=`tnEMy_hf)KD;r3b83?xk JX?{i!4*<)7T}l7| literal 0 HcmV?d00001 diff --git a/rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/camel-iota-4.0.0.jar b/rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/camel-iota-4.0.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..230579b2c117c2bdc8cd2ca9dae2d8e93d1c81d7 GIT binary patch literal 472 zcmWIWW@Zs#;Nak3@Lsnqi~$L7GO#fCx`sIFdiuHP|2xINz|0Wf&CUT*!30$nfK#&w zPz7AGucM!*n`>~0p0C?y-!rFuymj?1@_OrPojY@WbCAIm;|EWR^t^m^Jbf>gu43V0 zaQ(ugD{5l%sW^CYSI}wG%AFNE!8V)KO0BT~nrjKfxNYVH%BGa&=2q&JRFs_7_qy(_ z~0p0C?y-!rFuymj?1@_OrPojY@WbCAIm;|EWR^t^m^Jbf>gu43V0 zaQ(ugD{5l%sW^CYSI}wG%AFNE!8V)KO0BT~nrjKfxNYVH%BGa&=2q&JRFs_7_qy(_ za10|9J-Ot@C0ut7Hg*~0p0C?y-!rFuymj?1@_OrPojY@WbCAIm;|EWR^t^m^Jbf>gu43V0 zaQ(ugD{5l%sW^CYSI}wG%AFNE!8V)KO0BT~nrjKfxNYVH%BGa&=2q&JRFs_7_qy(_ zfC9tuKOd<@Z;Q{k3C_GRB z+=HOd3GhbMitJiYXdr+skO|j{6gKE4AUh1?D+JgMWWxOz;LXYgl41tJEkK%&5yS%k DiB(~0p0C?y-!rFuymj?1@_OrPojY@WbCAIm;|EWR^t^m^Jbf>gu43V0 zaQ(ugD{5l%sW^CYSI}wG%AFNE!8V)KO0BT~nrjKfxNYVH%BGa&=2q&JRFs_7_qy(_ z~0p0C?y-!rFuymj?1@_OrPojY@WbCAIm;|EWR^t^m^Jbf>gu43V0 zaQ(ugD{5l%sW^CYSI}wG%AFNE!8V)KO0BT~nrjKfxNYVH%BGa&=2q&JRFs_7_qy(_ zN$m1m<5* zke~v%A3*^W;Ek#k*}%AI6Rs60c+gEib{NQG2(TT literal 0 HcmV?d00001 diff --git a/rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/camel-micrometer-starter-4.0.0.jar b/rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/camel-micrometer-starter-4.0.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..e09a3fe1d4c55b58457813ff6ef6a3f6eb26d542 GIT binary patch literal 496 zcmWIWW@Zs#;Nak3@Ljhpi~$L7GO#fCx`sIFdiuHP|2xINz|0Wf&CUT*!30$nfK#&w zPz7AGucM!*n`>~0p0C?y-!rFuymj?1@_OrPojY@WbCAIm;|EWR^t^m^Jbf>gu43V0 zaQ(ugD{5l%sW^CYSI}wG%AFNE!8V)KO0BT~nrjKfxNYVH%BGa&=2q&JRFs_7_qy(_ zVko$>ZRbzXlX6ZeZ}X=>t6pD&xXMC_&5bQLkiOl@IXW?N=G zuyq_kmu7>kvj$to$Rxsm8cwi40EH7OfO{MiY60G;T9JJL3MB-v1v24Uk-`k!1Z0PS be2W0vflRpH1H4(;KvK*=xCKb7F@ksi#bRh1 literal 0 HcmV?d00001 diff --git a/rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/camel-microprofile-metrics-4.0.0.jar b/rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/camel-microprofile-metrics-4.0.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..16c25e7ce002567316f582d154055fef9f6805f3 GIT binary patch literal 488 zcmWIWW@Zs#;Nak3@Lsnqi~$L7GO#fCx`sIFdiuHP|2xINz|0Wf&CUT*!30$nfK#&w zPz7AGucM!*n`>~0p0C?y-!rFuymj?1@_OrPojY@WbCAIm;|EWR^t^m^Jbf>gu43V0 zaQ(ugD{5l%sW^CYSI}wG%AFNE!8V)KO0BT~nrjKfxNYVH%BGa&=2q&JRFs_7_qy(_ z~0p0C?y-!rFuymj?1@_OrPojY@WbCAIm;|EWR^t^m^Jbf>gu43V0 zaQ(ugD{5l%sW^CYSI}wG%AFNE!8V)KO0BT~nrjKfxNYVH%BGa&=2q&JRFs_7_qy(_ z~0p0C?y-!rFuymj?1@_OrPojY@WbCAIm;|EWR^t^m^Jbf>gu43V0 zaQ(ugD{5l%sW^CYSI}wG%AFNE!8V)KO0BT~nrjKfxNYVH%BGa&=2q&JRFs_7_qy(_ z~0p0C?y-!rFuymj?1@_OrPojY@WbCAIm;|EWR^t^m^Jbf>gu43V0 zaQ(ugD{5l%sW^CYSI}wG%AFNE!8V)KO0BT~nrjKfxNYVH%BGa&=2q&JRFs_7_qy(_ zOj4kVAC0yL>N$m z1?Fc^u%H6CKS6;M;Ek#k+0mdtK>%AI6Rs60h|oo0SbD#SDa7 KfV3zhhz9@zjA1YU literal 0 HcmV?d00001 diff --git a/rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/camel-platform-http-starter-4.0.0.jar b/rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/camel-platform-http-starter-4.0.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..1b267f30f89c38e7124c9eeb8d2866170080b2fb GIT binary patch literal 501 zcmWIWW@Zs#;Nak3@Ljhpi~$L7GO#fCx`sIFdiuHP|2xINz|0Wf&CUT*!30$nfK#&w zPz7AGucM!*n`>~0p0C?y-!rFuymj?1@_OrPojY@WbCAIm;|EWR^t^m^Jbf>gu43V0 zaQ(ugD{5l%sW^CYSI}wG%AFNE!8V)KO0BT~nrjKfxNYVH%BGa&=2q&JRFs_7_qy(_ zVko$>ZRbzXlX6ZZ?TCo0pHJQaWXDs9RXkr!gqRm7$)5sRGp zLh^-V0VCMX8w#z0wm=i@z;-e+i7=oB7Azz{frSd-z6S+efH$gEWUqjN3IRZt!L=d< i9J&d}4g+}^0k#8~@Bj$#W@Q6OF$3WiAg#>^;sF3ilx&p% literal 0 HcmV?d00001 diff --git a/rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/camel-rabbitmq-4.0.0.jar b/rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/camel-rabbitmq-4.0.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..0924c4cc59ec39ec915fc80178063e6be4e0905a GIT binary patch literal 476 zcmWIWW@Zs#;Nak3@Lsnqi~$L7GO#fCx`sIFdiuHP|2xINz|0Wf&CUT*!30$nfK#&w zPz7AGucM!*n`>~0p0C?y-!rFuymj?1@_OrPojY@WbCAIm;|EWR^t^m^Jbf>gu43V0 zaQ(ugD{5l%sW^CYSI}wG%AFNE!8V)KO0BT~nrjKfxNYVH%BGa&=2q&JRFs_7_qy(_ z)xbtGGKnyth6&8W zpfEuNa8H6lD8L(4E3%70A%Xz5Kqg!(Quv^ofb1}k&k$fckO}u^fHx}}NQxN~0p0C?y-!rFuymj?1@_OrPojY@WbCAIm;|EWR^t^m^Jbf>gu43V0 zaQ(ugD{5l%sW^CYSI}wG%AFNE!8V)KO0BT~nrjKf2%EhzoXxN%R1?Fi`xS#^KM?s+!;Ek#k+0~#>K>%AI6Rs60jF3$L`3~7(oCxhe)^;F<`!&Fu Rl?^1z41`;Nv=}3Z2LPMRV_g6M literal 0 HcmV?d00001 diff --git a/rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/camel-restdsl-swagger-plugin-4.0.0.jar b/rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/camel-restdsl-swagger-plugin-4.0.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..a202fe19d9d6d10fb7fcd0c220a5263d21cae8dd GIT binary patch literal 490 zcmWIWW@Zs#;Nak3@L9Jli~$L7GO#fCx`sIFdiuHP|2xINz|0Wf&CUT*!30$nfK#&w zPz7AGucM!*n`>~0p0C?y-!rFuymj?1@_OrPojY@WbCAIm;|EWR^t^m^Jbf>gu43V0 zaQ(ugD{5l%sW^CYSI}wG%AFNE!8V)KO0BT~nrjKfxNYVH%BGa&=2q&JRFs_7_qy(_ z~0p0C?y-!rFuymj?1@_OrPojY@WbCAIm;|EWR^t^m^Jbf>gu43V0 zaQ(ugD{5l%sW^CYSI}wG%AFNE!8V)KO0BT~nrjKfxNYVH%BGa&=2q&JRFs_7_qy(_ zW#`eUVQN)uRctX}qt8EYi&6n~0p0C?y-!rFuymj?1@_OrPojY@WbCAIm;|EWR^t^m^Jbf>gu43V0 zaQ(ugD{5l%sW^CYSI}wG%AFNE!8V)KO0BT~nrjKfxNYVH%BGa&=2q&JRFs_7_qy(_ zhx|G4@GBSxUpauxcx1az) z1#lmNf+xTmRV%V{LBW9lwm>FaD^lQ~n}F;vkhc(EJCF(YWPmp-8%T;72)6)fent=v E0O|r^FaQ7m literal 0 HcmV?d00001 diff --git a/rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/camel-spring-integration-4.0.0.jar b/rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/camel-spring-integration-4.0.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..13addf6a26c57b2a35466020d014f62fb59404b6 GIT binary patch literal 486 zcmWIWW@Zs#;Nak3@L9Jli~$L7GO#fCx`sIFdiuHP|2xINz|0Wf&CUT*!30$nfK#&w zPz7AGucM!*n`>~0p0C?y-!rFuymj?1@_OrPojY@WbCAIm;|EWR^t^m^Jbf>gu43V0 zaQ(ugD{5l%sW^CYSI}wG%AFNE!8V)KO0BT~nrjKfxNYVH%BGa&=2q&JRFs_7_qy(_ zfAu76Z1V=t#MT9?%E_ zuqBL4A`GaZ1M@m4bWj1@yP&WN@J7{&>~>JtAb>593D=4gQs^ciI}GGU1lSH_!hIaz S&B_LnVg|x3Kw5?o!~+0h5@tUD literal 0 HcmV?d00001 diff --git a/rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/camel-swagger-java-4.0.0.jar b/rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/camel-swagger-java-4.0.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..8b0b2209d690a83b3315cb42ef1c9aceb4e2ca45 GIT binary patch literal 480 zcmWIWW@Zs#;Nak3@L9Jli~$L7GO#fCx`sIFdiuHP|2xINz|0Wf&CUT*!30$nfK#&w zPz7AGucM!*n`>~0p0C?y-!rFuymj?1@_OrPojY@WbCAIm;|EWR^t^m^Jbf>gu43V0 zaQ(ugD{5l%sW^CYSI}wG%AFNE!8V)KO0BT~nrjKfxNYVH%BGa&=2q&JRFs_7_qy(_ zr literal 0 HcmV?d00001 diff --git a/rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/camel-swift-4.0.0.jar b/rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/camel-swift-4.0.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..1c2f1c97a919d5c2b44ab7a35416bc85d4718390 GIT binary patch literal 473 zcmWIWW@Zs#;Nak3@L9Jli~$L7GO#fCx`sIFdiuHP|2xINz|0Wf&CUT*!30$nfK#&w zPz7AGucM!*n`>~0p0C?y-!rFuymj?1@_OrPojY@WbCAIm;|EWR^t^m^Jbf>gu43V0 zaQ(ugD{5l%sW^CYSI}wG%AFNE!8V)KO0BT~nrjKfxNYVH%BGa&=2q&JRFs_7_qy(_ zFaD^lQ~n}F;vkhc(EJCF(YWPmp-8%T;72)6)fent=v E02V!8UH||9 literal 0 HcmV?d00001 diff --git a/rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/camel-vertx-kafka-4.0.0.jar b/rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/camel-vertx-kafka-4.0.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..b96f1cee512a424fea78018488aadc5c5c24acaf GIT binary patch literal 479 zcmWIWW@Zs#;Nak3@L9Jli~$L7GO#fCx`sIFdiuHP|2xINz|0Wf&CUT*!30$nfK#&w zPz7AGucM!*n`>~0p0C?y-!rFuymj?1@_OrPojY@WbCAIm;|EWR^t^m^Jbf>gu43V0 zaQ(ugD{5l%sW^CYSI}wG%AFNE!8V)KO0BT~nrjKfxNYVH%BGa&=2q&JRFs_7_qy(_ z@bk$5MVoy3HNG%H!B-RiWvyE K0BKQ15Dx&@Jz@6% literal 0 HcmV?d00001 diff --git a/rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/camel-vm-4.0.0.jar b/rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/camel-vm-4.0.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..7a3e0f2627f76bf0794146e9b50e52525bffa73f GIT binary patch literal 470 zcmWIWW@Zs#;Nak3@L9Jli~$L7GO#fCx`sIFdiuHP|2xINz|0Wf&CUT*!30$nfK#&w zPz7AGucM!*n`>~0p0C?y-!rFuymj?1@_OrPojY@WbCAIm;|EWR^t^m^Jbf>gu43V0 zaQ(ugD{5l%sW^CYSI}wG%AFNE!8V)KO0BT~nrjKfxNYVH%BGa&=2q&JRFs_7_qy(_ zc?a`pcVzNp^Qu-45*<2^C~DbPyyU~ zps)$>M%9Y!R!~?VfGv;-*NPM}=q4aL4CE&S*bZdEeHh@)$_A2R2Er{snuig@0{}E) BUQ7T0 literal 0 HcmV?d00001 diff --git a/rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/camel-websocket-4.0.0.jar b/rules/rules-reviewed/camel4/camel3/tests/data/xml-40-changes/camel-websocket-4.0.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..a958afbb0b2f37e7f738664a5abff5f7a13f08e8 GIT binary patch literal 477 zcmWIWW@Zs#;Nak3@L9Jli~$L7GO#fCx`sIFdiuHP|2xINz|0Wf&CUT*!30$nfK#&w zPz7AGucM!*n`>~0p0C?y-!rFuymj?1@_OrPojY@WbCAIm;|EWR^t^m^Jbf>gu43V0 zaQ(ugD{5l%sW^CYSI}wG%AFNE!8V)KO0BT~nrjKfxNYVH%BGa&=2q&JRFs_7_qy(_ z~0p0C?y-!rFuymj?1@_OrPojY@WbCAIm;|EWR^t^m^Jbf>gu43V0 zaQ(ugD{5l%sW^CYSI}wG%AFNE!8V)KO0BT~nrjKfxNYVH%BGa&=2q&JRFs_7_qy(_ zUwNhT9{fDTNPUj*b0{)?nXL51N6XF zFfxfSpoR_1FaD^fV2n}F;vkPi`HJCF(YZ-6%| Q8%T;72)6)fDMk~0p0C?y-!rFuymj?1@_OrPojY@WbCAIm;|EWR^t^m^Jbf>gu43V0 zaQ(ugD{5l%sW^CYSI}wG%AFNE!8V)KO0BT~nrjKf2%CK{oXx~0p0C?y-!rFuymj?1@_OrPojY@WbCAIm;|EWR^t^m^Jbf>gu43V0 zaQ(ugD{5l%sW^CYSI}wG%AFNE!8V)KO0BT~nrjKfxNYVH%BGa&=2q&JRFs_7_qy(_ z - - - + + + + + + @@ -29,9 +32,12 @@ - - - + + + + + + @@ -43,9 +49,12 @@ - - - + + + + + + @@ -57,9 +66,12 @@ - - - + + + + + + @@ -71,9 +83,12 @@ - - - + + + + + + @@ -85,9 +100,12 @@ - - - + + + + + + @@ -99,9 +117,12 @@ - - - + + + + + + @@ -113,9 +134,12 @@ - - - + + + + + + @@ -127,9 +151,12 @@ - - - + + + + + + @@ -141,9 +168,12 @@ - - - + + + + + + @@ -155,9 +185,12 @@ - - - + + + + + + @@ -169,9 +202,12 @@ - - - + + + + + + @@ -183,9 +219,12 @@ - - - + + + + + + @@ -197,9 +236,12 @@ - - - + + + + + + @@ -211,9 +253,12 @@ - - - + + + + + + @@ -225,9 +270,12 @@ - - - + + + + + + @@ -239,9 +287,12 @@ - - - + + + + + + @@ -253,9 +304,12 @@ - - - + + + + + + @@ -267,9 +321,12 @@ - - - + + + + + + @@ -281,9 +338,12 @@ - - - + + + + + + @@ -295,9 +355,12 @@ - - - + + + + + + @@ -309,9 +372,12 @@ - - - + + + + + + @@ -323,9 +389,12 @@ - - - + + + + + + @@ -337,9 +406,12 @@ - - - + + + + + + @@ -351,9 +423,12 @@ - - - + + + + + + @@ -365,9 +440,12 @@ - - - + + + + + + @@ -379,9 +457,12 @@ - - - + + + + + + @@ -393,9 +474,12 @@ - - - + + + + + + @@ -408,9 +492,12 @@ camel-vertx-websocket as an alternative component. - - - + + + + + + @@ -423,9 +510,12 @@ camel-vertx-websocket as an alternative component. - - - + + + + + + @@ -438,9 +528,12 @@ camel-kafka as an alternative component. - - - + + + + + + @@ -453,9 +546,12 @@ camel-seda as an alternative component. - - - + + + + + + @@ -468,9 +564,12 @@ camel-jacksonxml as an alternative component. - - - + + + + + + @@ -483,9 +582,12 @@ camel-micrometer, camel-opentelemetry as an alternative component. - - - + + + + + + @@ -497,9 +599,12 @@ camel-micrometer, camel-opentelemetry as an alternative component. - - - + + + + + + From 1f1078dd17dec00c8cfc4f5385eb75353503c478 Mon Sep 17 00:00:00 2001 From: Tom Cunningham Date: Wed, 31 May 2023 08:40:01 -0400 Subject: [PATCH 7/7] Change JDK 8 category-id to potential; change story points for gzip-deflater change --- rules/rules-reviewed/camel3/camel2/xml-315-changes.windup.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rules/rules-reviewed/camel3/camel2/xml-315-changes.windup.xml b/rules/rules-reviewed/camel3/camel2/xml-315-changes.windup.xml index 7e9de907d..60749fcd5 100644 --- a/rules/rules-reviewed/camel3/camel2/xml-315-changes.windup.xml +++ b/rules/rules-reviewed/camel3/camel2/xml-315-changes.windup.xml @@ -22,7 +22,7 @@ - + JDK 8 no longer supported - In Camel 3.15, JDK 11 or 17 is required. @@ -92,7 +92,7 @@ - + `camel.dataformat.gzipdeflater` configuration key has been renamed to camel.dataformat.gzip-deflater.