This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-examples.git
The following commit(s) were added to refs/heads/main by this push: new cce5d9a5 Update README.md cce5d9a5 is described below commit cce5d9a548472a260fcc91c4dc04f64c87f6a46d Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Thu Aug 17 07:23:06 2023 +0200 Update README.md --- README.md | 30 ++++++++++++++++++++---------- 1 file changed, 20 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 914893aa..20f732e8 100644 --- a/README.md +++ b/README.md @@ -1,15 +1,25 @@ -# Apache Camel Examples += Welcome to the Apache Camel Examples -[](https://maven-badges.herokuapp.com/maven-central/org.apache.camel/apache-camel) -[](https://www.javadoc.io/doc/org.apache.camel/camel-api) -[](http://stackoverflow.com/questions/tagged/apache-camel) -[](https://camel.zulipchat.com/) -[](https://twitter.com/ApacheCamel) +== Introduction +This project contains the various examples for working with Apache +Camel. The examples can be run using Maven. When using the Maven +command, Maven will attempt to download the required dependencies from a +central repository to your local repository. +View the individual example READMEs for details. -[Apache Camel](http://camel.apache.org/) is a powerful open source integration framework based on known -Enterprise Integration Patterns with powerful bean integration. +=== Executing -### Introduction +Master branch should only be used for development purposes, which will be pointing +to the SNAPSHOT version of the next release. -This project provides examples for Apache Camel. +To execute the examples, checkout into the tag for the latest release. For example: + +`$ git checkout tags/camel-examples-4.0.0` + +Then, install the root pom: + +`$ mvn install` + +After that, you should be able to execute the examples following each example's +readme's instructions.