This is an automated email from the ASF dual-hosted git repository.
fmariani pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git
The following commit(s) were added to refs/heads/main by this push:
new 63a509a6f52 camel-infinispan-starter: Add
org.infinispan:infinispan-api dependency
63a509a6f52 is described below
commit 63a509a6f52fd507baff5d356869187a71104835
Author: Claudio Miranda <[email protected]>
AuthorDate: Thu Apr 3 17:42:45 2025 +0100
camel-infinispan-starter: Add org.infinispan:infinispan-api dependency
Before the BOM import the infinispan-api was in test scope, but withe BOM
import
the infinispan-api is compile scope
clients that imports this starter fails with CNFE of
org.infinispan.api.annotations.indexing.option.VectorSimilarity
---
components-starter/camel-infinispan-starter/pom.xml | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/components-starter/camel-infinispan-starter/pom.xml
b/components-starter/camel-infinispan-starter/pom.xml
index e7489c2ebad..36070da74c1 100644
--- a/components-starter/camel-infinispan-starter/pom.xml
+++ b/components-starter/camel-infinispan-starter/pom.xml
@@ -67,6 +67,10 @@
</exclusion>
</exclusions>
</dependency>
+ <dependency>
+ <groupId>org.infinispan</groupId>
+ <artifactId>infinispan-api</artifactId>
+ </dependency>
<dependency>
<groupId>org.awaitility</groupId>
<artifactId>awaitility</artifactId>