This is an automated email from the ASF dual-hosted git repository. astefanutti pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel-k.git
commit d6433681bc4cfd09a6b827778962baf732325c61 Author: Pasquale Congiusti <[email protected]> AuthorDate: Fri Jan 29 15:27:44 2021 +0100 chore(examples): group resources examples --- examples/resources/resources-data.txt | 1 + examples/resources/resources-route.groovy | 29 +++++++++++++++++++++++++++++ 2 files changed, 30 insertions(+) diff --git a/examples/resources/resources-data.txt b/examples/resources/resources-data.txt new file mode 100644 index 0000000..dff7947 --- /dev/null +++ b/examples/resources/resources-data.txt @@ -0,0 +1 @@ +the file body \ No newline at end of file diff --git a/examples/resources/resources-route.groovy b/examples/resources/resources-route.groovy new file mode 100644 index 0000000..6f8be44 --- /dev/null +++ b/examples/resources/resources-route.groovy @@ -0,0 +1,29 @@ +// camel-k: language=groovy +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +// +// To run this integrations use: +// +// kamel run --resource examples/resources-data.txt examples/resources-route.groovy +// + +from('timer:resources') + .routeId('resources') + .setBody() + .simple("resource:classpath:resources-data.txt") + .log('file content is: ${body}')
