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 fb615c514f425bc47d31a755925ba1387b10aa87 Author: Pasquale Congiusti <[email protected]> AuthorDate: Mon Feb 1 15:19:55 2021 +0100 chore(examples): remove duplicate examplese --- examples/resources/resources-data.txt | 1 - examples/resources/resources-route.groovy | 29 ----------------------------- 2 files changed, 30 deletions(-) diff --git a/examples/resources/resources-data.txt b/examples/resources/resources-data.txt deleted file mode 100644 index dff7947..0000000 --- a/examples/resources/resources-data.txt +++ /dev/null @@ -1 +0,0 @@ -the file body \ No newline at end of file diff --git a/examples/resources/resources-route.groovy b/examples/resources/resources-route.groovy deleted file mode 100644 index 6f8be44..0000000 --- a/examples/resources/resources-route.groovy +++ /dev/null @@ -1,29 +0,0 @@ -// 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}')
