Apache Camel: Camel-SQL: Unsafe Deserialization from JDBCAggregationRepository
Description
Deserialization of Untrusted Data vulnerability in Apache Camel SQL ComponentThis issue affects Apache Camel: from 3.0.0 before 3.21.4, from 3.22.0 before 3.22.1, from 4.0.0 before 4.0.4, from 4.1.0 before 4.4.0.
Users are recommended to upgrade to version 4.4.0, which fixes the issue. If users are on the 4.0.x LTS releases stream, then they are suggested to upgrade to 4.0.4. If users are on 3.x, they are suggested to move to 3.21.4 or 3.22.1
AI Insight
LLM-synthesized narrative grounded in this CVE's description and references.
Apache Camel SQL Component deserializes untrusted data from database, allowing remote code execution via crafted payloads.
CVE-2024-22369 is a deserialization of untrusted data vulnerability in the Apache Camel SQL component's JdbcAggregationRepository. The component fails to validate serialized data before deserialization when storing and retrieving aggregation states in a database, allowing an attacker to inject malicious objects [3].
The attack requires write access to the database table used for aggregation. As demonstrated in a public proof-of-concept, an attacker can insert a serialized payload (e.g., using ysoserial with CommonsCollections7) that executes arbitrary commands upon deserialization [1]. The exploit leverages a MySQL database and the Camel SQL component's default behavior.
Successful exploitation results in remote code execution in the context of the Camel application, potentially leading to full system compromise [1][3]. The vulnerability affects Apache Camel versions 3.0.0-3.21.3, 3.22.0-3.22.0, 4.0.0-4.0.3, and 4.1.0-4.3.0.
The fix, implemented in pull request #12718, adds an ObjectInputFilter pattern parameter to JdbcAggregationRepository to restrict deserialization to trusted classes [2][4]. Users should upgrade to patched versions: 3.21.4, 3.22.1, 4.0.4, or 4.4.0 [3].
- GitHub - oscerd/CVE-2024-22369: CVE-2024-22369 Reproducer
- [CAMEL-20303] Camel-Sql: Add ObjectInputFilter String pattern parameter in JdbcAggregationRepository to be used in unmarshall operations
- NVD - CVE-2024-22369
- CAMEL-20303 - Camel-Sql: Add ObjectInputFilter String pattern paramet… by oscerd · Pull Request #12718 · apache/camel
AI Insight generated on May 20, 2026. Synthesized from this CVE's description and the cited reference URLs; citations are validated against the source bundle.
Affected packages
Versions sourced from the GitHub Security Advisory.
| Package | Affected versions | Patched versions |
|---|---|---|
org.apache.camel:camel-sqlMaven | >= 3.0.0, < 3.21.4 | 3.21.4 |
org.apache.camel:camel-sqlMaven | >= 3.22.0, < 3.22.1 | 3.22.1 |
org.apache.camel:camel-sqlMaven | >= 4.0.0, < 4.0.4 | 4.0.4 |
org.apache.camel:camel-sqlMaven | >= 4.1.0, < 4.4.0 | 4.4.0 |
Affected products
3- Range: 3.0.0
Patches
12aab0e881d960[maven-release-plugin] prepare release camel-4.4.0
300 files changed · +307 −314
apache-camel/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> <relativePath>../parent</relativePath> </parent>
archetypes/camel-archetype-api-component/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>archetypes</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <groupId>org.apache.camel.archetypes</groupId>
archetypes/camel-archetype-component/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>archetypes</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <groupId>org.apache.camel.archetypes</groupId>
archetypes/camel-archetype-dataformat/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>archetypes</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <groupId>org.apache.camel.archetypes</groupId>
archetypes/camel-archetype-java/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>archetypes</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <groupId>org.apache.camel.archetypes</groupId>
archetypes/camel-archetype-main/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>archetypes</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <groupId>org.apache.camel.archetypes</groupId>
archetypes/camel-archetype-spring/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>archetypes</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <groupId>org.apache.camel.archetypes</groupId>
archetypes/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> <relativePath>../parent</relativePath> </parent>
bom/camel-bom/pom.xml+1 −1 modified@@ -22,7 +22,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> <relativePath>../../</relativePath> </parent> <artifactId>camel-bom</artifactId>
bom/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> <relativePath>../parent</relativePath> </parent>
buildingtools/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-buildtools</artifactId>
camel-dependencies/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> <relativePath>../parent</relativePath> </parent>
catalog/camel-allcomponents/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>catalog</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-allcomponents</artifactId>
catalog/camel-catalog-common/pom.xml+2 −4 modified@@ -17,14 +17,12 @@ limitations under the License. --> -<project xmlns="http://maven.apache.org/POM/4.0.0" - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.apache.camel</groupId> <artifactId>catalog</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-catalog-common</artifactId>
catalog/camel-catalog-console/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>catalog</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-catalog-console</artifactId>
catalog/camel-catalog-lucene/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>catalog</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-catalog-lucene</artifactId>
catalog/camel-catalog-maven/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>catalog</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-catalog-maven</artifactId>
catalog/camel-catalog/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>catalog</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-catalog</artifactId>
catalog/camel-csimple-maven-plugin/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>maven-plugins</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> <relativePath>../../tooling/maven</relativePath> </parent>
catalog/camel-report-maven-plugin/pom.xml+2 −2 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>maven-plugins</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> <relativePath>../../tooling/maven</relativePath> </parent> @@ -232,7 +232,7 @@ <dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-catalog-common</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> <scope>compile</scope> </dependency>
catalog/camel-route-parser/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>catalog</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-route-parser</artifactId>
catalog/dummy-component/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>catalog</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> <relativePath>..</relativePath> </parent>
catalog/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> <relativePath>../parent</relativePath> </parent>
components/camel-activemq/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-activemq</artifactId>
components/camel-amqp/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-amqp</artifactId>
components/camel-arangodb/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <artifactId>components</artifactId> <groupId>org.apache.camel</groupId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-arangodb</artifactId>
components/camel-as2/camel-as2-api/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-as2-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-as2-api</artifactId>
components/camel-as2/camel-as2-component/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-as2-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-as2</artifactId>
components/camel-as2/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-as2-parent</artifactId>
components/camel-asn1/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-asn1</artifactId>
components/camel-asterisk/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-asterisk</artifactId>
components/camel-atmosphere-websocket/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-atmosphere-websocket</artifactId>
components/camel-atom/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-atom</artifactId>
components/camel-attachments/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-attachments</artifactId>
components/camel-avro/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-avro</artifactId>
components/camel-avro-rpc/camel-avro-rpc-component/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-avro-rpc-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-avro-rpc</artifactId>
components/camel-avro-rpc/camel-avro-rpc-jetty/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-avro-rpc-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-avro-rpc-jetty</artifactId>
components/camel-avro-rpc/camel-avro-rpc-spi/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-avro-rpc-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-avro-rpc-spi</artifactId>
components/camel-avro-rpc/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-avro-rpc-parent</artifactId>
components/camel-aws/camel-aws2-athena/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-aws-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-aws2-athena</artifactId>
components/camel-aws/camel-aws2-cw/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-aws-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-aws2-cw</artifactId>
components/camel-aws/camel-aws2-ddb/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-aws-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-aws2-ddb</artifactId>
components/camel-aws/camel-aws2-ec2/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-aws-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-aws2-ec2</artifactId>
components/camel-aws/camel-aws2-ecs/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-aws-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-aws2-ecs</artifactId>
components/camel-aws/camel-aws2-eks/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-aws-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-aws2-eks</artifactId>
components/camel-aws/camel-aws2-eventbridge/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-aws-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-aws2-eventbridge</artifactId>
components/camel-aws/camel-aws2-iam/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-aws-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-aws2-iam</artifactId>
components/camel-aws/camel-aws2-kinesis/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-aws-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-aws2-kinesis</artifactId>
components/camel-aws/camel-aws2-kms/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-aws-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-aws2-kms</artifactId>
components/camel-aws/camel-aws2-lambda/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-aws-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-aws2-lambda</artifactId>
components/camel-aws/camel-aws2-mq/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-aws-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-aws2-mq</artifactId>
components/camel-aws/camel-aws2-msk/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-aws-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-aws2-msk</artifactId>
components/camel-aws/camel-aws2-redshift/pom.xml+2 −3 modified@@ -17,15 +17,14 @@ limitations under the License. --> -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.apache.camel</groupId> <relativePath>../../pom.xml</relativePath> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-aws2-redshift</artifactId>
components/camel-aws/camel-aws2-s3/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-aws-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-aws2-s3</artifactId>
components/camel-aws/camel-aws2-ses/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-aws-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-aws2-ses</artifactId>
components/camel-aws/camel-aws2-sns/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-aws-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-aws2-sns</artifactId>
components/camel-aws/camel-aws2-sqs/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-aws-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-aws2-sqs</artifactId>
components/camel-aws/camel-aws2-step-functions/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-aws-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-aws2-step-functions</artifactId>
components/camel-aws/camel-aws2-sts/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-aws-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-aws2-sts</artifactId>
components/camel-aws/camel-aws2-timestream/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-aws-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-aws2-timestream</artifactId>
components/camel-aws/camel-aws2-translate/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-aws-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-aws2-translate</artifactId>
components/camel-aws/camel-aws-cloudtrail/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-aws-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-aws-cloudtrail</artifactId>
components/camel-aws/camel-aws-config/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-aws-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-aws-config</artifactId>
components/camel-aws/camel-aws-secrets-manager/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-aws-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-aws-secrets-manager</artifactId>
components/camel-aws/camel-aws-xray/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-aws-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-aws-xray</artifactId>
components/camel-aws/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-aws-parent</artifactId>
components/camel-azure/camel-azure-cosmosdb/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-azure-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-azure-cosmosdb</artifactId>
components/camel-azure/camel-azure-eventhubs/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-azure-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-azure-eventhubs</artifactId>
components/camel-azure/camel-azure-files/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-azure-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-azure-files</artifactId>
components/camel-azure/camel-azure-key-vault/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-azure-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-azure-key-vault</artifactId>
components/camel-azure/camel-azure-schema-registry/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-azure-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-azure-schema-registry</artifactId>
components/camel-azure/camel-azure-servicebus/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-azure-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-azure-servicebus</artifactId>
components/camel-azure/camel-azure-storage-blob/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-azure-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-azure-storage-blob</artifactId>
components/camel-azure/camel-azure-storage-datalake/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-azure-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-azure-storage-datalake</artifactId>
components/camel-azure/camel-azure-storage-queue/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-azure-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-azure-storage-queue</artifactId>
components/camel-azure/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-azure-parent</artifactId>
components/camel-barcode/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-barcode</artifactId>
components/camel-base64/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-base64</artifactId>
components/camel-beanio/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-beanio</artifactId>
components/camel-bean/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-bean</artifactId>
components/camel-bean-validator/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-bean-validator</artifactId>
components/camel-bindy/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-bindy</artifactId>
components/camel-bonita/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-bonita</artifactId>
components/camel-box/camel-box-api/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-box-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-box-api</artifactId>
components/camel-box/camel-box-component/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-box-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-box</artifactId>
components/camel-box/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <artifactId>components</artifactId> <groupId>org.apache.camel</groupId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-box-parent</artifactId>
components/camel-braintree/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-braintree</artifactId>
components/camel-browse/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-browse</artifactId>
components/camel-caffeine/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-caffeine</artifactId>
components/camel-cassandraql/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-cassandraql</artifactId>
components/camel-cbor/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <artifactId>components</artifactId> <groupId>org.apache.camel</groupId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-cbor</artifactId>
components/camel-chatscript/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-chatscript</artifactId>
components/camel-chunk/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <artifactId>components</artifactId> <groupId>org.apache.camel</groupId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-chunk</artifactId>
components/camel-cloudevents/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-cloudevents</artifactId>
components/camel-cm-sms/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-cm-sms</artifactId>
components/camel-coap/pom.xml+2 −3 modified@@ -17,15 +17,14 @@ limitations under the License. --> -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-coap</artifactId>
components/camel-cometd/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-cometd</artifactId>
components/camel-consul/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-consul</artifactId>
components/camel-controlbus/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-controlbus</artifactId>
components/camel-couchbase/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-couchbase</artifactId>
components/camel-couchdb/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-couchdb</artifactId>
components/camel-cron/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-cron</artifactId>
components/camel-crypto/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-crypto</artifactId>
components/camel-csimple-joor/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-csimple-joor</artifactId>
components/camel-csv/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-csv</artifactId>
components/camel-cxf/camel-cxf-common/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-cxf-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-cxf-common</artifactId>
components/camel-cxf/camel-cxf-rest/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-cxf-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-cxf-rest</artifactId>
components/camel-cxf/camel-cxf-soap/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-cxf-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-cxf-soap</artifactId>
components/camel-cxf/camel-cxf-spring-common/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-cxf-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-cxf-spring-common</artifactId>
components/camel-cxf/camel-cxf-spring-rest/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-cxf-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-cxf-spring-rest</artifactId>
components/camel-cxf/camel-cxf-spring-soap/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-cxf-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-cxf-spring-soap</artifactId>
components/camel-cxf/camel-cxf-spring-transport/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-cxf-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-cxf-spring-transport</artifactId>
components/camel-cxf/camel-cxf-transport/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-cxf-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-cxf-transport</artifactId>
components/camel-cxf/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-cxf-parent</artifactId>
components/camel-dataformat/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-dataformat</artifactId>
components/camel-dataset/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-dataset</artifactId>
components/camel-datasonnet/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-datasonnet</artifactId>
components/camel-debezium/camel-debezium-common/camel-debezium-common-component/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-debezium-common-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-debezium-common</artifactId>
components/camel-debezium/camel-debezium-common/camel-debezium-maven-plugin/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-debezium-common-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <groupId>org.apache.camel.maven</groupId>
components/camel-debezium/camel-debezium-common/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-debezium-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-debezium-common-parent</artifactId>
components/camel-debezium/camel-debezium-db2/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-debezium-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-debezium-db2</artifactId>
components/camel-debezium/camel-debezium-mongodb/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-debezium-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-debezium-mongodb</artifactId>
components/camel-debezium/camel-debezium-mysql/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-debezium-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-debezium-mysql</artifactId>
components/camel-debezium/camel-debezium-oracle/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-debezium-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-debezium-oracle</artifactId>
components/camel-debezium/camel-debezium-postgres/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-debezium-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-debezium-postgres</artifactId>
components/camel-debezium/camel-debezium-sqlserver/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-debezium-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-debezium-sqlserver</artifactId>
components/camel-debezium/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-debezium-parent</artifactId>
components/camel-debug/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-debug</artifactId>
components/camel-dhis2/camel-dhis2-api/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-dhis2-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-dhis2-api</artifactId>
components/camel-dhis2/camel-dhis2-component/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-dhis2-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-dhis2</artifactId>
components/camel-dhis2/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-dhis2-parent</artifactId>
components/camel-digitalocean/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-digitalocean</artifactId>
components/camel-direct/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-direct</artifactId>
components/camel-disruptor/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <name>Camel :: Disruptor</name>
components/camel-djl/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <artifactId>components</artifactId> <groupId>org.apache.camel</groupId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-djl</artifactId>
components/camel-dns/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <name>Camel :: DNS</name>
components/camel-docker/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-docker</artifactId>
components/camel-drill/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-drill</artifactId>
components/camel-dropbox/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-dropbox</artifactId>
components/camel-dynamic-router/pom.xml+2 −3 modified@@ -17,14 +17,13 @@ limitations under the License. --> -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-dynamic-router</artifactId>
components/camel-ehcache/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-ehcache</artifactId>
components/camel-elasticsearch/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-elasticsearch</artifactId>
components/camel-elasticsearch-rest-client/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-elasticsearch-rest-client</artifactId>
components/camel-elytron/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-elytron</artifactId>
components/camel-etcd3/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-etcd3</artifactId>
components/camel-exec/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-exec</artifactId>
components/camel-fastjson/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-fastjson</artifactId>
components/camel-fhir/camel-fhir-api/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-fhir-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-fhir-api</artifactId>
components/camel-fhir/camel-fhir-component/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-fhir-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-fhir</artifactId>
components/camel-fhir/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-fhir-parent</artifactId>
components/camel-file/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-file</artifactId>
components/camel-file-watch/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-file-watch</artifactId>
components/camel-flatpack/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-flatpack</artifactId>
components/camel-flink/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <artifactId>components</artifactId> <groupId>org.apache.camel</groupId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-flink</artifactId>
components/camel-fop/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-fop</artifactId>
components/camel-freemarker/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-freemarker</artifactId>
components/camel-ftp/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-ftp</artifactId>
components/camel-geocoder/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-geocoder</artifactId>
components/camel-github/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-github</artifactId>
components/camel-git/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-git</artifactId>
components/camel-google/camel-google-bigquery/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-google-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-google-bigquery</artifactId>
components/camel-google/camel-google-calendar/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-google-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-google-calendar</artifactId>
components/camel-google/camel-google-drive/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-google-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-google-drive</artifactId>
components/camel-google/camel-google-functions/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-google-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-google-functions</artifactId>
components/camel-google/camel-google-mail/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-google-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-google-mail</artifactId>
components/camel-google/camel-google-pubsub/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-google-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-google-pubsub</artifactId>
components/camel-google/camel-google-secret-manager/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-google-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-google-secret-manager</artifactId>
components/camel-google/camel-google-sheets/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-google-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-google-sheets</artifactId>
components/camel-google/camel-google-storage/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-google-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-google-storage</artifactId>
components/camel-google/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-google-parent</artifactId>
components/camel-grape/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-grape</artifactId>
components/camel-graphql/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-graphql</artifactId>
components/camel-grok/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-grok</artifactId>
components/camel-groovy/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-groovy</artifactId>
components/camel-grpc/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-grpc</artifactId>
components/camel-gson/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-gson</artifactId>
components/camel-guava-eventbus/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-guava-eventbus</artifactId>
components/camel-hashicorp-vault/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-hashicorp-vault</artifactId>
components/camel-hazelcast/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-hazelcast</artifactId>
components/camel-headersmap/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-headersmap</artifactId>
components/camel-hl7/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-hl7</artifactId>
components/camel-http-base/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-http-base</artifactId>
components/camel-http-common/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-http-common</artifactId>
components/camel-http/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-http</artifactId>
components/camel-huawei/camel-huaweicloud-common/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-huawei-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <properties>
components/camel-huawei/camel-huaweicloud-dms/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-huawei-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <properties>
components/camel-huawei/camel-huaweicloud-frs/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <artifactId>camel-huawei-parent</artifactId> <groupId>org.apache.camel</groupId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-huaweicloud-frs</artifactId>
components/camel-huawei/camel-huaweicloud-functiongraph/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-huawei-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-huaweicloud-functiongraph</artifactId>
components/camel-huawei/camel-huaweicloud-iam/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-huawei-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-huaweicloud-iam</artifactId>
components/camel-huawei/camel-huaweicloud-imagerecognition/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-huawei-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-huaweicloud-imagerecognition</artifactId>
components/camel-huawei/camel-huaweicloud-obs/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-huawei-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-huaweicloud-obs</artifactId>
components/camel-huawei/camel-huaweicloud-smn/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-huawei-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-huaweicloud-smn</artifactId>
components/camel-huawei/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-huawei-parent</artifactId>
components/camel-ical/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-ical</artifactId>
components/camel-iec60870/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-iec60870</artifactId>
components/camel-ignite/pom.xml+2 −3 modified@@ -17,14 +17,13 @@ limitations under the License. --> -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-ignite</artifactId>
components/camel-infinispan/camel-infinispan-common/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-infinispan-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-infinispan-common</artifactId>
components/camel-infinispan/camel-infinispan-embedded/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-infinispan-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-infinispan-embedded</artifactId>
components/camel-infinispan/camel-infinispan/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-infinispan-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-infinispan</artifactId>
components/camel-infinispan/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-infinispan-parent</artifactId>
components/camel-influxdb2/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-influxdb2</artifactId>
components/camel-influxdb/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-influxdb</artifactId>
components/camel-irc/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-irc</artifactId>
components/camel-ironmq/pom.xml+1 −1 modified@@ -22,7 +22,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-ironmq</artifactId>
components/camel-jackson-avro/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-jackson-avro</artifactId>
components/camel-jackson/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-jackson</artifactId>
components/camel-jackson-protobuf/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-jackson-protobuf</artifactId>
components/camel-jacksonxml/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-jacksonxml</artifactId>
components/camel-jasypt/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-jasypt</artifactId>
components/camel-javascript/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-javascript</artifactId>
components/camel-jaxb/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-jaxb</artifactId>
components/camel-jcache/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-jcache</artifactId>
components/camel-jcr/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-jcr</artifactId>
components/camel-jdbc/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-jdbc</artifactId>
components/camel-jetty-common/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-jetty-common</artifactId>
components/camel-jetty/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-jetty</artifactId>
components/camel-jfr/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-jfr</artifactId>
components/camel-jgroups/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-jgroups</artifactId>
components/camel-jgroups-raft/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-jgroups-raft</artifactId>
components/camel-jira/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-jira</artifactId>
components/camel-jms/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-jms</artifactId>
components/camel-jmx/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-jmx</artifactId>
components/camel-jolt/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <artifactId>components</artifactId> <groupId>org.apache.camel</groupId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-jolt</artifactId>
components/camel-jooq/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-jooq</artifactId>
components/camel-joor/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-joor</artifactId>
components/camel-jpa/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-jpa</artifactId>
components/camel-jq/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-jq</artifactId>
components/camel-jsch/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-jsch</artifactId>
components/camel-jslt/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <artifactId>components</artifactId> <groupId>org.apache.camel</groupId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-jslt</artifactId>
components/camel-jsonapi/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-jsonapi</artifactId>
components/camel-jsonata/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-jsonata</artifactId>
components/camel-jsonb/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-jsonb</artifactId>
components/camel-json-patch/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-json-patch</artifactId>
components/camel-jsonpath/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-jsonpath</artifactId>
components/camel-json-validator/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-json-validator</artifactId>
components/camel-jt400/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-jt400</artifactId>
components/camel-jta/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-jta</artifactId>
components/camel-jte/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-jte</artifactId>
components/camel-kafka/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-kafka</artifactId>
components/camel-kamelet/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-kamelet</artifactId>
components/camel-knative/camel-knative-api/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-knative-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-knative-api</artifactId>
components/camel-knative/camel-knative-component/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-knative-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-knative</artifactId>
components/camel-knative/camel-knative-http/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-knative-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-knative-http</artifactId>
components/camel-knative/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-knative-parent</artifactId>
components/camel-kubernetes/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-kubernetes</artifactId>
components/camel-kudu/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-kudu</artifactId>
components/camel-language/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-language</artifactId>
components/camel-ldap/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-ldap</artifactId>
components/camel-ldif/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-ldif</artifactId>
components/camel-leveldb/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-leveldb</artifactId>
components/camel-log/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-log</artifactId>
components/camel-lra/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-lra</artifactId>
components/camel-lucene/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-lucene</artifactId>
components/camel-lumberjack/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-lumberjack</artifactId>
components/camel-lzf/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-lzf</artifactId>
components/camel-mail-microsoft-oauth/pom.xml+1 −1 modified@@ -22,7 +22,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-mail-microsoft-oauth</artifactId>
components/camel-mail/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-mail</artifactId>
components/camel-mapstruct/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-mapstruct</artifactId>
components/camel-master/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-master</artifactId>
components/camel-metrics/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-metrics</artifactId>
components/camel-micrometer/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-micrometer</artifactId>
components/camel-micrometer-prometheus/pom.xml+2 −3 modified@@ -17,14 +17,13 @@ limitations under the License. --> -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-micrometer-prometheus</artifactId>
components/camel-microprofile/camel-microprofile-config/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-microprofile-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-microprofile-config</artifactId>
components/camel-microprofile/camel-microprofile-fault-tolerance/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-microprofile-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-microprofile-fault-tolerance</artifactId>
components/camel-microprofile/camel-microprofile-health/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-microprofile-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-microprofile-health</artifactId>
components/camel-microprofile/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-microprofile-parent</artifactId>
components/camel-mina/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-mina</artifactId>
components/camel-minio/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-minio</artifactId>
components/camel-mllp/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-mllp</artifactId>
components/camel-mock/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-mock</artifactId>
components/camel-mongodb-gridfs/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-mongodb-gridfs</artifactId>
components/camel-mongodb/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-mongodb</artifactId>
components/camel-mustache/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-mustache</artifactId>
components/camel-mvel/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-mvel</artifactId>
components/camel-mybatis/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-mybatis</artifactId>
components/camel-nats/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-nats</artifactId>
components/camel-netty-http/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-netty-http</artifactId>
components/camel-netty/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-netty</artifactId>
components/camel-nitrite/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-nitrite</artifactId>
components/camel-oaipmh/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <artifactId>components</artifactId> <groupId>org.apache.camel</groupId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-oaipmh</artifactId>
components/camel-observation/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent>
components/camel-ognl/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-ognl</artifactId>
components/camel-olingo2/camel-olingo2-api/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-olingo2-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-olingo2-api</artifactId>
components/camel-olingo2/camel-olingo2-component/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-olingo2-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-olingo2</artifactId>
components/camel-olingo2/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <artifactId>components</artifactId> <groupId>org.apache.camel</groupId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-olingo2-parent</artifactId>
components/camel-olingo4/camel-olingo4-api/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-olingo4-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-olingo4-api</artifactId>
components/camel-olingo4/camel-olingo4-component/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-olingo4-parent</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-olingo4</artifactId>
components/camel-olingo4/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <artifactId>components</artifactId> <groupId>org.apache.camel</groupId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-olingo4-parent</artifactId>
components/camel-openapi-java/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-openapi-java</artifactId>
components/camel-opensearch/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-opensearch</artifactId>
components/camel-openstack/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-openstack</artifactId>
components/camel-opentelemetry/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-opentelemetry</artifactId>
components/camel-optaplanner/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-optaplanner</artifactId>
components/camel-paho-mqtt5/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-paho-mqtt5</artifactId>
components/camel-paho/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-paho</artifactId>
components/camel-parquet-avro/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-parquet-avro</artifactId>
components/camel-pdf/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <artifactId>components</artifactId> <groupId>org.apache.camel</groupId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-pdf</artifactId>
components/camel-pgevent/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-pgevent</artifactId>
components/camel-pg-replication-slot/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-pg-replication-slot</artifactId>
components/camel-platform-http-main/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.4.0-SNAPSHOT</version> + <version>4.4.0</version> </parent> <artifactId>camel-platform-http-main</artifactId>
344cacf9ea0a[maven-release-plugin] prepare release camel-4.0.4
300 files changed · +300 −300
apache-camel/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> <relativePath>../parent</relativePath> </parent>
archetypes/camel-archetype-api-component/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>archetypes</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <groupId>org.apache.camel.archetypes</groupId>
archetypes/camel-archetype-component/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>archetypes</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <groupId>org.apache.camel.archetypes</groupId>
archetypes/camel-archetype-dataformat/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>archetypes</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <groupId>org.apache.camel.archetypes</groupId>
archetypes/camel-archetype-java/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>archetypes</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <groupId>org.apache.camel.archetypes</groupId>
archetypes/camel-archetype-main/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>archetypes</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <groupId>org.apache.camel.archetypes</groupId>
archetypes/camel-archetype-spring/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>archetypes</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <groupId>org.apache.camel.archetypes</groupId>
archetypes/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> <relativePath>../parent</relativePath> </parent>
bom/camel-bom/pom.xml+1 −1 modified@@ -22,7 +22,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> <relativePath>../../</relativePath> </parent> <artifactId>camel-bom</artifactId>
bom/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> <relativePath>../parent</relativePath> </parent>
buildingtools/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-buildtools</artifactId>
camel-dependencies/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> <relativePath>../parent</relativePath> </parent>
catalog/camel-allcomponents/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>catalog</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-allcomponents</artifactId>
catalog/camel-catalog-console/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>catalog</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-catalog-console</artifactId>
catalog/camel-catalog-lucene/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>catalog</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-catalog-lucene</artifactId>
catalog/camel-catalog-maven-grape/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>catalog</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-catalog-maven-grape</artifactId>
catalog/camel-catalog-maven/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>catalog</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-catalog-maven</artifactId>
catalog/camel-catalog/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>catalog</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-catalog</artifactId>
catalog/camel-csimple-maven-plugin/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>maven-plugins</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> <relativePath>../../tooling/maven</relativePath> </parent>
catalog/camel-report-maven-plugin/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>maven-plugins</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> <relativePath>../../tooling/maven</relativePath> </parent>
catalog/camel-route-parser/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>catalog</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-route-parser</artifactId>
catalog/dummy-component/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>catalog</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> <relativePath>..</relativePath> </parent>
catalog/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> <relativePath>../parent</relativePath> </parent>
components/camel-activemq/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-activemq</artifactId>
components/camel-amqp/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-amqp</artifactId>
components/camel-arangodb/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <artifactId>components</artifactId> <groupId>org.apache.camel</groupId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-arangodb</artifactId>
components/camel-as2/camel-as2-api/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-as2-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-as2-api</artifactId>
components/camel-as2/camel-as2-component/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-as2-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-as2</artifactId>
components/camel-as2/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-as2-parent</artifactId>
components/camel-asn1/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-asn1</artifactId>
components/camel-asterisk/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-asterisk</artifactId>
components/camel-atmosphere-websocket/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-atmosphere-websocket</artifactId>
components/camel-atom/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-atom</artifactId>
components/camel-attachments/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-attachments</artifactId>
components/camel-avro/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-avro</artifactId>
components/camel-avro-rpc/camel-avro-rpc-component/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-avro-rpc-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-avro-rpc</artifactId>
components/camel-avro-rpc/camel-avro-rpc-jetty/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-avro-rpc-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-avro-rpc-jetty</artifactId>
components/camel-avro-rpc/camel-avro-rpc-spi/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-avro-rpc-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-avro-rpc-spi</artifactId>
components/camel-avro-rpc/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-avro-rpc-parent</artifactId>
components/camel-aws/camel-aws2-athena/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-aws-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-aws2-athena</artifactId>
components/camel-aws/camel-aws2-cw/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-aws-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-aws2-cw</artifactId>
components/camel-aws/camel-aws2-ddb/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-aws-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-aws2-ddb</artifactId>
components/camel-aws/camel-aws2-ec2/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-aws-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-aws2-ec2</artifactId>
components/camel-aws/camel-aws2-ecs/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-aws-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-aws2-ecs</artifactId>
components/camel-aws/camel-aws2-eks/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-aws-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-aws2-eks</artifactId>
components/camel-aws/camel-aws2-eventbridge/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-aws-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-aws2-eventbridge</artifactId>
components/camel-aws/camel-aws2-iam/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-aws-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-aws2-iam</artifactId>
components/camel-aws/camel-aws2-kinesis/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-aws-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-aws2-kinesis</artifactId>
components/camel-aws/camel-aws2-kms/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-aws-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-aws2-kms</artifactId>
components/camel-aws/camel-aws2-lambda/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-aws-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-aws2-lambda</artifactId>
components/camel-aws/camel-aws2-mq/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-aws-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-aws2-mq</artifactId>
components/camel-aws/camel-aws2-msk/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-aws-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-aws2-msk</artifactId>
components/camel-aws/camel-aws2-s3/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-aws-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-aws2-s3</artifactId>
components/camel-aws/camel-aws2-ses/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-aws-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-aws2-ses</artifactId>
components/camel-aws/camel-aws2-sns/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-aws-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-aws2-sns</artifactId>
components/camel-aws/camel-aws2-sqs/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-aws-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-aws2-sqs</artifactId>
components/camel-aws/camel-aws2-step-functions/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-aws-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-aws2-step-functions</artifactId>
components/camel-aws/camel-aws2-sts/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-aws-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-aws2-sts</artifactId>
components/camel-aws/camel-aws2-translate/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-aws-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-aws2-translate</artifactId>
components/camel-aws/camel-aws-cloudtrail/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-aws-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-aws-cloudtrail</artifactId>
components/camel-aws/camel-aws-secrets-manager/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-aws-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-aws-secrets-manager</artifactId>
components/camel-aws/camel-aws-xray/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-aws-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-aws-xray</artifactId>
components/camel-aws/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-aws-parent</artifactId>
components/camel-azure/camel-azure-cosmosdb/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-azure-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-azure-cosmosdb</artifactId>
components/camel-azure/camel-azure-eventhubs/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-azure-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-azure-eventhubs</artifactId>
components/camel-azure/camel-azure-files/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-azure-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-azure-files</artifactId>
components/camel-azure/camel-azure-key-vault/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-azure-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-azure-key-vault</artifactId>
components/camel-azure/camel-azure-servicebus/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-azure-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-azure-servicebus</artifactId>
components/camel-azure/camel-azure-storage-blob/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-azure-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-azure-storage-blob</artifactId>
components/camel-azure/camel-azure-storage-datalake/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-azure-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-azure-storage-datalake</artifactId>
components/camel-azure/camel-azure-storage-queue/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-azure-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-azure-storage-queue</artifactId>
components/camel-azure/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-azure-parent</artifactId>
components/camel-barcode/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-barcode</artifactId>
components/camel-base64/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-base64</artifactId>
components/camel-bean/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-bean</artifactId>
components/camel-bean-validator/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-bean-validator</artifactId>
components/camel-bindy/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-bindy</artifactId>
components/camel-bonita/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-bonita</artifactId>
components/camel-box/camel-box-api/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-box-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-box-api</artifactId>
components/camel-box/camel-box-component/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-box-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-box</artifactId>
components/camel-box/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <artifactId>components</artifactId> <groupId>org.apache.camel</groupId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-box-parent</artifactId>
components/camel-braintree/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-braintree</artifactId>
components/camel-browse/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-browse</artifactId>
components/camel-caffeine/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-caffeine</artifactId>
components/camel-cassandraql/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-cassandraql</artifactId>
components/camel-cbor/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <artifactId>components</artifactId> <groupId>org.apache.camel</groupId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-cbor</artifactId>
components/camel-chatscript/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-chatscript</artifactId>
components/camel-chunk/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <artifactId>components</artifactId> <groupId>org.apache.camel</groupId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-chunk</artifactId>
components/camel-cloudevents/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-cloudevents</artifactId>
components/camel-cm-sms/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-cm-sms</artifactId>
components/camel-coap/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-coap</artifactId>
components/camel-cometd/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-cometd</artifactId>
components/camel-consul/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-consul</artifactId>
components/camel-controlbus/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-controlbus</artifactId>
components/camel-couchbase/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-couchbase</artifactId>
components/camel-couchdb/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-couchdb</artifactId>
components/camel-cron/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-cron</artifactId>
components/camel-crypto/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-crypto</artifactId>
components/camel-csimple-joor/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-csimple-joor</artifactId>
components/camel-csv/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-csv</artifactId>
components/camel-cxf/camel-cxf-common/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-cxf-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-cxf-common</artifactId>
components/camel-cxf/camel-cxf-rest/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-cxf-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-cxf-rest</artifactId>
components/camel-cxf/camel-cxf-soap/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-cxf-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-cxf-soap</artifactId>
components/camel-cxf/camel-cxf-spring-common/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-cxf-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-cxf-spring-common</artifactId>
components/camel-cxf/camel-cxf-spring-rest/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-cxf-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-cxf-spring-rest</artifactId>
components/camel-cxf/camel-cxf-spring-soap/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-cxf-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-cxf-spring-soap</artifactId>
components/camel-cxf/camel-cxf-spring-transport/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-cxf-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-cxf-spring-transport</artifactId>
components/camel-cxf/camel-cxf-transport/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-cxf-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-cxf-transport</artifactId>
components/camel-cxf/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-cxf-parent</artifactId>
components/camel-dataformat/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-dataformat</artifactId>
components/camel-dataset/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-dataset</artifactId>
components/camel-datasonnet/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-datasonnet</artifactId>
components/camel-debezium/camel-debezium-common/camel-debezium-common-component/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-debezium-common-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-debezium-common</artifactId>
components/camel-debezium/camel-debezium-common/camel-debezium-maven-plugin/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-debezium-common-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <groupId>org.apache.camel.maven</groupId>
components/camel-debezium/camel-debezium-common/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-debezium-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-debezium-common-parent</artifactId>
components/camel-debezium/camel-debezium-db2/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-debezium-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-debezium-db2</artifactId>
components/camel-debezium/camel-debezium-mongodb/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-debezium-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-debezium-mongodb</artifactId>
components/camel-debezium/camel-debezium-mysql/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-debezium-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-debezium-mysql</artifactId>
components/camel-debezium/camel-debezium-oracle/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-debezium-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-debezium-oracle</artifactId>
components/camel-debezium/camel-debezium-postgres/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-debezium-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-debezium-postgres</artifactId>
components/camel-debezium/camel-debezium-sqlserver/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-debezium-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-debezium-sqlserver</artifactId>
components/camel-debezium/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-debezium-parent</artifactId>
components/camel-debug/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-debug</artifactId>
components/camel-dhis2/camel-dhis2-api/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-dhis2-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-dhis2-api</artifactId>
components/camel-dhis2/camel-dhis2-component/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-dhis2-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-dhis2</artifactId>
components/camel-dhis2/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-dhis2-parent</artifactId>
components/camel-digitalocean/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-digitalocean</artifactId>
components/camel-direct/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-direct</artifactId>
components/camel-disruptor/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <name>Camel :: Disruptor</name>
components/camel-djl/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <artifactId>components</artifactId> <groupId>org.apache.camel</groupId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-djl</artifactId>
components/camel-dns/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <name>Camel :: DNS</name>
components/camel-docker/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-docker</artifactId>
components/camel-drill/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-drill</artifactId>
components/camel-dropbox/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-dropbox</artifactId>
components/camel-dynamic-router/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-dynamic-router</artifactId>
components/camel-ehcache/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-ehcache</artifactId>
components/camel-elasticsearch/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-elasticsearch</artifactId>
components/camel-elytron/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-elytron</artifactId>
components/camel-etcd3/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-etcd3</artifactId>
components/camel-exec/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-exec</artifactId>
components/camel-facebook/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <artifactId>components</artifactId> <groupId>org.apache.camel</groupId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-facebook</artifactId>
components/camel-fastjson/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-fastjson</artifactId>
components/camel-fhir/camel-fhir-api/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-fhir-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-fhir-api</artifactId>
components/camel-fhir/camel-fhir-component/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-fhir-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-fhir</artifactId>
components/camel-fhir/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-fhir-parent</artifactId>
components/camel-file/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-file</artifactId>
components/camel-file-watch/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-file-watch</artifactId>
components/camel-flatpack/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-flatpack</artifactId>
components/camel-flink/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <artifactId>components</artifactId> <groupId>org.apache.camel</groupId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-flink</artifactId>
components/camel-fop/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-fop</artifactId>
components/camel-freemarker/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-freemarker</artifactId>
components/camel-ftp/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-ftp</artifactId>
components/camel-geocoder/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-geocoder</artifactId>
components/camel-github/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-github</artifactId>
components/camel-git/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-git</artifactId>
components/camel-google/camel-google-bigquery/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-google-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-google-bigquery</artifactId>
components/camel-google/camel-google-calendar/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-google-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-google-calendar</artifactId>
components/camel-google/camel-google-drive/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-google-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-google-drive</artifactId>
components/camel-google/camel-google-functions/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-google-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-google-functions</artifactId>
components/camel-google/camel-google-mail/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-google-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-google-mail</artifactId>
components/camel-google/camel-google-pubsub/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-google-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-google-pubsub</artifactId>
components/camel-google/camel-google-secret-manager/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-google-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-google-secret-manager</artifactId>
components/camel-google/camel-google-sheets/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-google-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-google-sheets</artifactId>
components/camel-google/camel-google-storage/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-google-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-google-storage</artifactId>
components/camel-google/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-google-parent</artifactId>
components/camel-grape/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-grape</artifactId>
components/camel-graphql/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-graphql</artifactId>
components/camel-grok/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-grok</artifactId>
components/camel-groovy/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-groovy</artifactId>
components/camel-grpc/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-grpc</artifactId>
components/camel-gson/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-gson</artifactId>
components/camel-guava-eventbus/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-guava-eventbus</artifactId>
components/camel-hashicorp-vault/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-hashicorp-vault</artifactId>
components/camel-hazelcast/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-hazelcast</artifactId>
components/camel-hdfs/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-hdfs</artifactId>
components/camel-headersmap/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-headersmap</artifactId>
components/camel-hl7/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-hl7</artifactId>
components/camel-http-base/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-http-base</artifactId>
components/camel-http-common/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-http-common</artifactId>
components/camel-http/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-http</artifactId>
components/camel-huawei/camel-huaweicloud-common/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-huawei-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <properties>
components/camel-huawei/camel-huaweicloud-dms/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-huawei-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <properties>
components/camel-huawei/camel-huaweicloud-frs/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <artifactId>camel-huawei-parent</artifactId> <groupId>org.apache.camel</groupId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-huaweicloud-frs</artifactId>
components/camel-huawei/camel-huaweicloud-functiongraph/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-huawei-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-huaweicloud-functiongraph</artifactId>
components/camel-huawei/camel-huaweicloud-iam/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-huawei-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-huaweicloud-iam</artifactId>
components/camel-huawei/camel-huaweicloud-imagerecognition/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-huawei-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-huaweicloud-imagerecognition</artifactId>
components/camel-huawei/camel-huaweicloud-obs/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-huawei-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-huaweicloud-obs</artifactId>
components/camel-huawei/camel-huaweicloud-smn/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-huawei-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-huaweicloud-smn</artifactId>
components/camel-huawei/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-huawei-parent</artifactId>
components/camel-ical/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-ical</artifactId>
components/camel-iec60870/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-iec60870</artifactId>
components/camel-ignite/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-ignite</artifactId>
components/camel-infinispan/camel-infinispan-common/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-infinispan-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-infinispan-common</artifactId>
components/camel-infinispan/camel-infinispan-embedded/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-infinispan-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-infinispan-embedded</artifactId>
components/camel-infinispan/camel-infinispan/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-infinispan-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-infinispan</artifactId>
components/camel-infinispan/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-infinispan-parent</artifactId>
components/camel-influxdb2/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-influxdb2</artifactId>
components/camel-influxdb/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-influxdb</artifactId>
components/camel-irc/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-irc</artifactId>
components/camel-ironmq/pom.xml+1 −1 modified@@ -22,7 +22,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-ironmq</artifactId>
components/camel-jackson-avro/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-jackson-avro</artifactId>
components/camel-jackson/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-jackson</artifactId>
components/camel-jackson-protobuf/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-jackson-protobuf</artifactId>
components/camel-jacksonxml/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-jacksonxml</artifactId>
components/camel-jasypt/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-jasypt</artifactId>
components/camel-javascript/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-javascript</artifactId>
components/camel-jaxb/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-jaxb</artifactId>
components/camel-jcache/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-jcache</artifactId>
components/camel-jcr/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-jcr</artifactId>
components/camel-jdbc/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-jdbc</artifactId>
components/camel-jetty-common/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-jetty-common</artifactId>
components/camel-jetty/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-jetty</artifactId>
components/camel-jfr/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-jfr</artifactId>
components/camel-jgroups/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-jgroups</artifactId>
components/camel-jgroups-raft/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-jgroups-raft</artifactId>
components/camel-jira/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-jira</artifactId>
components/camel-jms/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-jms</artifactId>
components/camel-jmx/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-jmx</artifactId>
components/camel-jolt/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <artifactId>components</artifactId> <groupId>org.apache.camel</groupId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-jolt</artifactId>
components/camel-jooq/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-jooq</artifactId>
components/camel-joor/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-joor</artifactId>
components/camel-jpa/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-jpa</artifactId>
components/camel-jq/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-jq</artifactId>
components/camel-jsch/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-jsch</artifactId>
components/camel-jslt/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <artifactId>components</artifactId> <groupId>org.apache.camel</groupId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-jslt</artifactId>
components/camel-jsonapi/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-jsonapi</artifactId>
components/camel-jsonata/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-jsonata</artifactId>
components/camel-jsonb/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-jsonb</artifactId>
components/camel-json-patch/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-json-patch</artifactId>
components/camel-jsonpath/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-jsonpath</artifactId>
components/camel-json-validator/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-json-validator</artifactId>
components/camel-jt400/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-jt400</artifactId>
components/camel-jta/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-jta</artifactId>
components/camel-kafka/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-kafka</artifactId>
components/camel-kamelet/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-kamelet</artifactId>
components/camel-knative/camel-knative-api/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-knative-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-knative-api</artifactId>
components/camel-knative/camel-knative-component/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-knative-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-knative</artifactId>
components/camel-knative/camel-knative-http/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-knative-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-knative-http</artifactId>
components/camel-knative/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-knative-parent</artifactId>
components/camel-kubernetes/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-kubernetes</artifactId>
components/camel-kudu/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-kudu</artifactId>
components/camel-language/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-language</artifactId>
components/camel-ldap/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-ldap</artifactId>
components/camel-ldif/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-ldif</artifactId>
components/camel-leveldb/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-leveldb</artifactId>
components/camel-log/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-log</artifactId>
components/camel-lra/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-lra</artifactId>
components/camel-lucene/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-lucene</artifactId>
components/camel-lumberjack/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-lumberjack</artifactId>
components/camel-lzf/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-lzf</artifactId>
components/camel-mail-microsoft-oauth/pom.xml+1 −1 modified@@ -22,7 +22,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-mail-microsoft-oauth</artifactId>
components/camel-mail/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-mail</artifactId>
components/camel-mapstruct/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-mapstruct</artifactId>
components/camel-master/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-master</artifactId>
components/camel-metrics/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-metrics</artifactId>
components/camel-micrometer/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-micrometer</artifactId>
components/camel-microprofile/camel-microprofile-config/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-microprofile-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-microprofile-config</artifactId>
components/camel-microprofile/camel-microprofile-fault-tolerance/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-microprofile-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-microprofile-fault-tolerance</artifactId>
components/camel-microprofile/camel-microprofile-health/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-microprofile-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-microprofile-health</artifactId>
components/camel-microprofile/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-microprofile-parent</artifactId>
components/camel-mina/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-mina</artifactId>
components/camel-minio/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-minio</artifactId>
components/camel-mllp/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-mllp</artifactId>
components/camel-mock/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-mock</artifactId>
components/camel-mongodb-gridfs/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-mongodb-gridfs</artifactId>
components/camel-mongodb/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-mongodb</artifactId>
components/camel-mustache/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-mustache</artifactId>
components/camel-mvel/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-mvel</artifactId>
components/camel-mybatis/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-mybatis</artifactId>
components/camel-nats/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-nats</artifactId>
components/camel-netty-http/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-netty-http</artifactId>
components/camel-netty/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-netty</artifactId>
components/camel-nitrite/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-nitrite</artifactId>
components/camel-oaipmh/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <artifactId>components</artifactId> <groupId>org.apache.camel</groupId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-oaipmh</artifactId>
components/camel-observation/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent>
components/camel-ognl/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-ognl</artifactId>
components/camel-olingo2/camel-olingo2-api/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-olingo2-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-olingo2-api</artifactId>
components/camel-olingo2/camel-olingo2-component/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-olingo2-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-olingo2</artifactId>
components/camel-olingo2/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <artifactId>components</artifactId> <groupId>org.apache.camel</groupId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-olingo2-parent</artifactId>
components/camel-olingo4/camel-olingo4-api/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-olingo4-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-olingo4-api</artifactId>
components/camel-olingo4/camel-olingo4-component/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-olingo4-parent</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-olingo4</artifactId>
components/camel-olingo4/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <artifactId>components</artifactId> <groupId>org.apache.camel</groupId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-olingo4-parent</artifactId>
components/camel-openapi-java/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-openapi-java</artifactId>
components/camel-opensearch/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-opensearch</artifactId>
components/camel-openstack/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-openstack</artifactId>
components/camel-opentelemetry/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-opentelemetry</artifactId>
components/camel-optaplanner/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-optaplanner</artifactId>
components/camel-paho-mqtt5/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-paho-mqtt5</artifactId>
components/camel-paho/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-paho</artifactId>
components/camel-parquet-avro/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-parquet-avro</artifactId>
components/camel-pdf/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <artifactId>components</artifactId> <groupId>org.apache.camel</groupId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-pdf</artifactId>
components/camel-pgevent/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-pgevent</artifactId>
components/camel-pg-replication-slot/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-pg-replication-slot</artifactId>
components/camel-platform-http-main/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-platform-http-main</artifactId>
components/camel-platform-http/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-platform-http</artifactId>
components/camel-platform-http-vertx/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-platform-http-vertx</artifactId>
components/camel-plc4x/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-plc4x</artifactId>
components/camel-printer/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-printer</artifactId>
components/camel-protobuf/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-protobuf</artifactId>
components/camel-pubnub/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.4-SNAPSHOT</version> + <version>4.0.4</version> </parent> <artifactId>camel-pubnub</artifactId>
63dc3d2bbfc1[maven-release-plugin] prepare release camel-3.21.4
300 files changed · +311 −310
apache-camel/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> <relativePath>../parent</relativePath> </parent>
archetypes/camel-archetype-api-component/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>archetypes</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <groupId>org.apache.camel.archetypes</groupId>
archetypes/camel-archetype-cdi/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>archetypes</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <groupId>org.apache.camel.archetypes</groupId>
archetypes/camel-archetype-component/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>archetypes</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <groupId>org.apache.camel.archetypes</groupId>
archetypes/camel-archetype-dataformat/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>archetypes</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <groupId>org.apache.camel.archetypes</groupId>
archetypes/camel-archetype-java/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>archetypes</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <groupId>org.apache.camel.archetypes</groupId>
archetypes/camel-archetype-main/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>archetypes</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <groupId>org.apache.camel.archetypes</groupId>
archetypes/camel-archetype-spring/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>archetypes</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <groupId>org.apache.camel.archetypes</groupId>
archetypes/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> <relativePath>../parent</relativePath> </parent>
bom/camel-bom/pom.xml+1 −1 modified@@ -22,7 +22,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> <relativePath>../../</relativePath> </parent> <artifactId>camel-bom</artifactId>
bom/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> <relativePath>../parent</relativePath> </parent>
buildingtools/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-buildtools</artifactId>
camel-dependencies/pom.xml+12 −11 modified@@ -17,7 +17,8 @@ limitations under the License. --> -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> +<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.apache</groupId> @@ -27,7 +28,7 @@ </parent> <groupId>org.apache.camel</groupId> <artifactId>camel-dependencies</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> <packaging>pom</packaging> <name>Camel :: Dependencies</name> <description>Camel Dependencies POM</description> @@ -81,18 +82,18 @@ <californium-scandium-version>2.7.4</californium-scandium-version> <californium-version>2.7.4</californium-version> <camel.failsafe.forkTimeout>600</camel.failsafe.forkTimeout> - <camel.osgi.activator /> - <camel.osgi.dynamic /> + <camel.osgi.activator></camel.osgi.activator> + <camel.osgi.dynamic></camel.osgi.dynamic> <camel.osgi.exclude.dependencies>false</camel.osgi.exclude.dependencies> <camel.osgi.export>${camel.osgi.export.pkg};-noimport:=true;${camel.osgi.version}</camel.osgi.export> <camel.osgi.export.pkg>$${replace;{local-packages};;;\;}</camel.osgi.export.pkg> <camel.osgi.failok>false</camel.osgi.failok> <camel.osgi.import>${camel.osgi.import.pkg}</camel.osgi.import> - <camel.osgi.import.additional /> - <camel.osgi.import.before.defaults /> + <camel.osgi.import.additional></camel.osgi.import.additional> + <camel.osgi.import.before.defaults></camel.osgi.import.before.defaults> <camel.osgi.import.camel.version>version="[$(version;==;${camel.osgi.version.clean}),$(version;=+;${camel.osgi.version.clean}))"</camel.osgi.import.camel.version> <camel.osgi.import.default.version>[$(version;==;$(@)),$(version;+;$(@)))</camel.osgi.import.default.version> - <camel.osgi.import.defaults /> + <camel.osgi.import.defaults></camel.osgi.import.defaults> <camel.osgi.import.pkg>org.apache.camel.*;${camel.osgi.import.camel.version}, ${camel.osgi.import.before.defaults}, ${camel.osgi.import.defaults}, @@ -101,8 +102,8 @@ <camel.osgi.import.strict.version>version="[$(version;===;${camel.osgi.version.clean}),$(version;==+;${camel.osgi.version.clean}))"</camel.osgi.import.strict.version> <camel.osgi.manifest>${project.build.outputDirectory}/META-INF/MANIFEST.MF</camel.osgi.manifest> <camel.osgi.private.pkg>!*</camel.osgi.private.pkg> - <camel.osgi.provide.capability /> - <camel.osgi.require.capability /> + <camel.osgi.provide.capability></camel.osgi.provide.capability> + <camel.osgi.require.capability></camel.osgi.require.capability> <camel.osgi.symbolic.name>${project.groupId}.${project.artifactId}</camel.osgi.symbolic.name> <camel.osgi.version>version=${project.version}</camel.osgi.version> <camel.surefire.fork.vmargs>-XX:+ExitOnOutOfMemoryError</camel.surefire.fork.vmargs> @@ -154,9 +155,9 @@ <cxf-version-range>[3.6,3.7)</cxf-version-range> <cxf-xjc-plugin-version>3.3.2</cxf-xjc-plugin-version> <cxf-xjc-utils-version>3.3.2</cxf-xjc-utils-version> - <cxf.codegen.jvmArgs /> + <cxf.codegen.jvmArgs></cxf.codegen.jvmArgs> <cxf.codegenplugin.forkmode>true</cxf.codegenplugin.forkmode> - <cxf.xjc.jvmArgs /> + <cxf.xjc.jvmArgs></cxf.xjc.jvmArgs> <datasonnet-mapper-version>2.1.4</datasonnet-mapper-version> <debezium-mysql-connector-version>8.0.28</debezium-mysql-connector-version> <debezium-version>1.9.6.Final</debezium-version>
catalog/camel-allcomponents/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>catalog</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-allcomponents</artifactId>
catalog/camel-catalog-console/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>catalog</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-catalog-console</artifactId>
catalog/camel-catalog-lucene/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>catalog</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-catalog-lucene</artifactId>
catalog/camel-catalog-maven/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>catalog</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-catalog-maven</artifactId>
catalog/camel-catalog/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>catalog</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-catalog</artifactId>
catalog/camel-csimple-maven-plugin/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>maven-plugins</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> <relativePath>../../tooling/maven</relativePath> </parent>
catalog/camel-report-maven-plugin/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>maven-plugins</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> <relativePath>../../tooling/maven</relativePath> </parent>
catalog/camel-route-parser/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>catalog</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-route-parser</artifactId>
catalog/dummy-component/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>catalog</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> <relativePath>..</relativePath> </parent>
catalog/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> <relativePath>../parent</relativePath> </parent>
components/camel-activemq/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-activemq</artifactId>
components/camel-amqp/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-amqp</artifactId>
components/camel-any23/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-any23</artifactId>
components/camel-arangodb/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <artifactId>components</artifactId> <groupId>org.apache.camel</groupId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <groupId>org.apache.camel</groupId>
components/camel-as2/camel-as2-api/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-as2-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-as2-api</artifactId>
components/camel-as2/camel-as2-component/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-as2-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-as2</artifactId>
components/camel-as2/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-as2-parent</artifactId>
components/camel-asn1/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-asn1</artifactId>
components/camel-asterisk/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-asterisk</artifactId>
components/camel-atlasmap/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-atlasmap</artifactId>
components/camel-atmosphere-websocket/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-atmosphere-websocket</artifactId>
components/camel-atmos/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-atmos</artifactId>
components/camel-atom/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-atom</artifactId>
components/camel-attachments/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-attachments</artifactId>
components/camel-avro/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-avro</artifactId>
components/camel-avro-rpc/camel-avro-rpc-component/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-avro-rpc-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-avro-rpc</artifactId>
components/camel-avro-rpc/camel-avro-rpc-jetty/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-avro-rpc-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-avro-rpc-jetty</artifactId>
components/camel-avro-rpc/camel-avro-rpc-spi/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-avro-rpc-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-avro-rpc-spi</artifactId>
components/camel-avro-rpc/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-avro-rpc-parent</artifactId>
components/camel-aws/camel-aws2-athena/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-aws-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-aws2-athena</artifactId>
components/camel-aws/camel-aws2-cw/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-aws-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-aws2-cw</artifactId>
components/camel-aws/camel-aws2-ddb/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-aws-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-aws2-ddb</artifactId>
components/camel-aws/camel-aws2-ec2/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-aws-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-aws2-ec2</artifactId>
components/camel-aws/camel-aws2-ecs/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-aws-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-aws2-ecs</artifactId>
components/camel-aws/camel-aws2-eks/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-aws-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-aws2-eks</artifactId>
components/camel-aws/camel-aws2-eventbridge/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-aws-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-aws2-eventbridge</artifactId>
components/camel-aws/camel-aws2-iam/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-aws-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-aws2-iam</artifactId>
components/camel-aws/camel-aws2-kinesis/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-aws-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-aws2-kinesis</artifactId>
components/camel-aws/camel-aws2-kms/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-aws-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-aws2-kms</artifactId>
components/camel-aws/camel-aws2-lambda/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-aws-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-aws2-lambda</artifactId>
components/camel-aws/camel-aws2-mq/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-aws-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-aws2-mq</artifactId>
components/camel-aws/camel-aws2-msk/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-aws-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-aws2-msk</artifactId>
components/camel-aws/camel-aws2-s3/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-aws-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-aws2-s3</artifactId>
components/camel-aws/camel-aws2-ses/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-aws-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-aws2-ses</artifactId>
components/camel-aws/camel-aws2-sns/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-aws-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-aws2-sns</artifactId>
components/camel-aws/camel-aws2-sqs/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-aws-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-aws2-sqs</artifactId>
components/camel-aws/camel-aws2-sts/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-aws-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-aws2-sts</artifactId>
components/camel-aws/camel-aws2-translate/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-aws-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-aws2-translate</artifactId>
components/camel-aws/camel-aws-cloudtrail/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-aws-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-aws-cloudtrail</artifactId>
components/camel-aws/camel-aws-secrets-manager/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-aws-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-aws-secrets-manager</artifactId>
components/camel-aws/camel-aws-xray/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-aws-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-aws-xray</artifactId>
components/camel-aws/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-aws-parent</artifactId>
components/camel-azure/camel-azure-cosmosdb/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-azure-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-azure-cosmosdb</artifactId>
components/camel-azure/camel-azure-eventhubs/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-azure-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-azure-eventhubs</artifactId>
components/camel-azure/camel-azure-key-vault/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-azure-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-azure-key-vault</artifactId>
components/camel-azure/camel-azure-servicebus/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-azure-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-azure-servicebus</artifactId>
components/camel-azure/camel-azure-storage-blob/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-azure-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-azure-storage-blob</artifactId>
components/camel-azure/camel-azure-storage-datalake/pom.xml+1 −1 modified@@ -19,7 +19,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-azure-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-azure-storage-datalake</artifactId>
components/camel-azure/camel-azure-storage-queue/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-azure-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-azure-storage-queue</artifactId>
components/camel-azure/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-azure-parent</artifactId>
components/camel-barcode/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-barcode</artifactId>
components/camel-base64/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-base64</artifactId>
components/camel-bean/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-bean</artifactId>
components/camel-bean-validator/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-bean-validator</artifactId>
components/camel-bindy/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-bindy</artifactId>
components/camel-bonita/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-bonita</artifactId>
components/camel-box/camel-box-api/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-box-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-box-api</artifactId>
components/camel-box/camel-box-component/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-box-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-box</artifactId>
components/camel-box/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <artifactId>components</artifactId> <groupId>org.apache.camel</groupId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-box-parent</artifactId>
components/camel-braintree/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-braintree</artifactId>
components/camel-browse/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-browse</artifactId>
components/camel-caffeine-lrucache/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-caffeine-lrucache</artifactId>
components/camel-caffeine/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-caffeine</artifactId>
components/camel-cassandraql/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-cassandraql</artifactId>
components/camel-cbor/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <artifactId>components</artifactId> <groupId>org.apache.camel</groupId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-cbor</artifactId>
components/camel-cdi-jta/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-cdi-jta</artifactId>
components/camel-cdi-main/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-cdi-main</artifactId>
components/camel-cdi/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-cdi</artifactId>
components/camel-chatscript/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-chatscript</artifactId>
components/camel-chunk/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <artifactId>components</artifactId> <groupId>org.apache.camel</groupId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-chunk</artifactId>
components/camel-cloudevents/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-cloudevents</artifactId>
components/camel-cm-sms/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-cm-sms</artifactId>
components/camel-coap/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-coap</artifactId>
components/camel-cometd/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-cometd</artifactId>
components/camel-consul/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-consul</artifactId>
components/camel-controlbus/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-controlbus</artifactId>
components/camel-corda/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-corda</artifactId>
components/camel-couchbase/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-couchbase</artifactId>
components/camel-couchdb/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-couchdb</artifactId>
components/camel-cron/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-cron</artifactId>
components/camel-crypto/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-crypto</artifactId>
components/camel-csimple-joor/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-csimple-joor</artifactId>
components/camel-csv/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-csv</artifactId>
components/camel-cxf/camel-cxf-common/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-cxf-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-cxf-common</artifactId>
components/camel-cxf/camel-cxf-rest/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-cxf-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-cxf-rest</artifactId>
components/camel-cxf/camel-cxf-soap/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-cxf-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-cxf-soap</artifactId>
components/camel-cxf/camel-cxf-spring-common/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-cxf-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-cxf-spring-common</artifactId>
components/camel-cxf/camel-cxf-spring-rest/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-cxf-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-cxf-spring-rest</artifactId>
components/camel-cxf/camel-cxf-spring-soap/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-cxf-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-cxf-spring-soap</artifactId>
components/camel-cxf/camel-cxf-spring-transport/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-cxf-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-cxf-spring-transport</artifactId>
components/camel-cxf/camel-cxf-transport/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-cxf-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-cxf-transport</artifactId>
components/camel-cxf/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-cxf-parent</artifactId>
components/camel-dataformat/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-dataformat</artifactId>
components/camel-dataset/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-dataset</artifactId>
components/camel-datasonnet/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-datasonnet</artifactId>
components/camel-debezium/camel-debezium-common/camel-debezium-common-component/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-debezium-common-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-debezium-common</artifactId>
components/camel-debezium/camel-debezium-common/camel-debezium-maven-plugin/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-debezium-common-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <groupId>org.apache.camel.maven</groupId>
components/camel-debezium/camel-debezium-common/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-debezium-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-debezium-common-parent</artifactId>
components/camel-debezium/camel-debezium-db2/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-debezium-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-debezium-db2</artifactId>
components/camel-debezium/camel-debezium-mongodb/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-debezium-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-debezium-mongodb</artifactId>
components/camel-debezium/camel-debezium-mysql/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-debezium-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-debezium-mysql</artifactId>
components/camel-debezium/camel-debezium-oracle/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-debezium-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-debezium-oracle</artifactId>
components/camel-debezium/camel-debezium-postgres/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-debezium-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-debezium-postgres</artifactId>
components/camel-debezium/camel-debezium-sqlserver/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-debezium-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-debezium-sqlserver</artifactId>
components/camel-debezium/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-debezium-parent</artifactId>
components/camel-debug/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-debug</artifactId>
components/camel-dhis2/camel-dhis2-api/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-dhis2-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-dhis2-api</artifactId>
components/camel-dhis2/camel-dhis2-component/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-dhis2-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-dhis2</artifactId>
components/camel-dhis2/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-dhis2-parent</artifactId>
components/camel-digitalocean/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-digitalocean</artifactId>
components/camel-direct/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-direct</artifactId>
components/camel-directvm/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-directvm</artifactId>
components/camel-disruptor/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <name>Camel :: Disruptor</name>
components/camel-djl/pom.xml+1 −1 modified@@ -22,7 +22,7 @@ <parent> <artifactId>components</artifactId> <groupId>org.apache.camel</groupId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-djl</artifactId>
components/camel-dns/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <name>Camel :: DNS</name>
components/camel-docker/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-docker</artifactId>
components/camel-drill/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-drill</artifactId>
components/camel-dropbox/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-dropbox</artifactId>
components/camel-dynamic-router/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-dynamic-router</artifactId>
components/camel-ehcache/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-ehcache</artifactId>
components/camel-elasticsearch/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-elasticsearch</artifactId>
components/camel-elasticsearch-rest/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-elasticsearch-rest</artifactId>
components/camel-elytron/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-elytron</artifactId>
components/camel-etcd3/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-etcd3</artifactId>
components/camel-exec/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-exec</artifactId>
components/camel-facebook/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <artifactId>components</artifactId> <groupId>org.apache.camel</groupId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-facebook</artifactId>
components/camel-fastjson/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-fastjson</artifactId>
components/camel-fhir/camel-fhir-api/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-fhir-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-fhir-api</artifactId>
components/camel-fhir/camel-fhir-component/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-fhir-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-fhir</artifactId>
components/camel-fhir/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-fhir-parent</artifactId>
components/camel-file/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-file</artifactId>
components/camel-file-watch/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-file-watch</artifactId>
components/camel-flatpack/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-flatpack</artifactId>
components/camel-flink/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <artifactId>components</artifactId> <groupId>org.apache.camel</groupId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-flink</artifactId>
components/camel-fop/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-fop</artifactId>
components/camel-freemarker/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-freemarker</artifactId>
components/camel-ftp/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-ftp</artifactId>
components/camel-geocoder/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-geocoder</artifactId>
components/camel-github/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-github</artifactId>
components/camel-git/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-git</artifactId>
components/camel-google/camel-google-bigquery/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-google-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-google-bigquery</artifactId>
components/camel-google/camel-google-calendar/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-google-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-google-calendar</artifactId>
components/camel-google/camel-google-drive/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-google-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-google-drive</artifactId>
components/camel-google/camel-google-functions/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-google-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-google-functions</artifactId>
components/camel-google/camel-google-mail/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-google-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-google-mail</artifactId>
components/camel-google/camel-google-pubsub/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-google-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-google-pubsub</artifactId>
components/camel-google/camel-google-secret-manager/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-google-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-google-secret-manager</artifactId>
components/camel-google/camel-google-sheets/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-google-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-google-sheets</artifactId>
components/camel-google/camel-google-storage/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-google-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-google-storage</artifactId>
components/camel-google/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-google-parent</artifactId>
components/camel-gora/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-gora</artifactId>
components/camel-grape/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-grape</artifactId>
components/camel-graphql/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-graphql</artifactId>
components/camel-grok/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-grok</artifactId>
components/camel-groovy/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-groovy</artifactId>
components/camel-grpc/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-grpc</artifactId>
components/camel-gson/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-gson</artifactId>
components/camel-guava-eventbus/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-guava-eventbus</artifactId>
components/camel-hashicorp-vault/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-hashicorp-vault</artifactId>
components/camel-hazelcast/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-hazelcast</artifactId>
components/camel-hbase/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-hbase</artifactId>
components/camel-hdfs/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-hdfs</artifactId>
components/camel-headersmap/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-headersmap</artifactId>
components/camel-hl7/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-hl7</artifactId>
components/camel-http-base/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-http-base</artifactId>
components/camel-http-common/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-http-common</artifactId>
components/camel-http/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-http</artifactId>
components/camel-huawei/camel-huaweicloud-common/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-huawei-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <properties>
components/camel-huawei/camel-huaweicloud-dms/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-huawei-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <properties>
components/camel-huawei/camel-huaweicloud-frs/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <artifactId>camel-huawei-parent</artifactId> <groupId>org.apache.camel</groupId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-huaweicloud-frs</artifactId>
components/camel-huawei/camel-huaweicloud-functiongraph/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-huawei-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-huaweicloud-functiongraph</artifactId>
components/camel-huawei/camel-huaweicloud-iam/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-huawei-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-huaweicloud-iam</artifactId>
components/camel-huawei/camel-huaweicloud-imagerecognition/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-huawei-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-huaweicloud-imagerecognition</artifactId>
components/camel-huawei/camel-huaweicloud-obs/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-huawei-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-huaweicloud-obs</artifactId>
components/camel-huawei/camel-huaweicloud-smn/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-huawei-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-huaweicloud-smn</artifactId>
components/camel-huawei/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-huawei-parent</artifactId>
components/camel-hyperledger-aries/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <name>Camel :: Hyperledger Aries</name>
components/camel-ical/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-ical</artifactId>
components/camel-iec60870/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-iec60870</artifactId>
components/camel-ignite/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-ignite</artifactId>
components/camel-infinispan/camel-infinispan-common/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-infinispan-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-infinispan-common</artifactId>
components/camel-infinispan/camel-infinispan-embedded/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-infinispan-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-infinispan-embedded</artifactId>
components/camel-infinispan/camel-infinispan/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-infinispan-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-infinispan</artifactId>
components/camel-infinispan/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-infinispan-parent</artifactId>
components/camel-influxdb2/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-influxdb2</artifactId>
components/camel-influxdb/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-influxdb</artifactId>
components/camel-iota/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-iota</artifactId>
components/camel-ipfs/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-ipfs</artifactId>
components/camel-irc/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-irc</artifactId>
components/camel-ironmq/pom.xml+1 −1 modified@@ -22,7 +22,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-ironmq</artifactId>
components/camel-jackson-avro/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-jackson-avro</artifactId>
components/camel-jackson/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-jackson</artifactId>
components/camel-jackson-protobuf/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-jackson-protobuf</artifactId>
components/camel-jacksonxml/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-jacksonxml</artifactId>
components/camel-jasypt/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-jasypt</artifactId>
components/camel-javascript/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-javascript</artifactId>
components/camel-jaxb/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-jaxb</artifactId>
components/camel-jbpm/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-jbpm</artifactId>
components/camel-jcache/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-jcache</artifactId>
components/camel-jclouds/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-jclouds</artifactId>
components/camel-jcr/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-jcr</artifactId>
components/camel-jdbc/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-jdbc</artifactId>
components/camel-jetty-common/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-jetty-common</artifactId>
components/camel-jetty/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-jetty</artifactId>
components/camel-jfr/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-jfr</artifactId>
components/camel-jgroups/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-jgroups</artifactId>
components/camel-jgroups-raft/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-jgroups-raft</artifactId>
components/camel-jira/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-jira</artifactId>
components/camel-jms/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-jms</artifactId>
components/camel-jmx/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-jmx</artifactId>
components/camel-johnzon/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-johnzon</artifactId>
components/camel-jolt/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <artifactId>components</artifactId> <groupId>org.apache.camel</groupId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-jolt</artifactId>
components/camel-jooq/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-jooq</artifactId>
components/camel-joor/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-joor</artifactId>
components/camel-jpa/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-jpa</artifactId>
components/camel-jq/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-jq</artifactId>
components/camel-jsch/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-jsch</artifactId>
components/camel-jslt/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <artifactId>components</artifactId> <groupId>org.apache.camel</groupId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-jslt</artifactId>
components/camel-jsonapi/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-jsonapi</artifactId>
components/camel-jsonata/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-jsonata</artifactId>
components/camel-jsonb/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-jsonb</artifactId>
components/camel-json-patch/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-json-patch</artifactId>
components/camel-jsonpath/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-jsonpath</artifactId>
components/camel-json-validator/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-json-validator</artifactId>
components/camel-jt400/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-jt400</artifactId>
components/camel-jta/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-jta</artifactId>
components/camel-kafka/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-kafka</artifactId>
components/camel-kamelet/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-kamelet</artifactId>
components/camel-knative/camel-knative-api/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-knative-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-knative-api</artifactId>
components/camel-knative/camel-knative-component/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-knative-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-knative</artifactId>
components/camel-knative/camel-knative-http/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-knative-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-knative-http</artifactId>
components/camel-knative/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-knative-parent</artifactId>
components/camel-kubernetes/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-kubernetes</artifactId>
components/camel-kudu/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-kudu</artifactId>
components/camel-language/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-language</artifactId>
components/camel-ldap/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-ldap</artifactId>
components/camel-ldif/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-ldif</artifactId>
components/camel-leveldb/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-leveldb</artifactId>
components/camel-log/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-log</artifactId>
components/camel-lra/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-lra</artifactId>
components/camel-lucene/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-lucene</artifactId>
components/camel-lumberjack/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-lumberjack</artifactId>
components/camel-lzf/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-lzf</artifactId>
components/camel-mail-microsoft-oauth/pom.xml+1 −1 modified@@ -22,7 +22,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-mail-microsoft-oauth</artifactId>
components/camel-mail/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-mail</artifactId>
components/camel-mapstruct/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-mapstruct</artifactId>
components/camel-master/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-master</artifactId>
components/camel-metrics/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-metrics</artifactId>
components/camel-micrometer/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-micrometer</artifactId>
components/camel-microprofile/camel-microprofile-config/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-microprofile-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-microprofile-config</artifactId>
components/camel-microprofile/camel-microprofile-fault-tolerance/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-microprofile-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-microprofile-fault-tolerance</artifactId>
components/camel-microprofile/camel-microprofile-health/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-microprofile-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-microprofile-health</artifactId>
components/camel-microprofile/camel-microprofile-metrics/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-microprofile-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-microprofile-metrics</artifactId>
components/camel-microprofile/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-microprofile-parent</artifactId>
components/camel-milo/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-milo</artifactId>
components/camel-mina/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-mina</artifactId>
components/camel-minio/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-minio</artifactId>
components/camel-mllp/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-mllp</artifactId>
components/camel-mock/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-mock</artifactId>
components/camel-mongodb-gridfs/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-mongodb-gridfs</artifactId>
components/camel-mongodb/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-mongodb</artifactId>
components/camel-mustache/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-mustache</artifactId>
components/camel-mvel/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-mvel</artifactId>
components/camel-mybatis/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-mybatis</artifactId>
components/camel-nats/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-nats</artifactId>
components/camel-netty-http/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-netty-http</artifactId>
components/camel-netty/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-netty</artifactId>
components/camel-nitrite/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-nitrite</artifactId>
components/camel-oaipmh/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <artifactId>components</artifactId> <groupId>org.apache.camel</groupId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-oaipmh</artifactId>
components/camel-observation/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent>
components/camel-ognl/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-ognl</artifactId>
components/camel-olingo2/camel-olingo2-api/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-olingo2-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-olingo2-api</artifactId>
components/camel-olingo2/camel-olingo2-component/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-olingo2-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-olingo2</artifactId>
components/camel-olingo2/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <artifactId>components</artifactId> <groupId>org.apache.camel</groupId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-olingo2-parent</artifactId>
components/camel-olingo4/camel-olingo4-api/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-olingo4-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-olingo4-api</artifactId>
components/camel-olingo4/camel-olingo4-component/pom.xml+1 −1 modified@@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>camel-olingo4-parent</artifactId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-olingo4</artifactId>
components/camel-olingo4/pom.xml+1 −1 modified@@ -24,7 +24,7 @@ <parent> <artifactId>components</artifactId> <groupId>org.apache.camel</groupId> - <version>3.21.4-SNAPSHOT</version> + <version>3.21.4</version> </parent> <artifactId>camel-olingo4-parent</artifactId>
f71ee8f38452CAMEL-20303 - Camel-Sql: Add ObjectInputFilter String pattern parameter in JdbcAggregationRepository to be used in unmarshall operations (#12789)
5 files changed · +129 −13
components/camel-sql/src/main/docs/sql-component.adoc+4 −0 modified@@ -594,6 +594,10 @@ the `currentThread` one. The benefit is to be able to load classes exposed by other bundles. This allows the exchange body and headers to have custom types object references. +While deserializing it's important to notice that the decode function and the unmarshallExchange method will allow only all java packages and subpackages +and org.apache.camel packages and subpackages. The remaining classes will be blacklisted. So you'll need to change the filter in case of need. +This could be accomplished by changing the deserializationFilter field on the repository. + === Transaction A Spring `PlatformTransactionManager` is required to orchestrate
components/camel-sql/src/main/java/org/apache/camel/processor/aggregate/jdbc/JdbcAggregationRepository.java+16 −1 modified@@ -94,6 +94,7 @@ public class JdbcAggregationRepository extends ServiceSupport private String deadLetterUri; private List<String> headersToStoreAsText; private boolean storeBodyAsText; + private String deserializationFilter = "java.**;org.apache.camel.**;!*"; /** * Creates an aggregation repository @@ -357,7 +358,7 @@ public Exchange doInTransaction(TransactionStatus status) { version = (long) versionObj; } - Exchange result = codec.unmarshallExchange(camelContext, marshalledExchange); + Exchange result = codec.unmarshallExchange(camelContext, marshalledExchange, deserializationFilter); result.setProperty(VERSION_PROPERTY, version); return result; @@ -626,6 +627,20 @@ public String getRepositoryNameCompleted() { return getRepositoryName() + "_completed"; } + public String getDeserializationFilter() { + return deserializationFilter; + } + + /** + * Sets a deserialization filter while reading Object from Aggregation Repository. By default the filter will allow + * all java packages and subpackages and all org.apache.camel packages and subpackages, while the remaining will be + * blacklisted and not deserialized. This parameter should be customized if you're using classes you trust to be + * deserialized. + */ + public void setDeserializationFilter(String deserializationFilter) { + this.deserializationFilter = deserializationFilter; + } + @Override protected void doInit() throws Exception { super.doInit();
components/camel-sql/src/main/java/org/apache/camel/processor/aggregate/jdbc/JdbcCamelCodec.java+8 −12 modified@@ -16,13 +16,7 @@ */ package org.apache.camel.processor.aggregate.jdbc; -import java.io.ByteArrayInputStream; -import java.io.ByteArrayOutputStream; -import java.io.IOException; -import java.io.InputStream; -import java.io.ObjectInputStream; -import java.io.ObjectOutputStream; -import java.io.OutputStream; +import java.io.*; import org.apache.camel.CamelContext; import org.apache.camel.Endpoint; @@ -74,13 +68,14 @@ public void marshallExchange( encode(pe, outputStream); } - public Exchange unmarshallExchange(CamelContext camelContext, byte[] buffer) throws IOException, ClassNotFoundException { - return unmarshallExchange(camelContext, new ByteArrayInputStream(buffer)); + public Exchange unmarshallExchange(CamelContext camelContext, byte[] buffer, String deserializationFilter) + throws IOException, ClassNotFoundException { + return unmarshallExchange(camelContext, new ByteArrayInputStream(buffer), deserializationFilter); } - public Exchange unmarshallExchange(CamelContext camelContext, InputStream inputStream) + public Exchange unmarshallExchange(CamelContext camelContext, InputStream inputStream, String deserializationFilter) throws IOException, ClassNotFoundException { - DefaultExchangeHolder pe = decode(camelContext, inputStream); + DefaultExchangeHolder pe = decode(camelContext, inputStream, deserializationFilter); Exchange answer = new DefaultExchange(camelContext); DefaultExchangeHolder.unmarshal(answer, pe); // restore the from endpoint @@ -100,12 +95,13 @@ private void encode(Object object, OutputStream bytesOut) throws IOException { } } - private DefaultExchangeHolder decode(CamelContext camelContext, InputStream bytesIn) + private DefaultExchangeHolder decode(CamelContext camelContext, InputStream bytesIn, String deserializationFilter) throws IOException, ClassNotFoundException { ObjectInputStream objectIn = null; Object obj = null; try { objectIn = new ClassLoadingAwareObjectInputStream(camelContext.getApplicationContextClassLoader(), bytesIn); + objectIn.setObjectInputFilter(ObjectInputFilter.Config.createFilter(deserializationFilter)); obj = objectIn.readObject(); } finally { IOHelper.close(objectIn);
components/camel-sql/src/test/java/org/apache/camel/processor/aggregate/jdbc/JdbcCamelCodecTest.java+55 −0 added@@ -0,0 +1,55 @@ +/* + * 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 org.apache.camel.processor.aggregate.jdbc; + +import java.io.*; + +import org.apache.camel.test.junit5.CamelTestSupport; +import org.junit.jupiter.api.Assertions; +import org.junit.jupiter.api.Test; +import org.malicious.example.Employee; + +public class JdbcCamelCodecTest extends CamelTestSupport { + + JdbcCamelCodec codec; + + @Override + protected void startCamelContext() throws Exception { + super.startCamelContext(); + codec = new JdbcCamelCodec(); + } + + @Test + public void shouldFailWithRejected() throws IOException, ClassNotFoundException { + Employee emp = new Employee("Mickey", "Mouse"); + + ByteArrayOutputStream baos = new ByteArrayOutputStream(); + ObjectOutputStream oos = new ObjectOutputStream(baos); + + oos.writeObject(emp); + + oos.flush(); + oos.close(); + + InputStream is = new ByteArrayInputStream(baos.toByteArray()); + InvalidClassException thrown = Assertions.assertThrows(InvalidClassException.class, () -> { + codec.unmarshallExchange(context, is, "java.**;org.apache.camel.**;!*"); + }); + + Assertions.assertEquals("filter status: REJECTED", thrown.getMessage()); + } +}
components/camel-sql/src/test/java/org/malicious/example/Employee.java+46 −0 added@@ -0,0 +1,46 @@ +/* + * 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 org.malicious.example; + +import java.io.Serializable; + +public class Employee implements Serializable { + + String name; + String surname; + + public Employee(String name, String surname) { + this.name = name; + this.surname = surname; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public String getSurname() { + return surname; + } + + public void setSurname(String surname) { + this.surname = surname; + } +}
19ac8f25761cCAMEL-20303 - Camel-Sql: Add ObjectInputFilter String pattern parameter in JdbcAggregationRepository to be used in unmarshall operations - Added docs (#12719)
1 file changed · +4 −0
components/camel-sql/src/main/docs/sql-component.adoc+4 −0 modified@@ -594,6 +594,10 @@ the `currentThread` one. The benefit is to be able to load classes exposed by other bundles. This allows the exchange body and headers to have custom types object references. +While deserializing it's important to notice that the decode function and the unmarshallExchange method will allow only all java packages and subpackages +and org.apache.camel packages and subpackages. The remaining classes will be blacklisted. So you'll need to change the filter in case of need. +This could be accomplished by changing the deserializationFilter field on the repository. + === Transaction A Spring `PlatformTransactionManager` is required to orchestrate
3d0b18166a14CAMEL-20303 - Camel-Sql: Add ObjectInputFilter String pattern parameter in JdbcAggregationRepository to be used in unmarshall operations - Added docs (#12718)
1 file changed · +4 −0
components/camel-sql/src/main/docs/sql-component.adoc+4 −0 modified@@ -594,6 +594,10 @@ the `currentThread` one. The benefit is to be able to load classes exposed by other bundles. This allows the exchange body and headers to have custom types object references. +While deserializing it's important to notice that the decode function and the unmarshallExchange method will allow only all java packages and subpackages +and org.apache.camel packages and subpackages. The remaining classes will be blacklisted. So you'll need to change the filter in case of need. +This could be accomplished by changing the deserializationFilter field on the repository. + === Transaction A Spring `PlatformTransactionManager` is required to orchestrate
30ef0af219f3CAMEL-20303 - Camel-Sql: Add ObjectInputFilter String pattern parameter in JdbcAggregationRepository to be used in unmarshall operations - Added docs (#12717)
1 file changed · +4 −0
components/camel-sql/src/main/docs/sql-component.adoc+4 −0 modified@@ -588,6 +588,10 @@ the `currentThread` one. The benefit is to be able to load classes exposed by other bundles. This allows the exchange body and headers to have custom types object references. +While deserializing it's important to notice that the decode function and the unmarshallExchange method will allow only all java packages and subpackages +and org.apache.camel packages and subpackages. The remaining classes will be blacklisted. So you'll need to change the filter in case of need. +This could be accomplished by changing the deserializationFilter field on the repository. + === Transaction A Spring `PlatformTransactionManager` is required to orchestrate
cdbc36ce8331CAMEL-20303 - Camel-Sql: Add ObjectInputFilter String pattern parameter in JdbcAggregationRepository to be used in unmarshall operations - Added migration docs and sql docs (#12716)
2 files changed · +8 −0
components/camel-sql/src/main/docs/sql-component.adoc+4 −0 modified@@ -588,6 +588,10 @@ the `currentThread` one. The benefit is to be able to load classes exposed by other bundles. This allows the exchange body and headers to have custom types object references. +While deserializing it's important to notice that the decode function and the unmarshallExchange method will allow only all java packages and subpackages +and org.apache.camel packages and subpackages. The remaining classes will be blacklisted. So you'll need to change the filter in case of need. +This could be accomplished by changing the deserializationFilter field on the repository. + === Transaction A Spring `PlatformTransactionManager` is required to orchestrate
docs/user-manual/modules/ROOT/pages/camel-4x-upgrade-guide-4_4.adoc+4 −0 modified@@ -118,6 +118,10 @@ useful examples of how you might need to change your code to be compatible with The component has been removed after deprecation in 4.3.0 +=== camel-sql + +The JdbcAggregationRepository now provides a deserializationFilter parameter. The default value for it is allowing all java packages and subpackages and all org.apache.camel packages and subpackages. If you plan to use particular classes and you want to expand the filter, you should change the value according to your needs. More details in CAMEL-20303. + == Camel Spring Boot === Auto Configuration
9fb66ee02463CAMEL-20303 - Camel-Sql: Add ObjectInputFilter String pattern parameter in JdbcAggregationRepository to be used in unmarshall operations (#12709)
4 files changed · +125 −13
components/camel-sql/src/main/java/org/apache/camel/processor/aggregate/jdbc/JdbcAggregationRepository.java+16 −1 modified@@ -94,6 +94,7 @@ public class JdbcAggregationRepository extends ServiceSupport private String deadLetterUri; private List<String> headersToStoreAsText; private boolean storeBodyAsText; + private String deserializationFilter = "java.**;org.apache.camel.**;!*"; /** * Creates an aggregation repository @@ -357,7 +358,7 @@ public Exchange doInTransaction(TransactionStatus status) { version = (long) versionObj; } - Exchange result = codec.unmarshallExchange(camelContext, marshalledExchange); + Exchange result = codec.unmarshallExchange(camelContext, marshalledExchange, deserializationFilter); result.setProperty(VERSION_PROPERTY, version); return result; @@ -626,6 +627,20 @@ public String getRepositoryNameCompleted() { return getRepositoryName() + "_completed"; } + public String getDeserializationFilter() { + return deserializationFilter; + } + + /** + * Sets a deserialization filter while reading Object from Aggregation Repository. By default the filter will allow + * all java packages and subpackages and all org.apache.camel packages and subpackages, while the remaining will be + * blacklisted and not deserialized. This parameter should be customized if you're using classes you trust to be + * deserialized. + */ + public void setDeserializationFilter(String deserializationFilter) { + this.deserializationFilter = deserializationFilter; + } + @Override protected void doInit() throws Exception { super.doInit();
components/camel-sql/src/main/java/org/apache/camel/processor/aggregate/jdbc/JdbcCamelCodec.java+8 −12 modified@@ -16,13 +16,7 @@ */ package org.apache.camel.processor.aggregate.jdbc; -import java.io.ByteArrayInputStream; -import java.io.ByteArrayOutputStream; -import java.io.IOException; -import java.io.InputStream; -import java.io.ObjectInputStream; -import java.io.ObjectOutputStream; -import java.io.OutputStream; +import java.io.*; import org.apache.camel.CamelContext; import org.apache.camel.Endpoint; @@ -74,13 +68,14 @@ public void marshallExchange( encode(pe, outputStream); } - public Exchange unmarshallExchange(CamelContext camelContext, byte[] buffer) throws IOException, ClassNotFoundException { - return unmarshallExchange(camelContext, new ByteArrayInputStream(buffer)); + public Exchange unmarshallExchange(CamelContext camelContext, byte[] buffer, String deserializationFilter) + throws IOException, ClassNotFoundException { + return unmarshallExchange(camelContext, new ByteArrayInputStream(buffer), deserializationFilter); } - public Exchange unmarshallExchange(CamelContext camelContext, InputStream inputStream) + public Exchange unmarshallExchange(CamelContext camelContext, InputStream inputStream, String deserializationFilter) throws IOException, ClassNotFoundException { - DefaultExchangeHolder pe = decode(camelContext, inputStream); + DefaultExchangeHolder pe = decode(camelContext, inputStream, deserializationFilter); Exchange answer = new DefaultExchange(camelContext); DefaultExchangeHolder.unmarshal(answer, pe); // restore the from endpoint @@ -100,12 +95,13 @@ private void encode(Object object, OutputStream bytesOut) throws IOException { } } - private DefaultExchangeHolder decode(CamelContext camelContext, InputStream bytesIn) + private DefaultExchangeHolder decode(CamelContext camelContext, InputStream bytesIn, String deserializationFilter) throws IOException, ClassNotFoundException { ObjectInputStream objectIn = null; Object obj = null; try { objectIn = new ClassLoadingAwareObjectInputStream(camelContext.getApplicationContextClassLoader(), bytesIn); + objectIn.setObjectInputFilter(ObjectInputFilter.Config.createFilter(deserializationFilter)); obj = objectIn.readObject(); } finally { IOHelper.close(objectIn);
components/camel-sql/src/test/java/org/apache/camel/processor/aggregate/jdbc/JdbcCamelCodecTest.java+55 −0 added@@ -0,0 +1,55 @@ +/* + * 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 org.apache.camel.processor.aggregate.jdbc; + +import java.io.*; + +import org.apache.camel.test.junit5.CamelTestSupport; +import org.junit.jupiter.api.Assertions; +import org.junit.jupiter.api.Test; +import org.malicious.example.Employee; + +public class JdbcCamelCodecTest extends CamelTestSupport { + + JdbcCamelCodec codec; + + @Override + protected void startCamelContext() throws Exception { + super.startCamelContext(); + codec = new JdbcCamelCodec(); + } + + @Test + public void shouldFailWithRejected() throws IOException, ClassNotFoundException { + Employee emp = new Employee("Mickey", "Mouse"); + + ByteArrayOutputStream baos = new ByteArrayOutputStream(); + ObjectOutputStream oos = new ObjectOutputStream(baos); + + oos.writeObject(emp); + + oos.flush(); + oos.close(); + + InputStream is = new ByteArrayInputStream(baos.toByteArray()); + InvalidClassException thrown = Assertions.assertThrows(InvalidClassException.class, () -> { + codec.unmarshallExchange(context, is, "java.**;org.apache.camel.**;!*"); + }); + + Assertions.assertEquals("filter status: REJECTED", thrown.getMessage()); + } +}
components/camel-sql/src/test/java/org/malicious/example/Employee.java+46 −0 added@@ -0,0 +1,46 @@ +/* + * 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 org.malicious.example; + +import java.io.Serializable; + +public class Employee implements Serializable { + + String name; + String surname; + + public Employee(String name, String surname) { + this.name = name; + this.surname = surname; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public String getSurname() { + return surname; + } + + public void setSurname(String surname) { + this.surname = surname; + } +}
c8538803432eCAMEL-20303 - Camel-Sql: Add ObjectInputFilter String pattern parameter in JdbcAggregationRepository to be used in unmarshall operations (#12708)
4 files changed · +125 −13
components/camel-sql/src/main/java/org/apache/camel/processor/aggregate/jdbc/JdbcAggregationRepository.java+16 −1 modified@@ -94,6 +94,7 @@ public class JdbcAggregationRepository extends ServiceSupport private String deadLetterUri; private List<String> headersToStoreAsText; private boolean storeBodyAsText; + private String deserializationFilter = "java.**;org.apache.camel.**;!*"; /** * Creates an aggregation repository @@ -357,7 +358,7 @@ public Exchange doInTransaction(TransactionStatus status) { version = (long) versionObj; } - Exchange result = codec.unmarshallExchange(camelContext, marshalledExchange); + Exchange result = codec.unmarshallExchange(camelContext, marshalledExchange, deserializationFilter); result.setProperty(VERSION_PROPERTY, version); return result; @@ -626,6 +627,20 @@ public String getRepositoryNameCompleted() { return getRepositoryName() + "_completed"; } + public String getDeserializationFilter() { + return deserializationFilter; + } + + /** + * Sets a deserialization filter while reading Object from Aggregation Repository. By default the filter will allow + * all java packages and subpackages and all org.apache.camel packages and subpackages, while the remaining will be + * blacklisted and not deserialized. This parameter should be customized if you're using classes you trust to be + * deserialized. + */ + public void setDeserializationFilter(String deserializationFilter) { + this.deserializationFilter = deserializationFilter; + } + @Override protected void doInit() throws Exception { super.doInit();
components/camel-sql/src/main/java/org/apache/camel/processor/aggregate/jdbc/JdbcCamelCodec.java+8 −12 modified@@ -16,13 +16,7 @@ */ package org.apache.camel.processor.aggregate.jdbc; -import java.io.ByteArrayInputStream; -import java.io.ByteArrayOutputStream; -import java.io.IOException; -import java.io.InputStream; -import java.io.ObjectInputStream; -import java.io.ObjectOutputStream; -import java.io.OutputStream; +import java.io.*; import org.apache.camel.CamelContext; import org.apache.camel.Endpoint; @@ -74,13 +68,14 @@ public void marshallExchange( encode(pe, outputStream); } - public Exchange unmarshallExchange(CamelContext camelContext, byte[] buffer) throws IOException, ClassNotFoundException { - return unmarshallExchange(camelContext, new ByteArrayInputStream(buffer)); + public Exchange unmarshallExchange(CamelContext camelContext, byte[] buffer, String deserializationFilter) + throws IOException, ClassNotFoundException { + return unmarshallExchange(camelContext, new ByteArrayInputStream(buffer), deserializationFilter); } - public Exchange unmarshallExchange(CamelContext camelContext, InputStream inputStream) + public Exchange unmarshallExchange(CamelContext camelContext, InputStream inputStream, String deserializationFilter) throws IOException, ClassNotFoundException { - DefaultExchangeHolder pe = decode(camelContext, inputStream); + DefaultExchangeHolder pe = decode(camelContext, inputStream, deserializationFilter); Exchange answer = new DefaultExchange(camelContext); DefaultExchangeHolder.unmarshal(answer, pe); // restore the from endpoint @@ -100,12 +95,13 @@ private void encode(Object object, OutputStream bytesOut) throws IOException { } } - private DefaultExchangeHolder decode(CamelContext camelContext, InputStream bytesIn) + private DefaultExchangeHolder decode(CamelContext camelContext, InputStream bytesIn, String deserializationFilter) throws IOException, ClassNotFoundException { ObjectInputStream objectIn = null; Object obj = null; try { objectIn = new ClassLoadingAwareObjectInputStream(camelContext.getApplicationContextClassLoader(), bytesIn); + objectIn.setObjectInputFilter(ObjectInputFilter.Config.createFilter(deserializationFilter)); obj = objectIn.readObject(); } finally { IOHelper.close(objectIn);
components/camel-sql/src/test/java/org/apache/camel/processor/aggregate/jdbc/JdbcCamelCodecTest.java+55 −0 added@@ -0,0 +1,55 @@ +/* + * 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 org.apache.camel.processor.aggregate.jdbc; + +import java.io.*; + +import org.apache.camel.test.junit5.CamelTestSupport; +import org.junit.jupiter.api.Assertions; +import org.junit.jupiter.api.Test; +import org.malicious.example.Employee; + +public class JdbcCamelCodecTest extends CamelTestSupport { + + JdbcCamelCodec codec; + + @Override + protected void startCamelContext() throws Exception { + super.startCamelContext(); + codec = new JdbcCamelCodec(); + } + + @Test + public void shouldFailWithRejected() throws IOException, ClassNotFoundException { + Employee emp = new Employee("Mickey", "Mouse"); + + ByteArrayOutputStream baos = new ByteArrayOutputStream(); + ObjectOutputStream oos = new ObjectOutputStream(baos); + + oos.writeObject(emp); + + oos.flush(); + oos.close(); + + InputStream is = new ByteArrayInputStream(baos.toByteArray()); + InvalidClassException thrown = Assertions.assertThrows(InvalidClassException.class, () -> { + codec.unmarshallExchange(context, is, "java.**;org.apache.camel.**;!*"); + }); + + Assertions.assertEquals("filter status: REJECTED", thrown.getMessage()); + } +}
components/camel-sql/src/test/java/org/malicious/example/Employee.java+46 −0 added@@ -0,0 +1,46 @@ +/* + * 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 org.malicious.example; + +import java.io.Serializable; + +public class Employee implements Serializable { + + String name; + String surname; + + public Employee(String name, String surname) { + this.name = name; + this.surname = surname; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public String getSurname() { + return surname; + } + + public void setSurname(String surname) { + this.surname = surname; + } +}
7c90d516ef23CAMEL-20303 - Camel-Sql: Add ObjectInputFilter String pattern parameter in JdbcAggregationRepository to be used in unmarshall operations (#12707)
4 files changed · +125 −13
components/camel-sql/src/main/java/org/apache/camel/processor/aggregate/jdbc/JdbcAggregationRepository.java+16 −1 modified@@ -94,6 +94,7 @@ public class JdbcAggregationRepository extends ServiceSupport private String deadLetterUri; private List<String> headersToStoreAsText; private boolean storeBodyAsText; + private String deserializationFilter = "java.**;org.apache.camel.**;!*"; /** * Creates an aggregation repository @@ -355,7 +356,7 @@ public Exchange doInTransaction(TransactionStatus status) { version = (long) versionObj; } - Exchange result = codec.unmarshallExchange(camelContext, marshalledExchange); + Exchange result = codec.unmarshallExchange(camelContext, marshalledExchange, deserializationFilter); result.setProperty(VERSION_PROPERTY, version); return result; @@ -621,6 +622,20 @@ public String getRepositoryNameCompleted() { return getRepositoryName() + "_completed"; } + public String getDeserializationFilter() { + return deserializationFilter; + } + + /** + * Sets a deserialization filter while reading Object from Aggregation Repository. By default the filter will allow + * all java packages and subpackages and all org.apache.camel packages and subpackages, while the remaining will be + * blacklisted and not deserialized. This parameter should be customized if you're using classes you trust to be + * deserialized. + */ + public void setDeserializationFilter(String deserializationFilter) { + this.deserializationFilter = deserializationFilter; + } + @Override protected void doInit() throws Exception { super.doInit();
components/camel-sql/src/main/java/org/apache/camel/processor/aggregate/jdbc/JdbcCamelCodec.java+8 −12 modified@@ -16,13 +16,7 @@ */ package org.apache.camel.processor.aggregate.jdbc; -import java.io.ByteArrayInputStream; -import java.io.ByteArrayOutputStream; -import java.io.IOException; -import java.io.InputStream; -import java.io.ObjectInputStream; -import java.io.ObjectOutputStream; -import java.io.OutputStream; +import java.io.*; import org.apache.camel.CamelContext; import org.apache.camel.Endpoint; @@ -73,13 +67,14 @@ public void marshallExchange( encode(pe, outputStream); } - public Exchange unmarshallExchange(CamelContext camelContext, byte[] buffer) throws IOException, ClassNotFoundException { - return unmarshallExchange(camelContext, new ByteArrayInputStream(buffer)); + public Exchange unmarshallExchange(CamelContext camelContext, byte[] buffer, String deserializationFilter) + throws IOException, ClassNotFoundException { + return unmarshallExchange(camelContext, new ByteArrayInputStream(buffer), deserializationFilter); } - public Exchange unmarshallExchange(CamelContext camelContext, InputStream inputStream) + public Exchange unmarshallExchange(CamelContext camelContext, InputStream inputStream, String deserializationFilter) throws IOException, ClassNotFoundException { - DefaultExchangeHolder pe = decode(camelContext, inputStream); + DefaultExchangeHolder pe = decode(camelContext, inputStream, deserializationFilter); Exchange answer = new DefaultExchange(camelContext); DefaultExchangeHolder.unmarshal(answer, pe); // restore the from endpoint @@ -99,12 +94,13 @@ private void encode(Object object, OutputStream bytesOut) throws IOException { } } - private DefaultExchangeHolder decode(CamelContext camelContext, InputStream bytesIn) + private DefaultExchangeHolder decode(CamelContext camelContext, InputStream bytesIn, String deserializationFilter) throws IOException, ClassNotFoundException { ObjectInputStream objectIn = null; Object obj = null; try { objectIn = new ClassLoadingAwareObjectInputStream(camelContext.getApplicationContextClassLoader(), bytesIn); + objectIn.setObjectInputFilter(ObjectInputFilter.Config.createFilter(deserializationFilter)); obj = objectIn.readObject(); } finally { IOHelper.close(objectIn);
components/camel-sql/src/test/java/org/apache/camel/processor/aggregate/jdbc/JdbcCamelCodecTest.java+55 −0 added@@ -0,0 +1,55 @@ +/* + * 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 org.apache.camel.processor.aggregate.jdbc; + +import java.io.*; + +import org.apache.camel.test.junit5.CamelTestSupport; +import org.junit.jupiter.api.Assertions; +import org.junit.jupiter.api.Test; +import org.malicious.example.Employee; + +public class JdbcCamelCodecTest extends CamelTestSupport { + + JdbcCamelCodec codec; + + @Override + protected void startCamelContext() throws Exception { + super.startCamelContext(); + codec = new JdbcCamelCodec(); + } + + @Test + public void shouldFailWithRejected() throws IOException, ClassNotFoundException { + Employee emp = new Employee("Mickey", "Mouse"); + + ByteArrayOutputStream baos = new ByteArrayOutputStream(); + ObjectOutputStream oos = new ObjectOutputStream(baos); + + oos.writeObject(emp); + + oos.flush(); + oos.close(); + + InputStream is = new ByteArrayInputStream(baos.toByteArray()); + InvalidClassException thrown = Assertions.assertThrows(InvalidClassException.class, () -> { + codec.unmarshallExchange(context, is, "java.**;org.apache.camel.**;!*"); + }); + + Assertions.assertEquals("filter status: REJECTED", thrown.getMessage()); + } +}
components/camel-sql/src/test/java/org/malicious/example/Employee.java+46 −0 added@@ -0,0 +1,46 @@ +/* + * 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 org.malicious.example; + +import java.io.Serializable; + +public class Employee implements Serializable { + + String name; + String surname; + + public Employee(String name, String surname) { + this.name = name; + this.surname = surname; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public String getSurname() { + return surname; + } + + public void setSurname(String surname) { + this.surname = surname; + } +}
c23df082b024CAMEL-20303 - Camel-Sql: Add ObjectInputFilter String pattern parameter in JdbcAggregationRepository to be used in unmarshall operations (#12706)
4 files changed · +125 −13
components/camel-sql/src/main/java/org/apache/camel/processor/aggregate/jdbc/JdbcAggregationRepository.java+16 −1 modified@@ -94,6 +94,7 @@ public class JdbcAggregationRepository extends ServiceSupport private String deadLetterUri; private List<String> headersToStoreAsText; private boolean storeBodyAsText; + private String deserializationFilter = "java.**;org.apache.camel.**;!*"; /** * Creates an aggregation repository @@ -355,7 +356,7 @@ public Exchange doInTransaction(TransactionStatus status) { version = (long) versionObj; } - Exchange result = codec.unmarshallExchange(camelContext, marshalledExchange); + Exchange result = codec.unmarshallExchange(camelContext, marshalledExchange, deserializationFilter); result.setProperty(VERSION_PROPERTY, version); return result; @@ -621,6 +622,20 @@ public String getRepositoryNameCompleted() { return getRepositoryName() + "_completed"; } + public String getDeserializationFilter() { + return deserializationFilter; + } + + /** + * Sets a deserialization filter while reading Object from Aggregation Repository. By default the filter will allow + * all java packages and subpackages and all org.apache.camel packages and subpackages, while the remaining will be + * blacklisted and not deserialized. This parameter should be customized if you're using classes you trust to be + * deserialized. + */ + public void setDeserializationFilter(String deserializationFilter) { + this.deserializationFilter = deserializationFilter; + } + @Override protected void doInit() throws Exception { super.doInit();
components/camel-sql/src/main/java/org/apache/camel/processor/aggregate/jdbc/JdbcCamelCodec.java+8 −12 modified@@ -16,13 +16,7 @@ */ package org.apache.camel.processor.aggregate.jdbc; -import java.io.ByteArrayInputStream; -import java.io.ByteArrayOutputStream; -import java.io.IOException; -import java.io.InputStream; -import java.io.ObjectInputStream; -import java.io.ObjectOutputStream; -import java.io.OutputStream; +import java.io.*; import org.apache.camel.CamelContext; import org.apache.camel.Endpoint; @@ -73,13 +67,14 @@ public void marshallExchange( encode(pe, outputStream); } - public Exchange unmarshallExchange(CamelContext camelContext, byte[] buffer) throws IOException, ClassNotFoundException { - return unmarshallExchange(camelContext, new ByteArrayInputStream(buffer)); + public Exchange unmarshallExchange(CamelContext camelContext, byte[] buffer, String deserializationFilter) + throws IOException, ClassNotFoundException { + return unmarshallExchange(camelContext, new ByteArrayInputStream(buffer), deserializationFilter); } - public Exchange unmarshallExchange(CamelContext camelContext, InputStream inputStream) + public Exchange unmarshallExchange(CamelContext camelContext, InputStream inputStream, String deserializationFilter) throws IOException, ClassNotFoundException { - DefaultExchangeHolder pe = decode(camelContext, inputStream); + DefaultExchangeHolder pe = decode(camelContext, inputStream, deserializationFilter); Exchange answer = new DefaultExchange(camelContext); DefaultExchangeHolder.unmarshal(answer, pe); // restore the from endpoint @@ -99,12 +94,13 @@ private void encode(Object object, OutputStream bytesOut) throws IOException { } } - private DefaultExchangeHolder decode(CamelContext camelContext, InputStream bytesIn) + private DefaultExchangeHolder decode(CamelContext camelContext, InputStream bytesIn, String deserializationFilter) throws IOException, ClassNotFoundException { ObjectInputStream objectIn = null; Object obj = null; try { objectIn = new ClassLoadingAwareObjectInputStream(camelContext.getApplicationContextClassLoader(), bytesIn); + objectIn.setObjectInputFilter(ObjectInputFilter.Config.createFilter(deserializationFilter)); obj = objectIn.readObject(); } finally { IOHelper.close(objectIn);
components/camel-sql/src/test/java/org/apache/camel/processor/aggregate/jdbc/JdbcCamelCodecTest.java+55 −0 added@@ -0,0 +1,55 @@ +/* + * 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 org.apache.camel.processor.aggregate.jdbc; + +import java.io.*; + +import org.apache.camel.test.junit5.CamelTestSupport; +import org.junit.jupiter.api.Assertions; +import org.junit.jupiter.api.Test; +import org.malicious.example.Employee; + +public class JdbcCamelCodecTest extends CamelTestSupport { + + JdbcCamelCodec codec; + + @Override + protected void startCamelContext() throws Exception { + super.startCamelContext(); + codec = new JdbcCamelCodec(); + } + + @Test + public void shouldFailWithRejected() throws IOException, ClassNotFoundException { + Employee emp = new Employee("Mickey", "Mouse"); + + ByteArrayOutputStream baos = new ByteArrayOutputStream(); + ObjectOutputStream oos = new ObjectOutputStream(baos); + + oos.writeObject(emp); + + oos.flush(); + oos.close(); + + InputStream is = new ByteArrayInputStream(baos.toByteArray()); + InvalidClassException thrown = Assertions.assertThrows(InvalidClassException.class, () -> { + codec.unmarshallExchange(context, is, "java.**;org.apache.camel.**;!*"); + }); + + Assertions.assertEquals("filter status: REJECTED", thrown.getMessage()); + } +}
components/camel-sql/src/test/java/org/malicious/example/Employee.java+46 −0 added@@ -0,0 +1,46 @@ +/* + * 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 org.malicious.example; + +import java.io.Serializable; + +public class Employee implements Serializable { + + String name; + String surname; + + public Employee(String name, String surname) { + this.name = name; + this.surname = surname; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public String getSurname() { + return surname; + } + + public void setSurname(String surname) { + this.surname = surname; + } +}
Vulnerability mechanics
Root cause
"Missing ObjectInputFilter on deserialization in JdbcCamelCodec allows arbitrary class deserialization from the JDBC aggregation repository."
Attack vector
An attacker who can write malicious serialized Java objects into the JDBC aggregation repository (for example, by injecting crafted data into a Camel exchange that gets persisted) can trigger arbitrary deserialization when the repository reads back the stored exchange. The `JdbcCamelCodec.decode()` method previously called `objectIn.readObject()` with no `ObjectInputFilter`, so any class on the classpath could be deserialized. This is a classic untrusted deserialization flaw [CWE-502]. The attacker does not need direct network access to the repository if they can influence the data stored through Camel route inputs.
Affected code
The vulnerability resides in `JdbcCamelCodec.java` within the `decode()` method, which deserializes Java objects from a JDBC aggregation repository without any input filtering. The `JdbcAggregationRepository.java` class calls `codec.unmarshallExchange()` without passing a deserialization filter, allowing arbitrary class deserialization. The patch modifies `JdbcCamelCodec.java` to accept a `deserializationFilter` parameter and applies it via `ObjectInputFilter.Config.createFilter()` on the `ObjectInputStream`. The `JdbcAggregationRepository.java` is updated to store and pass a default filter pattern `"java.**;org.apache.camel.**;!*"`.
What the fix does
The patch adds a `deserializationFilter` string parameter to `JdbcAggregationRepository` (defaulting to `"java.**;org.apache.camel.**;!*"`) and passes it through to `JdbcCamelCodec.unmarshallExchange()` and then to `decode()`. Inside `decode()`, the line `objectIn.setObjectInputFilter(ObjectInputFilter.Config.createFilter(deserializationFilter))` is added before `objectIn.readObject()`. This applies a Java `ObjectInputFilter` that rejects deserialization of any class not in the `java.**` or `org.apache.camel.**` package hierarchies. The fix closes the vulnerability by ensuring only trusted classes can be deserialized from the repository, preventing arbitrary code execution via malicious serialized payloads [patch_id=1640391].
Preconditions
- inputThe attacker must be able to write serialized Java objects into the JDBC aggregation repository used by Camel's SQL component.
- configThe application must use JdbcAggregationRepository to persist and later deserialize Camel exchanges.
Generated on May 23, 2026. Inputs: CWE entries + fix-commit diffs from this CVE's patches. Citations validated against bundle.
References
13- github.com/advisories/GHSA-36xr-4x2f-cfj9ghsaADVISORY
- lists.apache.org/thread/3dko781dy2gy5l3fs48p56fgp429yb0fghsavendor-advisoryWEB
- nvd.nist.gov/vuln/detail/CVE-2024-22369ghsaADVISORY
- github.com/apache/camel/pull/12706ghsaWEB
- github.com/apache/camel/pull/12707ghsaWEB
- github.com/apache/camel/pull/12708ghsaWEB
- github.com/apache/camel/pull/12709ghsaWEB
- github.com/apache/camel/pull/12716ghsaWEB
- github.com/apache/camel/pull/12717ghsaWEB
- github.com/apache/camel/pull/12718ghsaWEB
- github.com/apache/camel/pull/12719ghsaWEB
- github.com/apache/camel/pull/12789ghsaWEB
- issues.apache.org/jira/browse/CAMEL-20303ghsaWEB
News mentions
0No linked articles in our index yet.