This is an automated email from the ASF dual-hosted git repository.

Croway pushed a commit to branch fix/endpointdsl-remove-unused-stream-dep
in repository https://gitbox.apache.org/repos/asf/camel-spring-boot-examples.git

commit d209c147c7531d8032ae74d2435c6772f0bb1602
Author: croway <[email protected]>
AuthorDate: Thu Sep 3 19:08:27 2026 +0200

    Fix endpointdsl example: remove unused camel-stream dependency
    
    The route logs the message with .log("${body}") rather than routing to
    a stream endpoint, so camel-stream-starter was an unused dependency.
    Remove it and update the README wording to match the actual behavior.
    
    Co-Authored-By: Claude Sonnet 5 <[email protected]>
    Claude-Session: https://claude.ai/code/session_01X2p9q3rU4AySm5Y7uDSJ61
---
 endpointdsl/pom.xml     | 4 ----
 endpointdsl/readme.adoc | 4 ++--
 2 files changed, 2 insertions(+), 6 deletions(-)

diff --git a/endpointdsl/pom.xml b/endpointdsl/pom.xml
index 77a02d32..2d89c2b6 100644
--- a/endpointdsl/pom.xml
+++ b/endpointdsl/pom.xml
@@ -80,10 +80,6 @@
             <groupId>org.apache.camel.springboot</groupId>
             <artifactId>camel-endpointdsl-starter</artifactId>
         </dependency>
-        <dependency>
-            <groupId>org.apache.camel.springboot</groupId>
-            <artifactId>camel-stream-starter</artifactId>
-        </dependency>
 
         <!-- test -->
         <dependency>
diff --git a/endpointdsl/readme.adoc b/endpointdsl/readme.adoc
index 87cb67f0..35c2eb15 100644
--- a/endpointdsl/readme.adoc
+++ b/endpointdsl/readme.adoc
@@ -4,13 +4,13 @@ This example shows how to work with the type-safe Endpoint 
DSL to build Camel ro
 in Java code where endpoints are configured using a chain of Java method calls,
 instead of using the Camel endpoint URI style.
 
-The example generates messages using timer trigger, writes them to standard 
output.
+The example generates messages using timer trigger, and logs them.
 
 === Camel routes
 
 The Camel route is embedded directly in the main class `MyCamelApplication` as 
a Spring Boot `@Bean` method.
 The route starts from a timer, that triggers every 2nd second and calls a 
Spring Bean `MyBean`
-which returns a message, that is routed to a stream endpoint which writes to 
standard output.
+which returns a message, that is logged.
 
 === How to run
 

Reply via email to