This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git
commit 30ec4eea442f7768cd90fdf532a332ebb8de75b5 Author: akoufoudakis <[email protected]> AuthorDate: Thu May 14 19:15:00 2020 +0200 Added license statements --- .../src/main/java/sample/camel/WidgetGadgetApp.java | 16 ++++++++++++++++ .../src/main/java/sample/camel/WidgetGadgetRoute.java | 16 ++++++++++++++++ .../src/main/resources/application.properties | 17 +++++++++++++++++ 3 files changed, 49 insertions(+) diff --git a/examples/camel-example-spring-boot-widget-gadget/src/main/java/sample/camel/WidgetGadgetApp.java b/examples/camel-example-spring-boot-widget-gadget/src/main/java/sample/camel/WidgetGadgetApp.java index c8df269..050bce8 100644 --- a/examples/camel-example-spring-boot-widget-gadget/src/main/java/sample/camel/WidgetGadgetApp.java +++ b/examples/camel-example-spring-boot-widget-gadget/src/main/java/sample/camel/WidgetGadgetApp.java @@ -1,3 +1,19 @@ +/* + * 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. + */ package sample.camel; import org.springframework.boot.SpringApplication; diff --git a/examples/camel-example-spring-boot-widget-gadget/src/main/java/sample/camel/WidgetGadgetRoute.java b/examples/camel-example-spring-boot-widget-gadget/src/main/java/sample/camel/WidgetGadgetRoute.java index e668b38..72b87f5 100644 --- a/examples/camel-example-spring-boot-widget-gadget/src/main/java/sample/camel/WidgetGadgetRoute.java +++ b/examples/camel-example-spring-boot-widget-gadget/src/main/java/sample/camel/WidgetGadgetRoute.java @@ -1,3 +1,19 @@ +/* + * 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. + */ package sample.camel; import org.apache.camel.builder.RouteBuilder; diff --git a/examples/camel-example-spring-boot-widget-gadget/src/main/resources/application.properties b/examples/camel-example-spring-boot-widget-gadget/src/main/resources/application.properties index 398de92..f6cfb50 100644 --- a/examples/camel-example-spring-boot-widget-gadget/src/main/resources/application.properties +++ b/examples/camel-example-spring-boot-widget-gadget/src/main/resources/application.properties @@ -1,3 +1,20 @@ +## --------------------------------------------------------------------------- +## 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. +## --------------------------------------------------------------------------- + spring.artemis.mode=native AMQP_REMOTE_URI=amqp://localhost:5672 AMQP_SERVICE_USERNAME=admin
