Skip to content

Commit d4c2678

Browse files
committed
Upgrade to Camel 4.18.0
1 parent 83dc287 commit d4c2678

571 files changed

Lines changed: 4061 additions & 749 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

components/camel-activemq/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<parent>
2525
<groupId>org.apache.camel.karaf</groupId>
2626
<artifactId>camel-karaf-components</artifactId>
27-
<version>4.14.6-SNAPSHOT</version>
27+
<version>4.18.0-SNAPSHOT</version>
2828
<relativePath>../pom.xml</relativePath>
2929
</parent>
3030

components/camel-activemq6/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<parent>
2525
<groupId>org.apache.camel.karaf</groupId>
2626
<artifactId>camel-karaf-components</artifactId>
27-
<version>4.14.6-SNAPSHOT</version>
27+
<version>4.18.0-SNAPSHOT</version>
2828
<relativePath>../pom.xml</relativePath>
2929
</parent>
3030

components/camel-ai/camel-chatscript/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<parent>
2525
<groupId>org.apache.camel.karaf</groupId>
2626
<artifactId>camel-ai-parent</artifactId>
27-
<version>4.14.6-SNAPSHOT</version>
27+
<version>4.18.0-SNAPSHOT</version>
2828
<relativePath>../pom.xml</relativePath>
2929
</parent>
3030

components/camel-ai/camel-djl/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<parent>
2525
<groupId>org.apache.camel.karaf</groupId>
2626
<artifactId>camel-ai-parent</artifactId>
27-
<version>4.14.6-SNAPSHOT</version>
27+
<version>4.18.0-SNAPSHOT</version>
2828
<relativePath>../pom.xml</relativePath>
2929
</parent>
3030

Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
4+
Licensed to the Apache Software Foundation (ASF) under one or more
5+
contributor license agreements. See the NOTICE file distributed with
6+
this work for additional information regarding copyright ownership.
7+
The ASF licenses this file to You under the Apache License, Version 2.0
8+
(the "License"); you may not use this file except in compliance with
9+
the License. You may obtain a copy of the License at
10+
11+
http://www.apache.org/licenses/LICENSE-2.0
12+
13+
Unless required by applicable law or agreed to in writing, software
14+
distributed under the License is distributed on an "AS IS" BASIS,
15+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16+
See the License for the specific language governing permissions and
17+
limitations under the License.
18+
19+
-->
20+
<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">
21+
22+
<modelVersion>4.0.0</modelVersion>
23+
24+
<parent>
25+
<groupId>org.apache.camel.karaf</groupId>
26+
<artifactId>camel-ai-parent</artifactId>
27+
<version>4.18.0-SNAPSHOT</version>
28+
<relativePath>../pom.xml</relativePath>
29+
</parent>
30+
31+
<artifactId>camel-docling</artifactId>
32+
<packaging>bundle</packaging>
33+
<name>Apache Camel :: Karaf :: Components :: Ai :: Docling</name>
34+
35+
<properties>
36+
<camel.osgi.export>
37+
org.apache.camel*;version=${camel-version}
38+
</camel.osgi.export>
39+
<camel.osgi.import>
40+
*
41+
</camel.osgi.import>
42+
</properties>
43+
44+
<dependencies>
45+
<dependency>
46+
<groupId>org.apache.camel</groupId>
47+
<artifactId>camel-docling</artifactId>
48+
<version>${camel-version}</version>
49+
<exclusions>
50+
<exclusion>
51+
<groupId>org.apache.camel</groupId>
52+
<artifactId>*</artifactId>
53+
</exclusion>
54+
</exclusions>
55+
</dependency>
56+
</dependencies>
57+
58+
<build>
59+
<plugins>
60+
<plugin>
61+
<groupId>org.apache.maven.plugins</groupId>
62+
<artifactId>maven-shade-plugin</artifactId>
63+
<executions>
64+
<execution>
65+
<phase>package</phase>
66+
<goals>
67+
<goal>shade</goal>
68+
</goals>
69+
<configuration>
70+
<artifactSet>
71+
<includes>
72+
<include>org.apache.camel:camel-docling</include>
73+
</includes>
74+
</artifactSet>
75+
</configuration>
76+
</execution>
77+
</executions>
78+
</plugin>
79+
</plugins>
80+
</build>
81+
</project>

components/camel-ai/camel-kserve/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<parent>
2525
<groupId>org.apache.camel.karaf</groupId>
2626
<artifactId>camel-ai-parent</artifactId>
27-
<version>4.14.6-SNAPSHOT</version>
27+
<version>4.18.0-SNAPSHOT</version>
2828
<relativePath>../pom.xml</relativePath>
2929
</parent>
3030

components/camel-ai/camel-langchain4j-agent/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<parent>
2525
<groupId>org.apache.camel.karaf</groupId>
2626
<artifactId>camel-ai-parent</artifactId>
27-
<version>4.14.6-SNAPSHOT</version>
27+
<version>4.18.0-SNAPSHOT</version>
2828
<relativePath>../pom.xml</relativePath>
2929
</parent>
3030

components/camel-ai/camel-langchain4j-chat/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<parent>
2525
<groupId>org.apache.camel.karaf</groupId>
2626
<artifactId>camel-ai-parent</artifactId>
27-
<version>4.14.6-SNAPSHOT</version>
27+
<version>4.18.0-SNAPSHOT</version>
2828
<relativePath>../pom.xml</relativePath>
2929
</parent>
3030

components/camel-ai/camel-langchain4j-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<parent>
2525
<groupId>org.apache.camel.karaf</groupId>
2626
<artifactId>camel-ai-parent</artifactId>
27-
<version>4.14.6-SNAPSHOT</version>
27+
<version>4.18.0-SNAPSHOT</version>
2828
<relativePath>../pom.xml</relativePath>
2929
</parent>
3030

components/camel-ai/camel-langchain4j-embeddings/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<parent>
2525
<groupId>org.apache.camel.karaf</groupId>
2626
<artifactId>camel-ai-parent</artifactId>
27-
<version>4.14.6-SNAPSHOT</version>
27+
<version>4.18.0-SNAPSHOT</version>
2828
<relativePath>../pom.xml</relativePath>
2929
</parent>
3030

0 commit comments

Comments
 (0)