CAMEL-9337 Add readme.txt to all examples
Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/6f51fb0d Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/6f51fb0d Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/6f51fb0d Branch: refs/heads/master Commit: 6f51fb0d4fd2af42369e423428df22925f12e5dd Parents: 8502575 Author: gautric <gaut...@redhat.com> Authored: Wed Dec 9 19:39:14 2015 +0100 Committer: Claus Ibsen <davscl...@apache.org> Committed: Thu Dec 10 07:45:00 2015 +0100 ---------------------------------------------------------------------- examples/camel-example-etl/README.md | 65 ++++++++++++++++++++++++++++++ examples/camel-example-etl/README.txt | 47 --------------------- 2 files changed, 65 insertions(+), 47 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/6f51fb0d/examples/camel-example-etl/README.md ---------------------------------------------------------------------- diff --git a/examples/camel-example-etl/README.md b/examples/camel-example-etl/README.md new file mode 100644 index 0000000..ba742f1 --- /dev/null +++ b/examples/camel-example-etl/README.md @@ -0,0 +1,65 @@ +# Extract Transform Load (ETL) Example + +### Introduction + +This example shows how to use Camel as an ETL tool + [http://camel.apache.org/etl.html](http://camel.apache.org/etl.html) + +### Build + +You will need to compile this example first: + + mvn compile + +### Run + +To run the example type + + mvn camel:run + +You can see the routing rules by looking at the java code in the src/main/java +directory and the Spring XML configuration lives in + `src/main/resources/META-INF/spring` + +To stop the example hit `ctrl + c` + +### Build and Run inside OSGi container + + +#### Build + +You will need to compile and install this example first: + + mvn install + +#### Install + +If using Apache Karaf / Apache ServiceMix you can install this example +from the shell using this example's "features.xml" for easy provisioning. + + features:addUrl mvn:org.apache.camel/camel-example-etl/${version}/xml/features + features:install camel-example-etl + +The example outputs logs into the console. When you're done just hit `ctrl + d` to exit the container. +Next time you start the container again use the 'clean' option so that this example's bundle gets +removed and you don't see the logs anymore written into the console, e.g. in case of Karaf start it +again using: + + karaf clean + +### Documentation + +For a full description of this example please see + [http://camel.apache.org/etl-example.html](http://camel.apache.org/etl-example.html) + + +### Forum, Help, etc + +If you hit an problems please let us know on the Camel Forums + [http://camel.apache.org/discussion-forums.html](http://camel.apache.org/discussion-forums.html) + +Please help us make Apache Camel better - we appreciate any feedback you may +have. Enjoy! + +------------------------ +The Camel riders! http://git-wip-us.apache.org/repos/asf/camel/blob/6f51fb0d/examples/camel-example-etl/README.txt ---------------------------------------------------------------------- diff --git a/examples/camel-example-etl/README.txt b/examples/camel-example-etl/README.txt deleted file mode 100644 index 1378a9e..0000000 --- a/examples/camel-example-etl/README.txt +++ /dev/null @@ -1,47 +0,0 @@ -Extract Transform Load (ETL) Example -==================================== - -This example shows how to use Camel as an ETL tool - http://camel.apache.org/etl.html - -For a full description of this example please see - http://camel.apache.org/etl-example.html - -You will need to compile this example first: - mvn compile - -To run the example type - mvn camel:run - -You can see the routing rules by looking at the java code in the src/main/java -directory and the Spring XML configuration lives in - src/main/resources/META-INF/spring - -To stop the example hit ctrl + c - -Running inside OSGi container -============================= - -You will need to compile and install this example first: - mvn install - -If using Apache Karaf / Apache ServiceMix you can install this example -from the shell using this example's "features.xml" for easy provisioning. - - features:addUrl mvn:org.apache.camel/camel-example-etl/${version}/xml/features - features:install camel-example-etl - -The example outputs logs into the console. When you're done just hit ctrl + d to exit the container. -Next time you start the container again use the 'clean' option so that this example's bundle gets -removed and you don't see the logs anymore written into the console, e.g. in case of Karaf start it -again using: - karaf clean - -If you hit any problems please let us know on the Camel Forums - http://camel.apache.org/discussion-forums.html - -Please help us make Apache Camel better - we appreciate any feedback you may -have. Enjoy! - ------------------------- -The Camel riders!