This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 243e7e61c4ffaa8fff36cc479403d40e07c77bff
Author: Claus Ibsen <claus.ib...@gmail.com>
AuthorDate: Thu May 7 09:32:58 2020 +0200

    Fixed license
---
 .../robotframework/RobotFrameworkCamelUtilsTest.java    |  3 ++-
 .../robotframework/RobotFrameworkComponentTest.java     |  5 +++++
 ...amel.component.undertow.spi.UndertowSecurityProvider | 17 +++++++++++++++++
 pom.xml                                                 |  1 +
 4 files changed, 25 insertions(+), 1 deletion(-)

diff --git 
a/components/camel-robotframework/src/test/java/org/apache/camel/component/robotframework/RobotFrameworkCamelUtilsTest.java
 
b/components/camel-robotframework/src/test/java/org/apache/camel/component/robotframework/RobotFrameworkCamelUtilsTest.java
index 4fe9baa..7862bc3 100644
--- 
a/components/camel-robotframework/src/test/java/org/apache/camel/component/robotframework/RobotFrameworkCamelUtilsTest.java
+++ 
b/components/camel-robotframework/src/test/java/org/apache/camel/component/robotframework/RobotFrameworkCamelUtilsTest.java
@@ -117,7 +117,8 @@ public class RobotFrameworkCamelUtilsTest extends 
CamelTestSupport {
     protected RouteBuilder createRouteBuilder() throws Exception {
         return new RouteBuilder() {
             public void configure() {
-                
from("direct:setVariableCamelExchange").to("robotframework:src/test/resources/org/apache/camel/component/robotframework/set_variable_camel_exchange.robot?xunitFile=target/out.xml")
+                from("direct:setVariableCamelExchange")
+                    
.to("robotframework:src/test/resources/org/apache/camel/component/robotframework/set_variable_camel_exchange.robot?xunitFile=target/out.xml&outputDirectory=target")
                     .to("mock:result");
             }
         };
diff --git 
a/components/camel-robotframework/src/test/java/org/apache/camel/component/robotframework/RobotFrameworkComponentTest.java
 
b/components/camel-robotframework/src/test/java/org/apache/camel/component/robotframework/RobotFrameworkComponentTest.java
index e9de573..f6f03b0 100644
--- 
a/components/camel-robotframework/src/test/java/org/apache/camel/component/robotframework/RobotFrameworkComponentTest.java
+++ 
b/components/camel-robotframework/src/test/java/org/apache/camel/component/robotframework/RobotFrameworkComponentTest.java
@@ -16,6 +16,8 @@
  */
 package org.apache.camel.component.robotframework;
 
+import java.io.File;
+
 import org.apache.camel.Exchange;
 import org.apache.camel.builder.RouteBuilder;
 import org.apache.camel.component.mock.MockEndpoint;
@@ -111,6 +113,9 @@ public class RobotFrameworkComponentTest extends 
CamelTestSupport {
     protected RouteBuilder createRouteBuilder() throws Exception {
         return new RouteBuilder() {
             public void configure() {
+                RobotFrameworkComponent rf = 
context.getComponent("robotframework", RobotFrameworkComponent.class);
+                rf.getConfiguration().setOutputDirectory(new File("target"));
+
                 
from("direct:setVariableCamelBody").to("robotframework:src/test/resources/org/apache/camel/component/robotframework/set_variable_camel_body.robot?xunitFile=target/out.xml")
                     .to("mock:result");
 
diff --git 
a/components/camel-undertow-spring-security/src/main/resources/META-INF/services/org.apache.camel.component.undertow.spi.UndertowSecurityProvider
 
b/components/camel-undertow-spring-security/src/main/resources/META-INF/services/org.apache.camel.component.undertow.spi.UndertowSecurityProvider
index d185902..8232782 100644
--- 
a/components/camel-undertow-spring-security/src/main/resources/META-INF/services/org.apache.camel.component.undertow.spi.UndertowSecurityProvider
+++ 
b/components/camel-undertow-spring-security/src/main/resources/META-INF/services/org.apache.camel.component.undertow.spi.UndertowSecurityProvider
@@ -1 +1,18 @@
+# ---------------------------------------------------------------------------
+# 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.
+# ---------------------------------------------------------------------------
+
 org.apache.camel.component.spring.security.SpringSecurityProvider
\ No newline at end of file
diff --git a/pom.xml b/pom.xml
index dbc3382..9fd3c62 100644
--- a/pom.xml
+++ b/pom.xml
@@ -319,6 +319,7 @@
                                 
**/src/main/resources/META-INF/services/org.kie.server.services.api.KieServerExtension
                             </exclude>
                             <exclude>**/META-INF/MANIFEST.MF</exclude>
+                            <exclude>**/openapi.yaml</exclude>
                             <!-- Maven Wrapper -->
                             <exclude>.mvn/**/*</exclude>
                         </excludes>

Reply via email to