diff --git a/CLAUDE.md b/CLAUDE.md index 0595fd35..577f1be0 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -12,6 +12,22 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co - LangChain4j 1.x - Maven, Spotless (Palantir Java Format), JUnit 5, AssertJ, Testcontainers, Citrus Test Framework +## Branching and Versioning Strategy + +Forage uses **major.minor.micro** versioning (`1.4.0`, `1.4.1`, `1.5.0`, etc.). + +| Branch | Tracks | Version | Description | +|--------|--------|---------|-------------| +| `main` | Apache Camel LTS | `1.4.x` | Follows the latest Camel LTS release (currently 4.18.x). Micro bumps (`1.4.0` → `1.4.1` → ...) for each release. | +| `camel-latest` | Latest Apache Camel | `1.5.x` | Follows the latest Camel release (currently 4.20.x) with corresponding Spring Boot and Quarkus versions. | + +### Backporting + +When making changes (features, bug fixes, etc.), **always investigate whether the change needs backporting** to the other branch: +- A fix on `main` may also apply to `camel-latest` and vice versa. +- After completing work on one branch, check if the same change is relevant to the other branch and create a backport PR if needed. +- Use `/oss-backport-pr` to automate backporting when applicable. + ## Build Commands ```bash @@ -211,10 +227,3 @@ See **[docs/adding-modules.md](docs/adding-modules.md)** for the complete guide - Properties files named `.properties` in resources - **Special cases:** `FlipRoutePolicyConfig` and `ScheduleRoutePolicyConfig` extend `AbstractConfig` and follow the standard configuration pattern. Their ConfigEntries classes (`FlipRoutePolicyConfigEntries`, `ScheduleRoutePolicyConfigEntries`) use a dynamic ConfigModule pattern with factory methods (e.g., `pairedRoute(prefix)`) instead of static fields + `initModules()`, because property names are route-ID-dependent. -## Active Technologies -- Java 17+ + Apache Camel 4.16+, camel-api (RoutePolicyFactory, RoutePolicy) (001-route-policies) -- N/A (stateless policy configuration) (001-route-policies) -- Java 17+ + Apache Camel 4.16+ (camel-api: RoutePolicyFactory, RoutePolicy, RoutePolicySupport) (001-route-policies) - -## Recent Changes -- 001-route-policies: Added Java 17+ + Apache Camel 4.16+, camel-api (RoutePolicyFactory, RoutePolicy) diff --git a/core/forage-catalog-model/pom.xml b/core/forage-catalog-model/pom.xml index 4a03fcc8..49482cc4 100644 --- a/core/forage-catalog-model/pom.xml +++ b/core/forage-catalog-model/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage core - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-catalog-model diff --git a/core/forage-catalog-reader/pom.xml b/core/forage-catalog-reader/pom.xml index 4344af38..20682b30 100644 --- a/core/forage-catalog-reader/pom.xml +++ b/core/forage-catalog-reader/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage core - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-catalog-reader diff --git a/core/forage-core-ai/pom.xml b/core/forage-core-ai/pom.xml index 4657b96b..8d2be708 100644 --- a/core/forage-core-ai/pom.xml +++ b/core/forage-core-ai/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage core - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-core-ai diff --git a/core/forage-core-cloud/pom.xml b/core/forage-core-cloud/pom.xml index 7c49bf09..b7171754 100644 --- a/core/forage-core-cloud/pom.xml +++ b/core/forage-core-cloud/pom.xml @@ -4,7 +4,7 @@ io.kaoto.forage core - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-core-cloud diff --git a/core/forage-core-common/pom.xml b/core/forage-core-common/pom.xml index b30ad365..deea9b62 100644 --- a/core/forage-core-common/pom.xml +++ b/core/forage-core-common/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage core - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-core-common diff --git a/core/forage-core-cxf/pom.xml b/core/forage-core-cxf/pom.xml index c76b8b29..aa0543ca 100644 --- a/core/forage-core-cxf/pom.xml +++ b/core/forage-core-cxf/pom.xml @@ -4,7 +4,7 @@ io.kaoto.forage core - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-core-cxf diff --git a/core/forage-core-guardrails/pom.xml b/core/forage-core-guardrails/pom.xml index 150bbf4f..c302cf09 100644 --- a/core/forage-core-guardrails/pom.xml +++ b/core/forage-core-guardrails/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage core - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-core-guardrails diff --git a/core/forage-core-jdbc/pom.xml b/core/forage-core-jdbc/pom.xml index cf1a31a9..79ad23fb 100644 --- a/core/forage-core-jdbc/pom.xml +++ b/core/forage-core-jdbc/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage core - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-core-jdbc diff --git a/core/forage-core-jms/pom.xml b/core/forage-core-jms/pom.xml index d89c3d18..c0744723 100644 --- a/core/forage-core-jms/pom.xml +++ b/core/forage-core-jms/pom.xml @@ -4,7 +4,7 @@ io.kaoto.forage core - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-core-jms diff --git a/core/forage-core-jta/pom.xml b/core/forage-core-jta/pom.xml index b661e236..e39779aa 100644 --- a/core/forage-core-jta/pom.xml +++ b/core/forage-core-jta/pom.xml @@ -4,7 +4,7 @@ io.kaoto.forage core - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-core-jta diff --git a/core/forage-core-messaging/pom.xml b/core/forage-core-messaging/pom.xml index 5d84098c..d09a9bf2 100644 --- a/core/forage-core-messaging/pom.xml +++ b/core/forage-core-messaging/pom.xml @@ -4,7 +4,7 @@ io.kaoto.forage core - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-core-messaging diff --git a/core/forage-core-policy/pom.xml b/core/forage-core-policy/pom.xml index e8634bf5..52b48d20 100644 --- a/core/forage-core-policy/pom.xml +++ b/core/forage-core-policy/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage core - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-core-policy diff --git a/core/forage-core-security/pom.xml b/core/forage-core-security/pom.xml index 7156c471..4ea22d79 100644 --- a/core/forage-core-security/pom.xml +++ b/core/forage-core-security/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage core - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-core-security diff --git a/core/forage-core-vectordb/pom.xml b/core/forage-core-vectordb/pom.xml index 1f9aa899..0e66a197 100644 --- a/core/forage-core-vectordb/pom.xml +++ b/core/forage-core-vectordb/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage core - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-core-vectordb diff --git a/core/forage-core-vertx/pom.xml b/core/forage-core-vertx/pom.xml index 4f33d691..4aa7f9df 100644 --- a/core/forage-core-vertx/pom.xml +++ b/core/forage-core-vertx/pom.xml @@ -4,7 +4,7 @@ io.kaoto.forage core - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-core-vertx diff --git a/core/pom.xml b/core/pom.xml index d1428a6e..30e08028 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage forage - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT core diff --git a/forage-catalog/pom.xml b/forage-catalog/pom.xml index 25d0ebd8..2e96c352 100644 --- a/forage-catalog/pom.xml +++ b/forage-catalog/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage forage - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-catalog diff --git a/integration-tests/common/pom.xml b/integration-tests/common/pom.xml index 1229303d..e6f4a008 100644 --- a/integration-tests/common/pom.xml +++ b/integration-tests/common/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage integration-tests - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT ../pom.xml diff --git a/integration-tests/cxf/pom.xml b/integration-tests/cxf/pom.xml index e3f5aefe..37181249 100644 --- a/integration-tests/cxf/pom.xml +++ b/integration-tests/cxf/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage integration-tests - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT ../pom.xml diff --git a/integration-tests/jdbc/pom.xml b/integration-tests/jdbc/pom.xml index 6ada14dd..67a92006 100644 --- a/integration-tests/jdbc/pom.xml +++ b/integration-tests/jdbc/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage integration-tests - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT ../pom.xml diff --git a/integration-tests/jms/pom.xml b/integration-tests/jms/pom.xml index 95128506..0f451de0 100644 --- a/integration-tests/jms/pom.xml +++ b/integration-tests/jms/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage integration-tests - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT ../pom.xml diff --git a/integration-tests/messaging/pom.xml b/integration-tests/messaging/pom.xml index 9685e73c..0816baaf 100644 --- a/integration-tests/messaging/pom.xml +++ b/integration-tests/messaging/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage integration-tests - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT ../pom.xml diff --git a/integration-tests/pom.xml b/integration-tests/pom.xml index 6f316804..0e3ed8bb 100644 --- a/integration-tests/pom.xml +++ b/integration-tests/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage forage - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT ../pom.xml diff --git a/library/ai/agents/camel-quarkus/deployment/pom.xml b/library/ai/agents/camel-quarkus/deployment/pom.xml index e80214d7..8cc61d0f 100644 --- a/library/ai/agents/camel-quarkus/deployment/pom.xml +++ b/library/ai/agents/camel-quarkus/deployment/pom.xml @@ -4,7 +4,7 @@ io.kaoto.forage agent-camel-quarkus - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-quarkus-agent-deployment diff --git a/library/ai/agents/camel-quarkus/pom.xml b/library/ai/agents/camel-quarkus/pom.xml index 1c85c49f..b4928e5a 100644 --- a/library/ai/agents/camel-quarkus/pom.xml +++ b/library/ai/agents/camel-quarkus/pom.xml @@ -4,7 +4,7 @@ io.kaoto.forage agents - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT agent-camel-quarkus diff --git a/library/ai/agents/camel-quarkus/runtime/pom.xml b/library/ai/agents/camel-quarkus/runtime/pom.xml index bacedf29..d922b14f 100644 --- a/library/ai/agents/camel-quarkus/runtime/pom.xml +++ b/library/ai/agents/camel-quarkus/runtime/pom.xml @@ -4,7 +4,7 @@ io.kaoto.forage agent-camel-quarkus - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-quarkus-agent diff --git a/library/ai/agents/forage-agent-factories/pom.xml b/library/ai/agents/forage-agent-factories/pom.xml index 2e231db3..8bb12533 100644 --- a/library/ai/agents/forage-agent-factories/pom.xml +++ b/library/ai/agents/forage-agent-factories/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage agents - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-agent-factories diff --git a/library/ai/agents/forage-agent/pom.xml b/library/ai/agents/forage-agent/pom.xml index f1a0ae11..205c03dc 100644 --- a/library/ai/agents/forage-agent/pom.xml +++ b/library/ai/agents/forage-agent/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage agents - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-agent diff --git a/library/ai/agents/pom.xml b/library/ai/agents/pom.xml index ea61f0a6..56cee238 100644 --- a/library/ai/agents/pom.xml +++ b/library/ai/agents/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage ai - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT agents diff --git a/library/ai/agents/spring-boot/forage-agent-starter/pom.xml b/library/ai/agents/spring-boot/forage-agent-starter/pom.xml index 012afcca..af332500 100644 --- a/library/ai/agents/spring-boot/forage-agent-starter/pom.xml +++ b/library/ai/agents/spring-boot/forage-agent-starter/pom.xml @@ -4,7 +4,7 @@ io.kaoto.forage agent-spring-boot - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-agent-starter diff --git a/library/ai/agents/spring-boot/pom.xml b/library/ai/agents/spring-boot/pom.xml index 0660ddbf..209faedf 100644 --- a/library/ai/agents/spring-boot/pom.xml +++ b/library/ai/agents/spring-boot/pom.xml @@ -4,7 +4,7 @@ io.kaoto.forage agents - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT agent-spring-boot diff --git a/library/ai/chat-memory/forage-memory-infinispan/pom.xml b/library/ai/chat-memory/forage-memory-infinispan/pom.xml index 40e85a98..7da9c153 100644 --- a/library/ai/chat-memory/forage-memory-infinispan/pom.xml +++ b/library/ai/chat-memory/forage-memory-infinispan/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage chat-memory - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-memory-infinispan diff --git a/library/ai/chat-memory/forage-memory-message-window/pom.xml b/library/ai/chat-memory/forage-memory-message-window/pom.xml index bd1c66af..6884b932 100644 --- a/library/ai/chat-memory/forage-memory-message-window/pom.xml +++ b/library/ai/chat-memory/forage-memory-message-window/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage chat-memory - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-memory-message-window diff --git a/library/ai/chat-memory/forage-memory-redis/pom.xml b/library/ai/chat-memory/forage-memory-redis/pom.xml index f5abf147..0c797a68 100644 --- a/library/ai/chat-memory/forage-memory-redis/pom.xml +++ b/library/ai/chat-memory/forage-memory-redis/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage chat-memory - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-memory-redis diff --git a/library/ai/chat-memory/pom.xml b/library/ai/chat-memory/pom.xml index 3b58187e..3572ff92 100644 --- a/library/ai/chat-memory/pom.xml +++ b/library/ai/chat-memory/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage ai - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT chat-memory diff --git a/library/ai/chat-memory/tests/forage-memory-tests-tck/pom.xml b/library/ai/chat-memory/tests/forage-memory-tests-tck/pom.xml index 21c1bb72..4407ef93 100644 --- a/library/ai/chat-memory/tests/forage-memory-tests-tck/pom.xml +++ b/library/ai/chat-memory/tests/forage-memory-tests-tck/pom.xml @@ -4,7 +4,7 @@ io.kaoto.forage tests - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-memory-tests-tck diff --git a/library/ai/chat-memory/tests/pom.xml b/library/ai/chat-memory/tests/pom.xml index 34c2009b..a347880a 100644 --- a/library/ai/chat-memory/tests/pom.xml +++ b/library/ai/chat-memory/tests/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage chat-memory - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT tests diff --git a/library/ai/guardrails/forage-guardrails-input/pom.xml b/library/ai/guardrails/forage-guardrails-input/pom.xml index e2a7e950..ba5cfc7c 100644 --- a/library/ai/guardrails/forage-guardrails-input/pom.xml +++ b/library/ai/guardrails/forage-guardrails-input/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage guardrails - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-guardrails-input diff --git a/library/ai/guardrails/forage-guardrails-output/pom.xml b/library/ai/guardrails/forage-guardrails-output/pom.xml index 56c0075c..94298569 100644 --- a/library/ai/guardrails/forage-guardrails-output/pom.xml +++ b/library/ai/guardrails/forage-guardrails-output/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage guardrails - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-guardrails-output diff --git a/library/ai/guardrails/pom.xml b/library/ai/guardrails/pom.xml index eb02adf3..f007546e 100644 --- a/library/ai/guardrails/pom.xml +++ b/library/ai/guardrails/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage ai - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT guardrails diff --git a/library/ai/models/chat/forage-model-anthropic/pom.xml b/library/ai/models/chat/forage-model-anthropic/pom.xml index 4fd39205..34c1da70 100644 --- a/library/ai/models/chat/forage-model-anthropic/pom.xml +++ b/library/ai/models/chat/forage-model-anthropic/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage chat - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-model-anthropic diff --git a/library/ai/models/chat/forage-model-azure-openai/pom.xml b/library/ai/models/chat/forage-model-azure-openai/pom.xml index 40099850..a373c43a 100644 --- a/library/ai/models/chat/forage-model-azure-openai/pom.xml +++ b/library/ai/models/chat/forage-model-azure-openai/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage chat - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-model-azure-openai diff --git a/library/ai/models/chat/forage-model-bedrock/pom.xml b/library/ai/models/chat/forage-model-bedrock/pom.xml index 2ffccc70..1a643654 100644 --- a/library/ai/models/chat/forage-model-bedrock/pom.xml +++ b/library/ai/models/chat/forage-model-bedrock/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage chat - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-model-bedrock diff --git a/library/ai/models/chat/forage-model-dashscope/pom.xml b/library/ai/models/chat/forage-model-dashscope/pom.xml index feb82f26..dea4d934 100644 --- a/library/ai/models/chat/forage-model-dashscope/pom.xml +++ b/library/ai/models/chat/forage-model-dashscope/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage chat - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-model-dashscope diff --git a/library/ai/models/chat/forage-model-google-gemini/pom.xml b/library/ai/models/chat/forage-model-google-gemini/pom.xml index d67e01db..95c2e508 100644 --- a/library/ai/models/chat/forage-model-google-gemini/pom.xml +++ b/library/ai/models/chat/forage-model-google-gemini/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage chat - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-model-google-gemini diff --git a/library/ai/models/chat/forage-model-hugging-face/pom.xml b/library/ai/models/chat/forage-model-hugging-face/pom.xml index 4eb4e943..39f5c09f 100644 --- a/library/ai/models/chat/forage-model-hugging-face/pom.xml +++ b/library/ai/models/chat/forage-model-hugging-face/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage chat - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-model-hugging-face diff --git a/library/ai/models/chat/forage-model-local-ai/pom.xml b/library/ai/models/chat/forage-model-local-ai/pom.xml index 3b147182..79bd144b 100644 --- a/library/ai/models/chat/forage-model-local-ai/pom.xml +++ b/library/ai/models/chat/forage-model-local-ai/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage chat - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-model-local-ai diff --git a/library/ai/models/chat/forage-model-mistral-ai/pom.xml b/library/ai/models/chat/forage-model-mistral-ai/pom.xml index 6a9c76f5..40c37e03 100644 --- a/library/ai/models/chat/forage-model-mistral-ai/pom.xml +++ b/library/ai/models/chat/forage-model-mistral-ai/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage chat - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-model-mistral-ai diff --git a/library/ai/models/chat/forage-model-ollama/pom.xml b/library/ai/models/chat/forage-model-ollama/pom.xml index ca3e137d..7906c346 100644 --- a/library/ai/models/chat/forage-model-ollama/pom.xml +++ b/library/ai/models/chat/forage-model-ollama/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage chat - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-model-ollama diff --git a/library/ai/models/chat/forage-model-open-ai/pom.xml b/library/ai/models/chat/forage-model-open-ai/pom.xml index 8f5ba482..21e95954 100644 --- a/library/ai/models/chat/forage-model-open-ai/pom.xml +++ b/library/ai/models/chat/forage-model-open-ai/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage chat - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-model-open-ai diff --git a/library/ai/models/chat/forage-model-watsonx-ai/pom.xml b/library/ai/models/chat/forage-model-watsonx-ai/pom.xml index 9634fd5e..d1cd37f9 100644 --- a/library/ai/models/chat/forage-model-watsonx-ai/pom.xml +++ b/library/ai/models/chat/forage-model-watsonx-ai/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage chat - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-model-watsonx-ai diff --git a/library/ai/models/chat/pom.xml b/library/ai/models/chat/pom.xml index eeda230d..4286f648 100644 --- a/library/ai/models/chat/pom.xml +++ b/library/ai/models/chat/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage models - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT chat diff --git a/library/ai/models/embeddings/forage-model-embeddings-ollama/pom.xml b/library/ai/models/embeddings/forage-model-embeddings-ollama/pom.xml index 70a544bf..f6bea97c 100644 --- a/library/ai/models/embeddings/forage-model-embeddings-ollama/pom.xml +++ b/library/ai/models/embeddings/forage-model-embeddings-ollama/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage embeddings - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-model-embeddings-ollama diff --git a/library/ai/models/embeddings/pom.xml b/library/ai/models/embeddings/pom.xml index 04ce58c1..6b1f0095 100644 --- a/library/ai/models/embeddings/pom.xml +++ b/library/ai/models/embeddings/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage models - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT embeddings diff --git a/library/ai/models/pom.xml b/library/ai/models/pom.xml index a62d8dba..7dcf7295 100644 --- a/library/ai/models/pom.xml +++ b/library/ai/models/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage ai - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT models diff --git a/library/ai/pom.xml b/library/ai/pom.xml index 1c9438d3..5ef878ed 100644 --- a/library/ai/pom.xml +++ b/library/ai/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage library - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT ai diff --git a/library/ai/rag/forage-default-retrieval-augmentor/pom.xml b/library/ai/rag/forage-default-retrieval-augmentor/pom.xml index 9545f143..396ca067 100644 --- a/library/ai/rag/forage-default-retrieval-augmentor/pom.xml +++ b/library/ai/rag/forage-default-retrieval-augmentor/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage rag - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-default-retrieval-augmentor diff --git a/library/ai/rag/pom.xml b/library/ai/rag/pom.xml index c66791e3..02c51a15 100644 --- a/library/ai/rag/pom.xml +++ b/library/ai/rag/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage ai - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT rag diff --git a/library/ai/vector-dbs/forage-vectordb-chroma/pom.xml b/library/ai/vector-dbs/forage-vectordb-chroma/pom.xml index 01e5c916..bbe333a7 100644 --- a/library/ai/vector-dbs/forage-vectordb-chroma/pom.xml +++ b/library/ai/vector-dbs/forage-vectordb-chroma/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage vectordbs - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-vectordb-chroma diff --git a/library/ai/vector-dbs/forage-vectordb-default/pom.xml b/library/ai/vector-dbs/forage-vectordb-default/pom.xml index 5f6c39fc..513ae684 100644 --- a/library/ai/vector-dbs/forage-vectordb-default/pom.xml +++ b/library/ai/vector-dbs/forage-vectordb-default/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage vectordbs - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-vectordb-default diff --git a/library/ai/vector-dbs/forage-vectordb-in-memory-store/pom.xml b/library/ai/vector-dbs/forage-vectordb-in-memory-store/pom.xml index 2b4ff260..2c3f9116 100644 --- a/library/ai/vector-dbs/forage-vectordb-in-memory-store/pom.xml +++ b/library/ai/vector-dbs/forage-vectordb-in-memory-store/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage vectordbs - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-in-memory-store diff --git a/library/ai/vector-dbs/forage-vectordb-infinispan/pom.xml b/library/ai/vector-dbs/forage-vectordb-infinispan/pom.xml index f4989f7e..16f00971 100644 --- a/library/ai/vector-dbs/forage-vectordb-infinispan/pom.xml +++ b/library/ai/vector-dbs/forage-vectordb-infinispan/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage vectordbs - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-vectordb-infinispan diff --git a/library/ai/vector-dbs/forage-vectordb-mariadb/pom.xml b/library/ai/vector-dbs/forage-vectordb-mariadb/pom.xml index 85323e04..270fbcca 100644 --- a/library/ai/vector-dbs/forage-vectordb-mariadb/pom.xml +++ b/library/ai/vector-dbs/forage-vectordb-mariadb/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage vectordbs - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-vectordb-mariadb diff --git a/library/ai/vector-dbs/forage-vectordb-milvus/pom.xml b/library/ai/vector-dbs/forage-vectordb-milvus/pom.xml index 9002fd62..4bfecd46 100644 --- a/library/ai/vector-dbs/forage-vectordb-milvus/pom.xml +++ b/library/ai/vector-dbs/forage-vectordb-milvus/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage vectordbs - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-vectordb-milvus diff --git a/library/ai/vector-dbs/forage-vectordb-neo4j/pom.xml b/library/ai/vector-dbs/forage-vectordb-neo4j/pom.xml index cf99d38f..1321a3e2 100644 --- a/library/ai/vector-dbs/forage-vectordb-neo4j/pom.xml +++ b/library/ai/vector-dbs/forage-vectordb-neo4j/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage vectordbs - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-vectordb-neo4j diff --git a/library/ai/vector-dbs/forage-vectordb-pgvector/pom.xml b/library/ai/vector-dbs/forage-vectordb-pgvector/pom.xml index ff445823..8d8a8521 100644 --- a/library/ai/vector-dbs/forage-vectordb-pgvector/pom.xml +++ b/library/ai/vector-dbs/forage-vectordb-pgvector/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage vectordbs - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-vectordb-pgvector diff --git a/library/ai/vector-dbs/forage-vectordb-pinecone/pom.xml b/library/ai/vector-dbs/forage-vectordb-pinecone/pom.xml index 5e75c451..861dec8f 100644 --- a/library/ai/vector-dbs/forage-vectordb-pinecone/pom.xml +++ b/library/ai/vector-dbs/forage-vectordb-pinecone/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage vectordbs - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-vectordb-pinecone diff --git a/library/ai/vector-dbs/forage-vectordb-qdrant/pom.xml b/library/ai/vector-dbs/forage-vectordb-qdrant/pom.xml index f8d5c034..9c2935b9 100644 --- a/library/ai/vector-dbs/forage-vectordb-qdrant/pom.xml +++ b/library/ai/vector-dbs/forage-vectordb-qdrant/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage vectordbs - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-vectordb-qdrant diff --git a/library/ai/vector-dbs/forage-vectordb-redis/pom.xml b/library/ai/vector-dbs/forage-vectordb-redis/pom.xml index c96b483b..4eb2cbe0 100644 --- a/library/ai/vector-dbs/forage-vectordb-redis/pom.xml +++ b/library/ai/vector-dbs/forage-vectordb-redis/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage vectordbs - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-vectordb-redis diff --git a/library/ai/vector-dbs/forage-vectordb-weaviate/pom.xml b/library/ai/vector-dbs/forage-vectordb-weaviate/pom.xml index b9f741fd..f095e744 100644 --- a/library/ai/vector-dbs/forage-vectordb-weaviate/pom.xml +++ b/library/ai/vector-dbs/forage-vectordb-weaviate/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage vectordbs - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-vectordb-weaviate diff --git a/library/ai/vector-dbs/pom.xml b/library/ai/vector-dbs/pom.xml index 1fe74f26..5688caf3 100644 --- a/library/ai/vector-dbs/pom.xml +++ b/library/ai/vector-dbs/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage ai - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT vectordbs diff --git a/library/ai/web-search/forage-web-search-google-custom/pom.xml b/library/ai/web-search/forage-web-search-google-custom/pom.xml index 5b0b70ea..b4ea790e 100644 --- a/library/ai/web-search/forage-web-search-google-custom/pom.xml +++ b/library/ai/web-search/forage-web-search-google-custom/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage web-search - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-web-search-google-custom diff --git a/library/ai/web-search/forage-web-search-tavily/pom.xml b/library/ai/web-search/forage-web-search-tavily/pom.xml index 9ab4878d..1e9a5f7e 100644 --- a/library/ai/web-search/forage-web-search-tavily/pom.xml +++ b/library/ai/web-search/forage-web-search-tavily/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage web-search - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-web-search-tavily diff --git a/library/ai/web-search/forage-web-search/pom.xml b/library/ai/web-search/forage-web-search/pom.xml index 91af58be..664f6838 100644 --- a/library/ai/web-search/forage-web-search/pom.xml +++ b/library/ai/web-search/forage-web-search/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage web-search - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-web-search diff --git a/library/ai/web-search/pom.xml b/library/ai/web-search/pom.xml index 6cc7129d..27e8a33c 100644 --- a/library/ai/web-search/pom.xml +++ b/library/ai/web-search/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage ai - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT web-search diff --git a/library/cloud/forage-azure-eventhubs/pom.xml b/library/cloud/forage-azure-eventhubs/pom.xml index 07bb3498..d7662c6a 100644 --- a/library/cloud/forage-azure-eventhubs/pom.xml +++ b/library/cloud/forage-azure-eventhubs/pom.xml @@ -4,7 +4,7 @@ io.kaoto.forage cloud - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-azure-eventhubs diff --git a/library/cloud/pom.xml b/library/cloud/pom.xml index 3437fa38..fb52d44a 100644 --- a/library/cloud/pom.xml +++ b/library/cloud/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage library - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT cloud diff --git a/library/common/forage-spring-boot-common/pom.xml b/library/common/forage-spring-boot-common/pom.xml index 5a9fcb9d..c84691ef 100644 --- a/library/common/forage-spring-boot-common/pom.xml +++ b/library/common/forage-spring-boot-common/pom.xml @@ -4,7 +4,7 @@ io.kaoto.forage common - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-spring-boot-common diff --git a/library/common/pom.xml b/library/common/pom.xml index 4822871e..a4420481 100644 --- a/library/common/pom.xml +++ b/library/common/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage library - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT common diff --git a/library/cxf/camel-quarkus/deployment/pom.xml b/library/cxf/camel-quarkus/deployment/pom.xml index d57abe96..b92834be 100644 --- a/library/cxf/camel-quarkus/deployment/pom.xml +++ b/library/cxf/camel-quarkus/deployment/pom.xml @@ -4,7 +4,7 @@ io.kaoto.forage cxf-camel-quarkus - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-quarkus-cxf-deployment diff --git a/library/cxf/camel-quarkus/pom.xml b/library/cxf/camel-quarkus/pom.xml index 0ea3b2ad..fc9abe4b 100644 --- a/library/cxf/camel-quarkus/pom.xml +++ b/library/cxf/camel-quarkus/pom.xml @@ -4,7 +4,7 @@ io.kaoto.forage cxf - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT ../pom.xml diff --git a/library/cxf/camel-quarkus/runtime/pom.xml b/library/cxf/camel-quarkus/runtime/pom.xml index 33153f37..7da7381a 100644 --- a/library/cxf/camel-quarkus/runtime/pom.xml +++ b/library/cxf/camel-quarkus/runtime/pom.xml @@ -4,7 +4,7 @@ io.kaoto.forage cxf-camel-quarkus - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-quarkus-cxf diff --git a/library/cxf/forage-cxf-common/pom.xml b/library/cxf/forage-cxf-common/pom.xml index 74f81472..6b50d39a 100644 --- a/library/cxf/forage-cxf-common/pom.xml +++ b/library/cxf/forage-cxf-common/pom.xml @@ -4,7 +4,7 @@ io.kaoto.forage cxf - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-cxf-common diff --git a/library/cxf/forage-cxf-soap/pom.xml b/library/cxf/forage-cxf-soap/pom.xml index c7d7a642..6f9b5d5b 100644 --- a/library/cxf/forage-cxf-soap/pom.xml +++ b/library/cxf/forage-cxf-soap/pom.xml @@ -4,7 +4,7 @@ io.kaoto.forage cxf - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-cxf-soap diff --git a/library/cxf/forage-cxf/pom.xml b/library/cxf/forage-cxf/pom.xml index 4ed3c9f4..3c512f52 100644 --- a/library/cxf/forage-cxf/pom.xml +++ b/library/cxf/forage-cxf/pom.xml @@ -4,7 +4,7 @@ io.kaoto.forage cxf - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-cxf diff --git a/library/cxf/pom.xml b/library/cxf/pom.xml index 3f7757ea..eaa0c116 100644 --- a/library/cxf/pom.xml +++ b/library/cxf/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage library - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT cxf diff --git a/library/cxf/spring-boot/forage-cxf-starter/pom.xml b/library/cxf/spring-boot/forage-cxf-starter/pom.xml index 3f38f7b7..930d60ec 100644 --- a/library/cxf/spring-boot/forage-cxf-starter/pom.xml +++ b/library/cxf/spring-boot/forage-cxf-starter/pom.xml @@ -4,7 +4,7 @@ io.kaoto.forage cxf-spring-boot - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-cxf-starter diff --git a/library/cxf/spring-boot/pom.xml b/library/cxf/spring-boot/pom.xml index 000b4857..7a6f5554 100644 --- a/library/cxf/spring-boot/pom.xml +++ b/library/cxf/spring-boot/pom.xml @@ -4,7 +4,7 @@ io.kaoto.forage cxf - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT cxf-spring-boot diff --git a/library/jdbc/camel-quarkus/jdbc/deployment/pom.xml b/library/jdbc/camel-quarkus/jdbc/deployment/pom.xml index 69508432..0f3077ae 100644 --- a/library/jdbc/camel-quarkus/jdbc/deployment/pom.xml +++ b/library/jdbc/camel-quarkus/jdbc/deployment/pom.xml @@ -4,7 +4,7 @@ io.kaoto.forage forage-quarkus-jdbc-parent - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-quarkus-jdbc-deployment diff --git a/library/jdbc/camel-quarkus/jdbc/pom.xml b/library/jdbc/camel-quarkus/jdbc/pom.xml index 041d7aef..26bdd06a 100644 --- a/library/jdbc/camel-quarkus/jdbc/pom.xml +++ b/library/jdbc/camel-quarkus/jdbc/pom.xml @@ -4,7 +4,7 @@ io.kaoto.forage jdbc-camel-quarkus - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-quarkus-jdbc-parent diff --git a/library/jdbc/camel-quarkus/jdbc/runtime/pom.xml b/library/jdbc/camel-quarkus/jdbc/runtime/pom.xml index 36f6454c..2cc838e3 100644 --- a/library/jdbc/camel-quarkus/jdbc/runtime/pom.xml +++ b/library/jdbc/camel-quarkus/jdbc/runtime/pom.xml @@ -4,7 +4,7 @@ io.kaoto.forage forage-quarkus-jdbc-parent - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-quarkus-jdbc diff --git a/library/jdbc/camel-quarkus/pom.xml b/library/jdbc/camel-quarkus/pom.xml index e1bcf3c4..14d5f8ab 100644 --- a/library/jdbc/camel-quarkus/pom.xml +++ b/library/jdbc/camel-quarkus/pom.xml @@ -4,7 +4,7 @@ io.kaoto.forage jdbc - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT ../pom.xml diff --git a/library/jdbc/forage-jdbc-common/pom.xml b/library/jdbc/forage-jdbc-common/pom.xml index f1efbdd8..c033255a 100644 --- a/library/jdbc/forage-jdbc-common/pom.xml +++ b/library/jdbc/forage-jdbc-common/pom.xml @@ -4,7 +4,7 @@ io.kaoto.forage jdbc - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-jdbc-common diff --git a/library/jdbc/forage-jdbc-db2/pom.xml b/library/jdbc/forage-jdbc-db2/pom.xml index a531f0e3..253dc060 100644 --- a/library/jdbc/forage-jdbc-db2/pom.xml +++ b/library/jdbc/forage-jdbc-db2/pom.xml @@ -4,7 +4,7 @@ io.kaoto.forage jdbc - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-jdbc-db2 diff --git a/library/jdbc/forage-jdbc-h2/pom.xml b/library/jdbc/forage-jdbc-h2/pom.xml index 2e157c42..b9b2f7e3 100644 --- a/library/jdbc/forage-jdbc-h2/pom.xml +++ b/library/jdbc/forage-jdbc-h2/pom.xml @@ -4,7 +4,7 @@ io.kaoto.forage jdbc - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-jdbc-h2 diff --git a/library/jdbc/forage-jdbc-hsqldb/pom.xml b/library/jdbc/forage-jdbc-hsqldb/pom.xml index 5d84690f..6f156cab 100644 --- a/library/jdbc/forage-jdbc-hsqldb/pom.xml +++ b/library/jdbc/forage-jdbc-hsqldb/pom.xml @@ -4,7 +4,7 @@ io.kaoto.forage jdbc - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-jdbc-hsqldb diff --git a/library/jdbc/forage-jdbc-mariadb/pom.xml b/library/jdbc/forage-jdbc-mariadb/pom.xml index 7bf77a58..5b44851d 100644 --- a/library/jdbc/forage-jdbc-mariadb/pom.xml +++ b/library/jdbc/forage-jdbc-mariadb/pom.xml @@ -4,7 +4,7 @@ io.kaoto.forage jdbc - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-jdbc-mariadb diff --git a/library/jdbc/forage-jdbc-mssql/pom.xml b/library/jdbc/forage-jdbc-mssql/pom.xml index 9ebe04d2..88a6867f 100644 --- a/library/jdbc/forage-jdbc-mssql/pom.xml +++ b/library/jdbc/forage-jdbc-mssql/pom.xml @@ -4,7 +4,7 @@ io.kaoto.forage jdbc - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-jdbc-mssql diff --git a/library/jdbc/forage-jdbc-mysql/pom.xml b/library/jdbc/forage-jdbc-mysql/pom.xml index eb7aa449..2c2121a3 100644 --- a/library/jdbc/forage-jdbc-mysql/pom.xml +++ b/library/jdbc/forage-jdbc-mysql/pom.xml @@ -4,7 +4,7 @@ io.kaoto.forage jdbc - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-jdbc-mysql diff --git a/library/jdbc/forage-jdbc-oracle/pom.xml b/library/jdbc/forage-jdbc-oracle/pom.xml index 571d5ab3..e1d4354e 100644 --- a/library/jdbc/forage-jdbc-oracle/pom.xml +++ b/library/jdbc/forage-jdbc-oracle/pom.xml @@ -4,7 +4,7 @@ io.kaoto.forage jdbc - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-jdbc-oracle diff --git a/library/jdbc/forage-jdbc-postgresql/pom.xml b/library/jdbc/forage-jdbc-postgresql/pom.xml index 71fa1e8d..29cd7617 100644 --- a/library/jdbc/forage-jdbc-postgresql/pom.xml +++ b/library/jdbc/forage-jdbc-postgresql/pom.xml @@ -4,7 +4,7 @@ io.kaoto.forage jdbc - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-jdbc-postgresql diff --git a/library/jdbc/forage-jdbc-test/pom.xml b/library/jdbc/forage-jdbc-test/pom.xml index 06e98ba2..e7601f01 100644 --- a/library/jdbc/forage-jdbc-test/pom.xml +++ b/library/jdbc/forage-jdbc-test/pom.xml @@ -4,7 +4,7 @@ io.kaoto.forage jdbc - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-jdbc-test diff --git a/library/jdbc/forage-jdbc/pom.xml b/library/jdbc/forage-jdbc/pom.xml index 450414ca..058c2034 100644 --- a/library/jdbc/forage-jdbc/pom.xml +++ b/library/jdbc/forage-jdbc/pom.xml @@ -4,7 +4,7 @@ io.kaoto.forage jdbc - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-jdbc diff --git a/library/jdbc/pom.xml b/library/jdbc/pom.xml index b3f079b2..18b64522 100644 --- a/library/jdbc/pom.xml +++ b/library/jdbc/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage library - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT ../pom.xml diff --git a/library/jdbc/spring-boot/forage-jdbc-starter/pom.xml b/library/jdbc/spring-boot/forage-jdbc-starter/pom.xml index 57202d67..cb41f2e2 100644 --- a/library/jdbc/spring-boot/forage-jdbc-starter/pom.xml +++ b/library/jdbc/spring-boot/forage-jdbc-starter/pom.xml @@ -4,7 +4,7 @@ io.kaoto.forage spring-boot - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-jdbc-starter diff --git a/library/jdbc/spring-boot/pom.xml b/library/jdbc/spring-boot/pom.xml index eb8bbf72..0b69d945 100644 --- a/library/jdbc/spring-boot/pom.xml +++ b/library/jdbc/spring-boot/pom.xml @@ -4,7 +4,7 @@ io.kaoto.forage jdbc - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT spring-boot diff --git a/library/jms/camel-quarkus/deployment/pom.xml b/library/jms/camel-quarkus/deployment/pom.xml index 48ae4935..c5d6a4e1 100644 --- a/library/jms/camel-quarkus/deployment/pom.xml +++ b/library/jms/camel-quarkus/deployment/pom.xml @@ -4,7 +4,7 @@ io.kaoto.forage jms-camel-quarkus - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-quarkus-jms-deployment diff --git a/library/jms/camel-quarkus/pom.xml b/library/jms/camel-quarkus/pom.xml index 6b1cf0a6..cfac6b9d 100644 --- a/library/jms/camel-quarkus/pom.xml +++ b/library/jms/camel-quarkus/pom.xml @@ -4,7 +4,7 @@ io.kaoto.forage jms - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT ../pom.xml diff --git a/library/jms/camel-quarkus/runtime/pom.xml b/library/jms/camel-quarkus/runtime/pom.xml index bf6eebb8..8e65328c 100644 --- a/library/jms/camel-quarkus/runtime/pom.xml +++ b/library/jms/camel-quarkus/runtime/pom.xml @@ -4,7 +4,7 @@ io.kaoto.forage jms-camel-quarkus - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-quarkus-jms diff --git a/library/jms/forage-jms-artemis/pom.xml b/library/jms/forage-jms-artemis/pom.xml index f6a3bbc0..4a5d7646 100644 --- a/library/jms/forage-jms-artemis/pom.xml +++ b/library/jms/forage-jms-artemis/pom.xml @@ -4,7 +4,7 @@ io.kaoto.forage jms - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-jms-artemis diff --git a/library/jms/forage-jms-common/pom.xml b/library/jms/forage-jms-common/pom.xml index e58a5a90..52d1c75c 100644 --- a/library/jms/forage-jms-common/pom.xml +++ b/library/jms/forage-jms-common/pom.xml @@ -4,7 +4,7 @@ io.kaoto.forage jms - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-jms-common diff --git a/library/jms/forage-jms-ibmmq/pom.xml b/library/jms/forage-jms-ibmmq/pom.xml index 7c0b6808..1577b0e2 100644 --- a/library/jms/forage-jms-ibmmq/pom.xml +++ b/library/jms/forage-jms-ibmmq/pom.xml @@ -4,7 +4,7 @@ io.kaoto.forage jms - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-jms-ibmmq diff --git a/library/jms/forage-jms/pom.xml b/library/jms/forage-jms/pom.xml index 628ee2ed..494b4eed 100644 --- a/library/jms/forage-jms/pom.xml +++ b/library/jms/forage-jms/pom.xml @@ -4,7 +4,7 @@ io.kaoto.forage jms - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-jms diff --git a/library/jms/pom.xml b/library/jms/pom.xml index dc77af03..d6a442d2 100644 --- a/library/jms/pom.xml +++ b/library/jms/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage library - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT jms diff --git a/library/jms/spring-boot/forage-jms-starter/pom.xml b/library/jms/spring-boot/forage-jms-starter/pom.xml index 750371ee..46c9d38a 100644 --- a/library/jms/spring-boot/forage-jms-starter/pom.xml +++ b/library/jms/spring-boot/forage-jms-starter/pom.xml @@ -4,7 +4,7 @@ io.kaoto.forage jms-spring-boot - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-jms-starter diff --git a/library/jms/spring-boot/pom.xml b/library/jms/spring-boot/pom.xml index aca0b19a..fe4b3ebd 100644 --- a/library/jms/spring-boot/pom.xml +++ b/library/jms/spring-boot/pom.xml @@ -4,7 +4,7 @@ io.kaoto.forage jms - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT jms-spring-boot diff --git a/library/messaging/camel-quarkus/deployment/pom.xml b/library/messaging/camel-quarkus/deployment/pom.xml index 78f14930..d7cc1eac 100644 --- a/library/messaging/camel-quarkus/deployment/pom.xml +++ b/library/messaging/camel-quarkus/deployment/pom.xml @@ -4,7 +4,7 @@ io.kaoto.forage messaging-camel-quarkus - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-quarkus-spring-rabbitmq-deployment diff --git a/library/messaging/camel-quarkus/pom.xml b/library/messaging/camel-quarkus/pom.xml index 6cd1a57a..0b12e9fe 100644 --- a/library/messaging/camel-quarkus/pom.xml +++ b/library/messaging/camel-quarkus/pom.xml @@ -4,7 +4,7 @@ io.kaoto.forage messaging - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT ../pom.xml diff --git a/library/messaging/camel-quarkus/runtime/pom.xml b/library/messaging/camel-quarkus/runtime/pom.xml index c776a9ac..941c48da 100644 --- a/library/messaging/camel-quarkus/runtime/pom.xml +++ b/library/messaging/camel-quarkus/runtime/pom.xml @@ -4,7 +4,7 @@ io.kaoto.forage messaging-camel-quarkus - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-quarkus-spring-rabbitmq diff --git a/library/messaging/forage-spring-rabbitmq-common/pom.xml b/library/messaging/forage-spring-rabbitmq-common/pom.xml index 16363b4e..f6007a3d 100644 --- a/library/messaging/forage-spring-rabbitmq-common/pom.xml +++ b/library/messaging/forage-spring-rabbitmq-common/pom.xml @@ -4,7 +4,7 @@ io.kaoto.forage messaging - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-spring-rabbitmq-common diff --git a/library/messaging/forage-spring-rabbitmq/pom.xml b/library/messaging/forage-spring-rabbitmq/pom.xml index 772d97c3..8d27f318 100644 --- a/library/messaging/forage-spring-rabbitmq/pom.xml +++ b/library/messaging/forage-spring-rabbitmq/pom.xml @@ -4,7 +4,7 @@ io.kaoto.forage messaging - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-spring-rabbitmq diff --git a/library/messaging/pom.xml b/library/messaging/pom.xml index f92ef528..5f29fabf 100644 --- a/library/messaging/pom.xml +++ b/library/messaging/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage library - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT messaging diff --git a/library/messaging/spring-boot/forage-spring-rabbitmq-starter/pom.xml b/library/messaging/spring-boot/forage-spring-rabbitmq-starter/pom.xml index a4e88433..045eba15 100644 --- a/library/messaging/spring-boot/forage-spring-rabbitmq-starter/pom.xml +++ b/library/messaging/spring-boot/forage-spring-rabbitmq-starter/pom.xml @@ -4,7 +4,7 @@ io.kaoto.forage messaging-spring-boot - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-spring-rabbitmq-starter diff --git a/library/messaging/spring-boot/pom.xml b/library/messaging/spring-boot/pom.xml index da058350..f255e528 100644 --- a/library/messaging/spring-boot/pom.xml +++ b/library/messaging/spring-boot/pom.xml @@ -4,7 +4,7 @@ io.kaoto.forage messaging - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT messaging-spring-boot diff --git a/library/policy/forage-policy-factory/pom.xml b/library/policy/forage-policy-factory/pom.xml index 78b4002d..cedbf93b 100644 --- a/library/policy/forage-policy-factory/pom.xml +++ b/library/policy/forage-policy-factory/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage policy - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-policy-factory diff --git a/library/policy/forage-policy-flip/pom.xml b/library/policy/forage-policy-flip/pom.xml index bfbc4f8b..a5dd3e86 100644 --- a/library/policy/forage-policy-flip/pom.xml +++ b/library/policy/forage-policy-flip/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage policy - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-policy-flip diff --git a/library/policy/forage-policy-schedule/pom.xml b/library/policy/forage-policy-schedule/pom.xml index 1a367ff8..86ecd2e3 100644 --- a/library/policy/forage-policy-schedule/pom.xml +++ b/library/policy/forage-policy-schedule/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage policy - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-policy-schedule diff --git a/library/policy/pom.xml b/library/policy/pom.xml index 1caa5dce..d884ff36 100644 --- a/library/policy/pom.xml +++ b/library/policy/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage library - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT policy diff --git a/library/pom.xml b/library/pom.xml index 1c5e618a..9c3d12c6 100644 --- a/library/pom.xml +++ b/library/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage forage - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT library diff --git a/library/security/forage-security-keycloak/pom.xml b/library/security/forage-security-keycloak/pom.xml index 588ed491..d1802498 100644 --- a/library/security/forage-security-keycloak/pom.xml +++ b/library/security/forage-security-keycloak/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage security - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-security-keycloak diff --git a/library/security/forage-security-shiro/pom.xml b/library/security/forage-security-shiro/pom.xml index 42eccc7f..134513d8 100644 --- a/library/security/forage-security-shiro/pom.xml +++ b/library/security/forage-security-shiro/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage security - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-security-shiro diff --git a/library/security/forage-security-spring/pom.xml b/library/security/forage-security-spring/pom.xml index 6bf0104d..6e5bf9ff 100644 --- a/library/security/forage-security-spring/pom.xml +++ b/library/security/forage-security-spring/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage security - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-security-spring diff --git a/library/security/pom.xml b/library/security/pom.xml index d7fa15d0..0211d0e6 100644 --- a/library/security/pom.xml +++ b/library/security/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage library - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT security diff --git a/library/vertx/forage-vertx/pom.xml b/library/vertx/forage-vertx/pom.xml index 7231d738..b64f1475 100644 --- a/library/vertx/forage-vertx/pom.xml +++ b/library/vertx/forage-vertx/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage vertx - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-vertx diff --git a/library/vertx/pom.xml b/library/vertx/pom.xml index d0e4e29d..719049d3 100644 --- a/library/vertx/pom.xml +++ b/library/vertx/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage library - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT vertx diff --git a/pom.xml b/pom.xml index 57b2d30f..e4b8d230 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ io.kaoto.forage forage - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT pom Forage https://github.com/KaotoIO/forage diff --git a/tooling/camel-jbang-plugin-forage/pom.xml b/tooling/camel-jbang-plugin-forage/pom.xml index 39c7b2eb..ffc6f202 100644 --- a/tooling/camel-jbang-plugin-forage/pom.xml +++ b/tooling/camel-jbang-plugin-forage/pom.xml @@ -6,7 +6,7 @@ io.kaoto.forage tooling - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT camel-jbang-plugin-forage diff --git a/tooling/forage-maven-catalog-plugin/pom.xml b/tooling/forage-maven-catalog-plugin/pom.xml index b65ef1f0..e7c89bf8 100644 --- a/tooling/forage-maven-catalog-plugin/pom.xml +++ b/tooling/forage-maven-catalog-plugin/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage tooling - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT forage-maven-catalog-plugin diff --git a/tooling/pom.xml b/tooling/pom.xml index 8747ac52..a6f49a5f 100644 --- a/tooling/pom.xml +++ b/tooling/pom.xml @@ -5,7 +5,7 @@ io.kaoto.forage forage - 1.4-SNAPSHOT + 1.4.0-SNAPSHOT tooling