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

lburgazzoli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-k-runtime.git

commit 50adeda2269edaa7376c0cebb7cc10fbbc044240
Author: lburgazzoli <lburgazz...@gmail.com>
AuthorDate: Tue Jun 25 13:33:59 2019 +0200

    chekstyle(license): fix violations
---
 .../camel-k-runtime-example-health/src/main/resources/routes.groovy    | 3 +--
 .../camel-k-runtime-example-servlet/src/main/resources/routes.groovy   | 3 +--
 .../main/groovy/org/apache/camel/k/groovy/GroovyRoutesLoader.groovy    | 2 +-
 .../groovy/org/apache/camel/k/groovy/dsl/ComponentConfiguration.groovy | 2 +-
 .../org/apache/camel/k/groovy/dsl/ComponentsConfiguration.groovy       | 2 +-
 .../groovy/org/apache/camel/k/groovy/dsl/ContextConfiguration.groovy   | 2 +-
 .../org/apache/camel/k/groovy/dsl/IntegrationConfiguration.groovy      | 2 +-
 .../groovy/org/apache/camel/k/groovy/dsl/RegistryConfiguration.groovy  | 2 +-
 .../main/groovy/org/apache/camel/k/groovy/dsl/RestConfiguration.groovy | 2 +-
 .../org/apache/camel/k/groovy/extension/LogComponentExtension.groovy   | 2 +-
 .../src/test/groovy/org/apache/camel/k/groovy/LoaderTest.groovy        | 2 +-
 .../test/groovy/org/apache/camel/k/groovy/dsl/IntegrationTest.groovy   | 2 +-
 .../org/apache/camel/k/groovy/dsl/extension/LogExtensionTest.groovy    | 2 +-
 camel-k-runtime-groovy/src/test/resources/routes-with-bindings.groovy  | 2 +-
 .../src/test/resources/routes-with-component-configuration.groovy      | 2 +-
 camel-k-runtime-groovy/src/test/resources/routes-with-rest.groovy      | 3 +--
 camel-k-runtime-groovy/src/test/resources/routes.groovy                | 3 +--
 .../src/test/groovy/org/apache/camel/k/yaml/RouteDefinitionTest.groovy | 2 +-
 .../src/test/groovy/org/apache/camel/k/yaml/RouteTest.groovy           | 2 +-
 .../src/test/groovy/org/apache/camel/k/yaml/TestSupport.groovy         | 2 +-
 .../src/test/groovy/org/apache/camel/k/yaml/parser/ChoiceTest.groovy   | 2 +-
 .../test/groovy/org/apache/camel/k/yaml/parser/ClaimCheckTest.groovy   | 2 +-
 .../test/groovy/org/apache/camel/k/yaml/parser/ConvertBodyTest.groovy  | 2 +-
 .../src/test/groovy/org/apache/camel/k/yaml/parser/DelayTest.groovy    | 2 +-
 .../groovy/org/apache/camel/k/yaml/parser/DynamicRouterTest.groovy     | 2 +-
 .../src/test/groovy/org/apache/camel/k/yaml/parser/FilterTest.groovy   | 2 +-
 .../src/test/groovy/org/apache/camel/k/yaml/parser/FromTest.groovy     | 2 +-
 .../src/test/groovy/org/apache/camel/k/yaml/parser/LogTest.groovy      | 2 +-
 .../src/test/groovy/org/apache/camel/k/yaml/parser/MarshalTest.groovy  | 2 +-
 .../src/test/groovy/org/apache/camel/k/yaml/parser/PipelineTest.groovy | 2 +-
 .../src/test/groovy/org/apache/camel/k/yaml/parser/ProcessTest.groovy  | 2 +-
 .../test/groovy/org/apache/camel/k/yaml/parser/RemoveHeaderTest.groovy | 2 +-
 .../groovy/org/apache/camel/k/yaml/parser/RemoveHeadersTest.groovy     | 2 +-
 .../groovy/org/apache/camel/k/yaml/parser/RemovePropertiesTest.groovy  | 2 +-
 .../groovy/org/apache/camel/k/yaml/parser/RemovePropertyTest.groovy    | 2 +-
 .../src/test/groovy/org/apache/camel/k/yaml/parser/RestTest.groovy     | 2 +-
 .../src/test/groovy/org/apache/camel/k/yaml/parser/SetBodyTest.groovy  | 2 +-
 .../test/groovy/org/apache/camel/k/yaml/parser/SetHeaderTest.groovy    | 2 +-
 .../test/groovy/org/apache/camel/k/yaml/parser/SetPropertyTest.groovy  | 2 +-
 .../src/test/groovy/org/apache/camel/k/yaml/parser/SplitTest.groovy    | 2 +-
 .../test/groovy/org/apache/camel/k/yaml/parser/ToDynamicTest.groovy    | 2 +-
 .../src/test/groovy/org/apache/camel/k/yaml/parser/ToTest.groovy       | 2 +-
 .../test/groovy/org/apache/camel/k/yaml/parser/UnmarshalTest.groovy    | 2 +-
 pom.xml                                                                | 1 +
 44 files changed, 44 insertions(+), 47 deletions(-)

diff --git 
a/camel-k-runtime-examples/camel-k-runtime-example-health/src/main/resources/routes.groovy
 
b/camel-k-runtime-examples/camel-k-runtime-example-health/src/main/resources/routes.groovy
index ebfb2f5..452b215 100644
--- 
a/camel-k-runtime-examples/camel-k-runtime-example-health/src/main/resources/routes.groovy
+++ 
b/camel-k-runtime-examples/camel-k-runtime-example-health/src/main/resources/routes.groovy
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.
@@ -15,7 +15,6 @@
  * limitations under the License.
  */
 
-
 from('servlet:/test')
     .convertBodyTo(String.class)
     .to('log:info')
\ No newline at end of file
diff --git 
a/camel-k-runtime-examples/camel-k-runtime-example-servlet/src/main/resources/routes.groovy
 
b/camel-k-runtime-examples/camel-k-runtime-example-servlet/src/main/resources/routes.groovy
index ebfb2f5..452b215 100644
--- 
a/camel-k-runtime-examples/camel-k-runtime-example-servlet/src/main/resources/routes.groovy
+++ 
b/camel-k-runtime-examples/camel-k-runtime-example-servlet/src/main/resources/routes.groovy
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.
@@ -15,7 +15,6 @@
  * limitations under the License.
  */
 
-
 from('servlet:/test')
     .convertBodyTo(String.class)
     .to('log:info')
\ No newline at end of file
diff --git 
a/camel-k-runtime-groovy/src/main/groovy/org/apache/camel/k/groovy/GroovyRoutesLoader.groovy
 
b/camel-k-runtime-groovy/src/main/groovy/org/apache/camel/k/groovy/GroovyRoutesLoader.groovy
index daf397a..129fea7 100644
--- 
a/camel-k-runtime-groovy/src/main/groovy/org/apache/camel/k/groovy/GroovyRoutesLoader.groovy
+++ 
b/camel-k-runtime-groovy/src/main/groovy/org/apache/camel/k/groovy/GroovyRoutesLoader.groovy
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.
diff --git 
a/camel-k-runtime-groovy/src/main/groovy/org/apache/camel/k/groovy/dsl/ComponentConfiguration.groovy
 
b/camel-k-runtime-groovy/src/main/groovy/org/apache/camel/k/groovy/dsl/ComponentConfiguration.groovy
index 6ff877f..19a3b4b 100644
--- 
a/camel-k-runtime-groovy/src/main/groovy/org/apache/camel/k/groovy/dsl/ComponentConfiguration.groovy
+++ 
b/camel-k-runtime-groovy/src/main/groovy/org/apache/camel/k/groovy/dsl/ComponentConfiguration.groovy
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.
diff --git 
a/camel-k-runtime-groovy/src/main/groovy/org/apache/camel/k/groovy/dsl/ComponentsConfiguration.groovy
 
b/camel-k-runtime-groovy/src/main/groovy/org/apache/camel/k/groovy/dsl/ComponentsConfiguration.groovy
index 8071e34..7f147be 100644
--- 
a/camel-k-runtime-groovy/src/main/groovy/org/apache/camel/k/groovy/dsl/ComponentsConfiguration.groovy
+++ 
b/camel-k-runtime-groovy/src/main/groovy/org/apache/camel/k/groovy/dsl/ComponentsConfiguration.groovy
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.
diff --git 
a/camel-k-runtime-groovy/src/main/groovy/org/apache/camel/k/groovy/dsl/ContextConfiguration.groovy
 
b/camel-k-runtime-groovy/src/main/groovy/org/apache/camel/k/groovy/dsl/ContextConfiguration.groovy
index 4902668..c5f332b 100644
--- 
a/camel-k-runtime-groovy/src/main/groovy/org/apache/camel/k/groovy/dsl/ContextConfiguration.groovy
+++ 
b/camel-k-runtime-groovy/src/main/groovy/org/apache/camel/k/groovy/dsl/ContextConfiguration.groovy
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.
diff --git 
a/camel-k-runtime-groovy/src/main/groovy/org/apache/camel/k/groovy/dsl/IntegrationConfiguration.groovy
 
b/camel-k-runtime-groovy/src/main/groovy/org/apache/camel/k/groovy/dsl/IntegrationConfiguration.groovy
index f9501cc..6af42ab 100644
--- 
a/camel-k-runtime-groovy/src/main/groovy/org/apache/camel/k/groovy/dsl/IntegrationConfiguration.groovy
+++ 
b/camel-k-runtime-groovy/src/main/groovy/org/apache/camel/k/groovy/dsl/IntegrationConfiguration.groovy
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.
diff --git 
a/camel-k-runtime-groovy/src/main/groovy/org/apache/camel/k/groovy/dsl/RegistryConfiguration.groovy
 
b/camel-k-runtime-groovy/src/main/groovy/org/apache/camel/k/groovy/dsl/RegistryConfiguration.groovy
index ce6b6ee..d444392 100644
--- 
a/camel-k-runtime-groovy/src/main/groovy/org/apache/camel/k/groovy/dsl/RegistryConfiguration.groovy
+++ 
b/camel-k-runtime-groovy/src/main/groovy/org/apache/camel/k/groovy/dsl/RegistryConfiguration.groovy
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.
diff --git 
a/camel-k-runtime-groovy/src/main/groovy/org/apache/camel/k/groovy/dsl/RestConfiguration.groovy
 
b/camel-k-runtime-groovy/src/main/groovy/org/apache/camel/k/groovy/dsl/RestConfiguration.groovy
index 1c9b917..1a461d9 100644
--- 
a/camel-k-runtime-groovy/src/main/groovy/org/apache/camel/k/groovy/dsl/RestConfiguration.groovy
+++ 
b/camel-k-runtime-groovy/src/main/groovy/org/apache/camel/k/groovy/dsl/RestConfiguration.groovy
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.
diff --git 
a/camel-k-runtime-groovy/src/main/groovy/org/apache/camel/k/groovy/extension/LogComponentExtension.groovy
 
b/camel-k-runtime-groovy/src/main/groovy/org/apache/camel/k/groovy/extension/LogComponentExtension.groovy
index 7c46c47..05b1458 100644
--- 
a/camel-k-runtime-groovy/src/main/groovy/org/apache/camel/k/groovy/extension/LogComponentExtension.groovy
+++ 
b/camel-k-runtime-groovy/src/main/groovy/org/apache/camel/k/groovy/extension/LogComponentExtension.groovy
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.
diff --git 
a/camel-k-runtime-groovy/src/test/groovy/org/apache/camel/k/groovy/LoaderTest.groovy
 
b/camel-k-runtime-groovy/src/test/groovy/org/apache/camel/k/groovy/LoaderTest.groovy
index 2104545..5a36700 100644
--- 
a/camel-k-runtime-groovy/src/test/groovy/org/apache/camel/k/groovy/LoaderTest.groovy
+++ 
b/camel-k-runtime-groovy/src/test/groovy/org/apache/camel/k/groovy/LoaderTest.groovy
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.
diff --git 
a/camel-k-runtime-groovy/src/test/groovy/org/apache/camel/k/groovy/dsl/IntegrationTest.groovy
 
b/camel-k-runtime-groovy/src/test/groovy/org/apache/camel/k/groovy/dsl/IntegrationTest.groovy
index bd700ca..d92ec11 100644
--- 
a/camel-k-runtime-groovy/src/test/groovy/org/apache/camel/k/groovy/dsl/IntegrationTest.groovy
+++ 
b/camel-k-runtime-groovy/src/test/groovy/org/apache/camel/k/groovy/dsl/IntegrationTest.groovy
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.
diff --git 
a/camel-k-runtime-groovy/src/test/groovy/org/apache/camel/k/groovy/dsl/extension/LogExtensionTest.groovy
 
b/camel-k-runtime-groovy/src/test/groovy/org/apache/camel/k/groovy/dsl/extension/LogExtensionTest.groovy
index 57eb587..2465647 100644
--- 
a/camel-k-runtime-groovy/src/test/groovy/org/apache/camel/k/groovy/dsl/extension/LogExtensionTest.groovy
+++ 
b/camel-k-runtime-groovy/src/test/groovy/org/apache/camel/k/groovy/dsl/extension/LogExtensionTest.groovy
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.
diff --git 
a/camel-k-runtime-groovy/src/test/resources/routes-with-bindings.groovy 
b/camel-k-runtime-groovy/src/test/resources/routes-with-bindings.groovy
index aced849..b6941f7 100644
--- a/camel-k-runtime-groovy/src/test/resources/routes-with-bindings.groovy
+++ b/camel-k-runtime-groovy/src/test/resources/routes-with-bindings.groovy
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.
diff --git 
a/camel-k-runtime-groovy/src/test/resources/routes-with-component-configuration.groovy
 
b/camel-k-runtime-groovy/src/test/resources/routes-with-component-configuration.groovy
index d80dddb..abc4b04 100644
--- 
a/camel-k-runtime-groovy/src/test/resources/routes-with-component-configuration.groovy
+++ 
b/camel-k-runtime-groovy/src/test/resources/routes-with-component-configuration.groovy
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.
diff --git a/camel-k-runtime-groovy/src/test/resources/routes-with-rest.groovy 
b/camel-k-runtime-groovy/src/test/resources/routes-with-rest.groovy
index b79879a..4bab92f 100644
--- a/camel-k-runtime-groovy/src/test/resources/routes-with-rest.groovy
+++ b/camel-k-runtime-groovy/src/test/resources/routes-with-rest.groovy
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.
@@ -14,7 +14,6 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-
 rest {
     configuration {
         host 'my-host'
diff --git a/camel-k-runtime-groovy/src/test/resources/routes.groovy 
b/camel-k-runtime-groovy/src/test/resources/routes.groovy
index df2f1d4..ceac916 100644
--- a/camel-k-runtime-groovy/src/test/resources/routes.groovy
+++ b/camel-k-runtime-groovy/src/test/resources/routes.groovy
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.
@@ -14,6 +14,5 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-
 from('timer:tick')
     .to('log:info')
\ No newline at end of file
diff --git 
a/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/RouteDefinitionTest.groovy
 
b/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/RouteDefinitionTest.groovy
index fed779c..d0eb55f 100644
--- 
a/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/RouteDefinitionTest.groovy
+++ 
b/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/RouteDefinitionTest.groovy
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.
diff --git 
a/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/RouteTest.groovy 
b/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/RouteTest.groovy
index e8d4800..dbf8564 100644
--- 
a/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/RouteTest.groovy
+++ 
b/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/RouteTest.groovy
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.
diff --git 
a/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/TestSupport.groovy
 
b/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/TestSupport.groovy
index 3c17123..543d124 100644
--- 
a/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/TestSupport.groovy
+++ 
b/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/TestSupport.groovy
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.
diff --git 
a/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/ChoiceTest.groovy
 
b/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/ChoiceTest.groovy
index ca6865a..e06acdc 100644
--- 
a/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/ChoiceTest.groovy
+++ 
b/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/ChoiceTest.groovy
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.
diff --git 
a/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/ClaimCheckTest.groovy
 
b/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/ClaimCheckTest.groovy
index ac5b3fc..2c163a0 100644
--- 
a/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/ClaimCheckTest.groovy
+++ 
b/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/ClaimCheckTest.groovy
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.
diff --git 
a/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/ConvertBodyTest.groovy
 
b/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/ConvertBodyTest.groovy
index 6d674a0..35bd454 100644
--- 
a/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/ConvertBodyTest.groovy
+++ 
b/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/ConvertBodyTest.groovy
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.
diff --git 
a/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/DelayTest.groovy
 
b/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/DelayTest.groovy
index 62487e4..d116c0d 100644
--- 
a/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/DelayTest.groovy
+++ 
b/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/DelayTest.groovy
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.
diff --git 
a/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/DynamicRouterTest.groovy
 
b/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/DynamicRouterTest.groovy
index 5577c2c..fe8b79f 100644
--- 
a/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/DynamicRouterTest.groovy
+++ 
b/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/DynamicRouterTest.groovy
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.
diff --git 
a/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/FilterTest.groovy
 
b/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/FilterTest.groovy
index 7545426..91a4d5c 100644
--- 
a/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/FilterTest.groovy
+++ 
b/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/FilterTest.groovy
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.
diff --git 
a/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/FromTest.groovy
 
b/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/FromTest.groovy
index dcf2b5c..72fda32 100644
--- 
a/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/FromTest.groovy
+++ 
b/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/FromTest.groovy
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.
diff --git 
a/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/LogTest.groovy
 
b/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/LogTest.groovy
index 4ed7103..bfae9f9 100644
--- 
a/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/LogTest.groovy
+++ 
b/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/LogTest.groovy
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.
diff --git 
a/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/MarshalTest.groovy
 
b/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/MarshalTest.groovy
index 7915316..e65e0ae 100644
--- 
a/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/MarshalTest.groovy
+++ 
b/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/MarshalTest.groovy
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.
diff --git 
a/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/PipelineTest.groovy
 
b/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/PipelineTest.groovy
index 0020f0e..c58ff9b 100644
--- 
a/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/PipelineTest.groovy
+++ 
b/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/PipelineTest.groovy
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.
diff --git 
a/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/ProcessTest.groovy
 
b/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/ProcessTest.groovy
index 3002e6f..f5da18f 100644
--- 
a/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/ProcessTest.groovy
+++ 
b/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/ProcessTest.groovy
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.
diff --git 
a/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/RemoveHeaderTest.groovy
 
b/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/RemoveHeaderTest.groovy
index 4f546f4..f2f700e 100644
--- 
a/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/RemoveHeaderTest.groovy
+++ 
b/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/RemoveHeaderTest.groovy
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.
diff --git 
a/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/RemoveHeadersTest.groovy
 
b/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/RemoveHeadersTest.groovy
index 8c96836..4a164a3 100644
--- 
a/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/RemoveHeadersTest.groovy
+++ 
b/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/RemoveHeadersTest.groovy
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.
diff --git 
a/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/RemovePropertiesTest.groovy
 
b/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/RemovePropertiesTest.groovy
index 601ab9c..add30aa 100644
--- 
a/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/RemovePropertiesTest.groovy
+++ 
b/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/RemovePropertiesTest.groovy
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.
diff --git 
a/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/RemovePropertyTest.groovy
 
b/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/RemovePropertyTest.groovy
index c4bf046..2e0684b 100644
--- 
a/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/RemovePropertyTest.groovy
+++ 
b/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/RemovePropertyTest.groovy
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.
diff --git 
a/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/RestTest.groovy
 
b/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/RestTest.groovy
index b9648c6..5c18da3 100644
--- 
a/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/RestTest.groovy
+++ 
b/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/RestTest.groovy
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.
diff --git 
a/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/SetBodyTest.groovy
 
b/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/SetBodyTest.groovy
index 7c38d09..8a8e34c 100644
--- 
a/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/SetBodyTest.groovy
+++ 
b/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/SetBodyTest.groovy
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.
diff --git 
a/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/SetHeaderTest.groovy
 
b/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/SetHeaderTest.groovy
index e2feff9..74b94f3 100644
--- 
a/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/SetHeaderTest.groovy
+++ 
b/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/SetHeaderTest.groovy
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.
diff --git 
a/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/SetPropertyTest.groovy
 
b/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/SetPropertyTest.groovy
index 3be6809..04fa79e 100644
--- 
a/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/SetPropertyTest.groovy
+++ 
b/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/SetPropertyTest.groovy
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.
diff --git 
a/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/SplitTest.groovy
 
b/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/SplitTest.groovy
index 44b314b..c798ab6 100644
--- 
a/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/SplitTest.groovy
+++ 
b/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/SplitTest.groovy
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.
diff --git 
a/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/ToDynamicTest.groovy
 
b/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/ToDynamicTest.groovy
index 0036d13..65cda84 100644
--- 
a/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/ToDynamicTest.groovy
+++ 
b/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/ToDynamicTest.groovy
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.
diff --git 
a/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/ToTest.groovy
 
b/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/ToTest.groovy
index dff77d6..fbdcd6c 100644
--- 
a/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/ToTest.groovy
+++ 
b/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/ToTest.groovy
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.
diff --git 
a/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/UnmarshalTest.groovy
 
b/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/UnmarshalTest.groovy
index f15a78a..95834ed 100644
--- 
a/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/UnmarshalTest.groovy
+++ 
b/camel-k-runtime-yaml/src/test/groovy/org/apache/camel/k/yaml/parser/UnmarshalTest.groovy
@@ -1,4 +1,4 @@
-/**
+/*
  * 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.
diff --git a/pom.xml b/pom.xml
index a1238dd..a919d47 100644
--- a/pom.xml
+++ b/pom.xml
@@ -460,6 +460,7 @@
                             </excludes>
                             <mapping>
                                 <java>SLASHSTAR_STYLE</java>
+                                <groovy>SLASHSTAR_STYLE</groovy>
                                 <properties>CAMEL_PROPERTIES_STYLE</properties>
                                 
<spring.factories>CAMEL_PROPERTIES_STYLE</spring.factories>
                                 
<spring.provides>CAMEL_PROPERTIES_STYLE</spring.provides>

Reply via email to