This is an automated email from the ASF dual-hosted git repository. tcunning pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
commit f4818e640db23bc96464fb1b2897b93919948c60 Author: Tom Cunningham <[email protected]> AuthorDate: Fri Feb 20 10:06:53 2026 -0500 Add camel-olingo4-api dependency to prevent camel-api-component-maven-plugin in CI --- components/camel-olingo4/camel-olingo4-component/pom.xml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/components/camel-olingo4/camel-olingo4-component/pom.xml b/components/camel-olingo4/camel-olingo4-component/pom.xml index f67de965f137..4ff215c50411 100644 --- a/components/camel-olingo4/camel-olingo4-component/pom.xml +++ b/components/camel-olingo4/camel-olingo4-component/pom.xml @@ -51,6 +51,15 @@ <artifactId>camel-olingo4-api</artifactId> <version>${project.version}</version> </dependency> + <!-- Component API source to read API signatures --> + <dependency> + <groupId>org.apache.camel</groupId> + <artifactId>camel-olingo4-api</artifactId> + <version>${project.version}</version> + <classifier>sources</classifier> + <scope>provided</scope> + <optional>true</optional> + </dependency> <dependency> <groupId>org.apache.olingo</groupId> <artifactId>odata-client-api</artifactId>
