This is an automated email from the ASF dual-hosted git repository.
jbonofre pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-karaf.git
The following commit(s) were added to refs/heads/main by this push:
new f84395a8e feat(#593): Add camel-dsl-support and camel-xml-io-dsl
bundles and features (#688)
f84395a8e is described below
commit f84395a8e8288653c80d120d0631297dee7d9b78
Author: JB Onofré <[email protected]>
AuthorDate: Thu Mar 12 15:50:20 2026 +0100
feat(#593): Add camel-dsl-support and camel-xml-io-dsl bundles and features
(#688)
---
components/camel-dsl-support/pom.xml | 88 ++++++++++++++++++++++++++++
components/camel-xml-io-dsl/pom.xml | 88 ++++++++++++++++++++++++++++
components/pom.xml | 2 +
features/src/main/feature/camel-features.xml | 9 +++
4 files changed, 187 insertions(+)
diff --git a/components/camel-dsl-support/pom.xml
b/components/camel-dsl-support/pom.xml
new file mode 100644
index 000000000..2cb0bd207
--- /dev/null
+++ b/components/camel-dsl-support/pom.xml
@@ -0,0 +1,88 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+
+ 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.
+
+-->
+<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
https://maven.apache.org/xsd/maven-4.0.0.xsd">
+
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.apache.camel.karaf</groupId>
+ <artifactId>camel-karaf-components</artifactId>
+ <version>4.14.5-SNAPSHOT</version>
+ <relativePath>../pom.xml</relativePath>
+ </parent>
+
+ <artifactId>camel-dsl-support</artifactId>
+ <packaging>bundle</packaging>
+ <name>Apache Camel :: Karaf :: Components :: DSL Support</name>
+
+ <properties>
+ <camel.osgi.export>
+ org.apache.camel*;version=${camel-version}
+ </camel.osgi.export>
+ <camel.osgi.import>
+ *
+ </camel.osgi.import>
+ </properties>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.camel</groupId>
+ <artifactId>camel-dsl-support</artifactId>
+ <version>${camel-version}</version>
+ <exclusions>
+ <exclusion>
+ <groupId>org.apache.camel</groupId>
+ <artifactId>*</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ </dependencies>
+
+ <build>
+ <resources>
+ <resource>
+ <directory>../../src/main/resources</directory>
+ <filtering>false</filtering>
+ </resource>
+ </resources>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-shade-plugin</artifactId>
+ <executions>
+ <execution>
+ <phase>package</phase>
+ <goals>
+ <goal>shade</goal>
+ </goals>
+ <configuration>
+ <artifactSet>
+ <includes>
+
<include>org.apache.camel:camel-dsl-support</include>
+ </includes>
+ </artifactSet>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+
+</project>
diff --git a/components/camel-xml-io-dsl/pom.xml
b/components/camel-xml-io-dsl/pom.xml
new file mode 100644
index 000000000..510ca3fe9
--- /dev/null
+++ b/components/camel-xml-io-dsl/pom.xml
@@ -0,0 +1,88 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+
+ 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.
+
+-->
+<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
https://maven.apache.org/xsd/maven-4.0.0.xsd">
+
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.apache.camel.karaf</groupId>
+ <artifactId>camel-karaf-components</artifactId>
+ <version>4.14.5-SNAPSHOT</version>
+ <relativePath>../pom.xml</relativePath>
+ </parent>
+
+ <artifactId>camel-xml-io-dsl</artifactId>
+ <packaging>bundle</packaging>
+ <name>Apache Camel :: Karaf :: Components :: XML IO DSL</name>
+
+ <properties>
+ <camel.osgi.export>
+ org.apache.camel*;version=${camel-version}
+ </camel.osgi.export>
+ <camel.osgi.import>
+ *
+ </camel.osgi.import>
+ </properties>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.camel</groupId>
+ <artifactId>camel-xml-io-dsl</artifactId>
+ <version>${camel-version}</version>
+ <exclusions>
+ <exclusion>
+ <groupId>org.apache.camel</groupId>
+ <artifactId>*</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ </dependencies>
+
+ <build>
+ <resources>
+ <resource>
+ <directory>../../src/main/resources</directory>
+ <filtering>false</filtering>
+ </resource>
+ </resources>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-shade-plugin</artifactId>
+ <executions>
+ <execution>
+ <phase>package</phase>
+ <goals>
+ <goal>shade</goal>
+ </goals>
+ <configuration>
+ <artifactSet>
+ <includes>
+
<include>org.apache.camel:camel-xml-io-dsl</include>
+ </includes>
+ </artifactSet>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+
+</project>
diff --git a/components/pom.xml b/components/pom.xml
index e47da870b..a97f01318 100644
--- a/components/pom.xml
+++ b/components/pom.xml
@@ -92,6 +92,7 @@
<module>camel-disruptor</module>
<module>camel-dns</module>
<module>camel-docker</module>
+ <module>camel-dsl-support</module>
<module>camel-drill</module>
<module>camel-dropbox</module>
<module>camel-dynamic-router</module>
@@ -321,6 +322,7 @@
<module>camel-workday</module>
<module>camel-xchange</module>
<module>camel-xj</module>
+ <module>camel-xml-io-dsl</module>
<module>camel-xmlsecurity</module>
<module>camel-xmpp</module>
<module>camel-xpath</module>
diff --git a/features/src/main/feature/camel-features.xml
b/features/src/main/feature/camel-features.xml
index 4e9e6e27c..c9e7eaca5 100644
--- a/features/src/main/feature/camel-features.xml
+++ b/features/src/main/feature/camel-features.xml
@@ -1124,6 +1124,10 @@
<bundle
dependency='true'>wrap:mvn:com.carrotsearch/hppc/${auto-detect-version}</bundle>
<bundle>mvn:org.apache.camel.karaf/camel-drill/${project.version}</bundle>
</feature>
+ <feature name='camel-dsl-support' version='${project.version}'
start-level='50'>
+ <feature version='${camel-osgi-version-range}'>camel-core</feature>
+
<bundle>mvn:org.apache.camel.karaf/camel-dsl-support/${project.version}</bundle>
+ </feature>
<feature name='camel-dropbox' version='${project.version}'
start-level='50'>
<feature version='${camel-osgi-version-range}'>camel-core</feature>
<feature version="[6,7)">jakarta-servlet</feature>
@@ -3341,6 +3345,11 @@ Chain 2:
<bundle
dependency='true'>wrap:mvn:org.xmlresolver/xmlresolver/${auto-detect-version}</bundle>
<bundle>mvn:org.apache.camel.karaf/camel-xslt-saxon/${project.version}</bundle>
</feature>
+ <feature name='camel-xml-io-dsl' version='${project.version}'
start-level='50'>
+ <feature version='${camel-osgi-version-range}'>camel-core</feature>
+ <feature
version='${camel-osgi-version-range}'>camel-dsl-support</feature>
+
<bundle>mvn:org.apache.camel.karaf/camel-xml-io-dsl/${project.version}</bundle>
+ </feature>
<feature name='camel-yaml-dsl' version='${project.version}'
start-level='50'>
<feature version='${camel-osgi-version-range}'>camel-core</feature>
<bundle
dependency='true'>mvn:org.snakeyaml/snakeyaml-engine/${snakeyaml-engine-version}</bundle>