You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by zr...@apache.org on 2017/04/19 08:35:46 UTC

[01/13] camel git commit: CAMEL-11165 Add @Generated annotation to code g...

Repository: camel
Updated Branches:
  refs/heads/master dd940e926 -> 492bef343


CAMEL-11165 Add @Generated annotation to code g...

...enerated by SpringBootAutoConfigurationMojo

This removes the `date` annotation member, so that generation timestamps
do not create source code difference when code gets regenerated on clean
build.


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/583d6dce
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/583d6dce
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/583d6dce

Branch: refs/heads/master
Commit: 583d6dce4f42ae320107c4a16b13af68870b228b
Parents: dd940e9
Author: Zoran Regvart <zr...@apache.org>
Authored: Wed Apr 19 10:00:45 2017 +0200
Committer: Zoran Regvart <zr...@apache.org>
Committed: Wed Apr 19 10:29:00 2017 +0200

----------------------------------------------------------------------
 .../SpringBootAutoConfigurationMojo.java        | 33 +++++++-------------
 1 file changed, 11 insertions(+), 22 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/583d6dce/tooling/maven/camel-package-maven-plugin/src/main/java/org/apache/camel/maven/packaging/SpringBootAutoConfigurationMojo.java
----------------------------------------------------------------------
diff --git a/tooling/maven/camel-package-maven-plugin/src/main/java/org/apache/camel/maven/packaging/SpringBootAutoConfigurationMojo.java b/tooling/maven/camel-package-maven-plugin/src/main/java/org/apache/camel/maven/packaging/SpringBootAutoConfigurationMojo.java
index bba8ecf..57dd4649d 100644
--- a/tooling/maven/camel-package-maven-plugin/src/main/java/org/apache/camel/maven/packaging/SpringBootAutoConfigurationMojo.java
+++ b/tooling/maven/camel-package-maven-plugin/src/main/java/org/apache/camel/maven/packaging/SpringBootAutoConfigurationMojo.java
@@ -304,8 +304,7 @@ public class SpringBootAutoConfigurationMojo extends AbstractMojo {
             doc = model.getDescription() + "\n\n" + doc;
         }
         commonClass.getJavaDoc().setFullText(doc);
-        commonClass.addAnnotation(Generated.class).setStringValue("value", SpringBootAutoConfigurationMojo.class.getName())
-        .setStringValue("date", Instant.now().toString());
+        commonClass.addAnnotation(Generated.class).setStringValue("value", SpringBootAutoConfigurationMojo.class.getName());
 
         for (OtherOptionModel option : model.getOptions()) {
             String type = option.getJavaType();
@@ -351,8 +350,7 @@ public class SpringBootAutoConfigurationMojo extends AbstractMojo {
             configClass.setPackage(packageName);
             configClass.setName(configName);
             configClass.extendSuperType(commonClass);
-            configClass.addAnnotation(Generated.class).setStringValue("value", SpringBootAutoConfigurationMojo.class.getName())
-            .setStringValue("date", Instant.now().toString());
+            configClass.addAnnotation(Generated.class).setStringValue("value", SpringBootAutoConfigurationMojo.class.getName());
             configClass.addAnnotation("org.springframework.boot.context.properties.ConfigurationProperties").setStringValue("prefix", propertiesPrefix);
             configClass.addImport(Map.class);
             configClass.addImport(HashMap.class);
@@ -402,8 +400,7 @@ public class SpringBootAutoConfigurationMojo extends AbstractMojo {
         JavaClassSource javaClass = Roaster.create(JavaClassSource.class);
         javaClass.setPackage(packageName);
         javaClass.setName(className);
-        javaClass.addAnnotation(Generated.class).setStringValue("value", SpringBootAutoConfigurationMojo.class.getName())
-        .setStringValue("date", Instant.now().toString());
+        javaClass.addAnnotation(Generated.class).setStringValue("value", SpringBootAutoConfigurationMojo.class.getName());
         javaClass.addAnnotation("org.springframework.boot.context.properties.ConfigurationProperties").setStringValue("prefix", propertiesPrefix);
 
         String doc = "Generated by camel-package-maven-plugin - do not edit this file!";
@@ -467,8 +464,7 @@ public class SpringBootAutoConfigurationMojo extends AbstractMojo {
         String doc = "Generated by camel-package-maven-plugin - do not edit this file!";
         javaClass.getJavaDoc().setFullText(doc);
 
-        javaClass.addAnnotation(Generated.class).setStringValue("value", SpringBootAutoConfigurationMojo.class.getName())
-        .setStringValue("date", Instant.now().toString());
+        javaClass.addAnnotation(Generated.class).setStringValue("value", SpringBootAutoConfigurationMojo.class.getName());
         javaClass.addAnnotation(Configuration.class);
         javaClass.addAnnotation(ConditionalOnBean.class).setStringValue("type", "org.apache.camel.spring.boot.CamelAutoConfiguration");
         javaClass.addAnnotation(ConditionalOnProperty.class).setStringValue("name", "camel.rest.enabled").setLiteralValue("matchIfMissing", "true");
@@ -693,8 +689,7 @@ public class SpringBootAutoConfigurationMojo extends AbstractMojo {
         String prefix = "camel.component." + (overrideComponentName != null ? overrideComponentName : model.getScheme());
         // make sure prefix is in lower case
         prefix = prefix.toLowerCase(Locale.US);
-        javaClass.addAnnotation(Generated.class).setStringValue("value", SpringBootAutoConfigurationMojo.class.getName())
-        .setStringValue("date", Instant.now().toString());
+        javaClass.addAnnotation(Generated.class).setStringValue("value", SpringBootAutoConfigurationMojo.class.getName());
         javaClass.addAnnotation("org.springframework.boot.context.properties.ConfigurationProperties").setStringValue("prefix", prefix);
 
         Set<JavaClassSource> nestedTypes = new HashSet<>();
@@ -1046,8 +1041,7 @@ public class SpringBootAutoConfigurationMojo extends AbstractMojo {
         String prefix = "camel.dataformat." + (overrideDataFormatName != null ? overrideDataFormatName : model.getName());
         // make sure prefix is in lower case
         prefix = prefix.toLowerCase(Locale.US);
-        javaClass.addAnnotation(Generated.class).setStringValue("value", SpringBootAutoConfigurationMojo.class.getName())
-        .setStringValue("date", Instant.now().toString());
+        javaClass.addAnnotation(Generated.class).setStringValue("value", SpringBootAutoConfigurationMojo.class.getName());
         javaClass.addAnnotation("org.springframework.boot.context.properties.ConfigurationProperties").setStringValue("prefix", prefix);
 
         for (DataFormatOptionModel option : model.getDataFormatOptions()) {
@@ -1110,8 +1104,7 @@ public class SpringBootAutoConfigurationMojo extends AbstractMojo {
         String prefix = "camel.language." + (overrideLanguageName != null ? overrideLanguageName : model.getName());
         // make sure prefix is in lower case
         prefix = prefix.toLowerCase(Locale.US);
-        javaClass.addAnnotation(Generated.class).setStringValue("value", SpringBootAutoConfigurationMojo.class.getName())
-        .setStringValue("date", Instant.now().toString());
+        javaClass.addAnnotation(Generated.class).setStringValue("value", SpringBootAutoConfigurationMojo.class.getName());
         javaClass.addAnnotation("org.springframework.boot.context.properties.ConfigurationProperties").setStringValue("prefix", prefix);
 
         for (LanguageOptionModel option : model.getLanguageOptions()) {
@@ -1201,8 +1194,7 @@ public class SpringBootAutoConfigurationMojo extends AbstractMojo {
         String doc = "Generated by camel-package-maven-plugin - do not edit this file!";
         javaClass.getJavaDoc().setFullText(doc);
 
-        javaClass.addAnnotation(Generated.class).setStringValue("value", SpringBootAutoConfigurationMojo.class.getName())
-            .setStringValue("date", Instant.now().toString());
+        javaClass.addAnnotation(Generated.class).setStringValue("value", SpringBootAutoConfigurationMojo.class.getName());
         javaClass.addAnnotation(Configuration.class);
         javaClass.addAnnotation(ConditionalOnBean.class).setStringValue("type", "org.apache.camel.spring.boot.CamelAutoConfiguration");
         javaClass.addAnnotation(Conditional.class).setLiteralValue(name + ".Condition.class");
@@ -1277,8 +1269,7 @@ public class SpringBootAutoConfigurationMojo extends AbstractMojo {
         String doc = "Generated by camel-package-maven-plugin - do not edit this file!";
         javaClass.getJavaDoc().setFullText(doc);
 
-        javaClass.addAnnotation(Generated.class).setStringValue("value", SpringBootAutoConfigurationMojo.class.getName())
-        .setStringValue("date", Instant.now().toString());
+        javaClass.addAnnotation(Generated.class).setStringValue("value", SpringBootAutoConfigurationMojo.class.getName());
         javaClass.addAnnotation(Configuration.class);
         javaClass.addAnnotation(ConditionalOnBean.class).setStringValue("type", "org.apache.camel.spring.boot.CamelAutoConfiguration");
         javaClass.addAnnotation(Conditional.class).setLiteralValue(name + ".Condition.class");
@@ -1355,8 +1346,7 @@ public class SpringBootAutoConfigurationMojo extends AbstractMojo {
         String doc = "Generated by camel-package-maven-plugin - do not edit this file!";
         javaClass.getJavaDoc().setFullText(doc);
 
-        javaClass.addAnnotation(Generated.class).setStringValue("value", SpringBootAutoConfigurationMojo.class.getName())
-        .setStringValue("date", Instant.now().toString());
+        javaClass.addAnnotation(Generated.class).setStringValue("value", SpringBootAutoConfigurationMojo.class.getName());
         javaClass.addAnnotation(Configuration.class);
         javaClass.addAnnotation(ConditionalOnBean.class).setStringValue("type", "org.apache.camel.spring.boot.CamelAutoConfiguration");
         javaClass.addAnnotation(Conditional.class).setLiteralValue(name + ".Condition.class");
@@ -2059,8 +2049,7 @@ public class SpringBootAutoConfigurationMojo extends AbstractMojo {
         condition.setPublic();
         condition.setStatic(true);
         
-        condition.addAnnotation(Generated.class).setStringValue("value", SpringBootAutoConfigurationMojo.class.getName())
-        .setStringValue("date", Instant.now().toString());
+        condition.addAnnotation(Generated.class).setStringValue("value", SpringBootAutoConfigurationMojo.class.getName());
 
         String fullQualifiedType = prefix.endsWith(".") ? prefix +  type : prefix + "." + type;
 


[07/13] camel git commit: CAMEL-11165 Add @Generated annotation to code g...

Posted by zr...@apache.org.
http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-hessian-starter/src/main/java/org/apache/camel/dataformat/hessian/springboot/HessianDataFormatAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-hessian-starter/src/main/java/org/apache/camel/dataformat/hessian/springboot/HessianDataFormatAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-hessian-starter/src/main/java/org/apache/camel/dataformat/hessian/springboot/HessianDataFormatAutoConfiguration.java
index 11c817e..4629150 100644
--- a/platforms/spring-boot/components-starter/camel-hessian-starter/src/main/java/org/apache/camel/dataformat/hessian/springboot/HessianDataFormatAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-hessian-starter/src/main/java/org/apache/camel/dataformat/hessian/springboot/HessianDataFormatAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.dataformat.hessian.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.CamelContextAware;
 import org.apache.camel.RuntimeCamelException;
@@ -43,6 +44,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(HessianDataFormatAutoConfiguration.Condition.class)
@@ -82,6 +84,7 @@ public class HessianDataFormatAutoConfiguration {
         };
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-hessian-starter/src/main/java/org/apache/camel/dataformat/hessian/springboot/HessianDataFormatConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-hessian-starter/src/main/java/org/apache/camel/dataformat/hessian/springboot/HessianDataFormatConfiguration.java b/platforms/spring-boot/components-starter/camel-hessian-starter/src/main/java/org/apache/camel/dataformat/hessian/springboot/HessianDataFormatConfiguration.java
index b00d46d..2a48dc4 100644
--- a/platforms/spring-boot/components-starter/camel-hessian-starter/src/main/java/org/apache/camel/dataformat/hessian/springboot/HessianDataFormatConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-hessian-starter/src/main/java/org/apache/camel/dataformat/hessian/springboot/HessianDataFormatConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.dataformat.hessian.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -23,6 +24,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.dataformat.hessian")
 public class HessianDataFormatConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-hipchat-starter/src/main/java/org/apache/camel/component/hipchat/springboot/HipchatComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-hipchat-starter/src/main/java/org/apache/camel/component/hipchat/springboot/HipchatComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-hipchat-starter/src/main/java/org/apache/camel/component/hipchat/springboot/HipchatComponentAutoConfiguration.java
index 7e450a4..ee16b53 100644
--- a/platforms/spring-boot/components-starter/camel-hipchat-starter/src/main/java/org/apache/camel/component/hipchat/springboot/HipchatComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-hipchat-starter/src/main/java/org/apache/camel/component/hipchat/springboot/HipchatComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.hipchat.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.hipchat.HipchatComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(HipchatComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class HipchatComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-hl7-starter/src/main/java/org/apache/camel/component/hl7/springboot/HL7DataFormatAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-hl7-starter/src/main/java/org/apache/camel/component/hl7/springboot/HL7DataFormatAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-hl7-starter/src/main/java/org/apache/camel/component/hl7/springboot/HL7DataFormatAutoConfiguration.java
index 55a1bed..242569d 100644
--- a/platforms/spring-boot/components-starter/camel-hl7-starter/src/main/java/org/apache/camel/component/hl7/springboot/HL7DataFormatAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-hl7-starter/src/main/java/org/apache/camel/component/hl7/springboot/HL7DataFormatAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.hl7.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.CamelContextAware;
 import org.apache.camel.RuntimeCamelException;
@@ -43,6 +44,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(HL7DataFormatAutoConfiguration.Condition.class)
@@ -82,6 +84,7 @@ public class HL7DataFormatAutoConfiguration {
         };
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-hl7-starter/src/main/java/org/apache/camel/component/hl7/springboot/HL7DataFormatConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-hl7-starter/src/main/java/org/apache/camel/component/hl7/springboot/HL7DataFormatConfiguration.java b/platforms/spring-boot/components-starter/camel-hl7-starter/src/main/java/org/apache/camel/component/hl7/springboot/HL7DataFormatConfiguration.java
index f25f772..f20bde9 100644
--- a/platforms/spring-boot/components-starter/camel-hl7-starter/src/main/java/org/apache/camel/component/hl7/springboot/HL7DataFormatConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-hl7-starter/src/main/java/org/apache/camel/component/hl7/springboot/HL7DataFormatConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.hl7.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -23,6 +24,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.dataformat.hl7")
 public class HL7DataFormatConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-hl7-starter/src/main/java/org/apache/camel/component/hl7/springboot/TerserLanguageAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-hl7-starter/src/main/java/org/apache/camel/component/hl7/springboot/TerserLanguageAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-hl7-starter/src/main/java/org/apache/camel/component/hl7/springboot/TerserLanguageAutoConfiguration.java
index f64fe5e..bdeb045 100644
--- a/platforms/spring-boot/components-starter/camel-hl7-starter/src/main/java/org/apache/camel/component/hl7/springboot/TerserLanguageAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-hl7-starter/src/main/java/org/apache/camel/component/hl7/springboot/TerserLanguageAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.hl7.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.CamelContextAware;
 import org.apache.camel.component.hl7.TerserLanguage;
@@ -41,6 +42,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(TerserLanguageAutoConfiguration.Condition.class)
@@ -70,6 +72,7 @@ public class TerserLanguageAutoConfiguration {
         return language;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-hl7-starter/src/main/java/org/apache/camel/component/hl7/springboot/TerserLanguageConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-hl7-starter/src/main/java/org/apache/camel/component/hl7/springboot/TerserLanguageConfiguration.java b/platforms/spring-boot/components-starter/camel-hl7-starter/src/main/java/org/apache/camel/component/hl7/springboot/TerserLanguageConfiguration.java
index 8551aa9..e13994a 100644
--- a/platforms/spring-boot/components-starter/camel-hl7-starter/src/main/java/org/apache/camel/component/hl7/springboot/TerserLanguageConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-hl7-starter/src/main/java/org/apache/camel/component/hl7/springboot/TerserLanguageConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.hl7.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -23,6 +24,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.language.terser")
 public class TerserLanguageConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-http-starter/src/main/java/org/apache/camel/component/http/springboot/HttpComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-http-starter/src/main/java/org/apache/camel/component/http/springboot/HttpComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-http-starter/src/main/java/org/apache/camel/component/http/springboot/HttpComponentAutoConfiguration.java
index 338d58a..96daf13 100644
--- a/platforms/spring-boot/components-starter/camel-http-starter/src/main/java/org/apache/camel/component/http/springboot/HttpComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-http-starter/src/main/java/org/apache/camel/component/http/springboot/HttpComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.http.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.http.HttpComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(HttpComponentAutoConfiguration.Condition.class)
@@ -83,6 +85,7 @@ public class HttpComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-http-starter/src/main/java/org/apache/camel/component/http/springboot/HttpComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-http-starter/src/main/java/org/apache/camel/component/http/springboot/HttpComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-http-starter/src/main/java/org/apache/camel/component/http/springboot/HttpComponentConfiguration.java
index 02c86e8..62b4821 100644
--- a/platforms/spring-boot/components-starter/camel-http-starter/src/main/java/org/apache/camel/component/http/springboot/HttpComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-http-starter/src/main/java/org/apache/camel/component/http/springboot/HttpComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.http.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.component.http.HttpClientConfigurer;
 import org.apache.camel.http.common.HttpBinding;
 import org.apache.camel.http.common.HttpConfiguration;
@@ -29,6 +30,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.http")
 public class HttpComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-http4-starter/src/main/java/org/apache/camel/component/http4/springboot/HttpComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-http4-starter/src/main/java/org/apache/camel/component/http4/springboot/HttpComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-http4-starter/src/main/java/org/apache/camel/component/http4/springboot/HttpComponentAutoConfiguration.java
index 4530a87..040655f 100644
--- a/platforms/spring-boot/components-starter/camel-http4-starter/src/main/java/org/apache/camel/component/http4/springboot/HttpComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-http4-starter/src/main/java/org/apache/camel/component/http4/springboot/HttpComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.http4.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.http4.HttpComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(HttpComponentAutoConfiguration.Condition.class)
@@ -83,6 +85,7 @@ public class HttpComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-http4-starter/src/main/java/org/apache/camel/component/http4/springboot/HttpComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-http4-starter/src/main/java/org/apache/camel/component/http4/springboot/HttpComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-http4-starter/src/main/java/org/apache/camel/component/http4/springboot/HttpComponentConfiguration.java
index d80edc8..78aa3ff 100644
--- a/platforms/spring-boot/components-starter/camel-http4-starter/src/main/java/org/apache/camel/component/http4/springboot/HttpComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-http4-starter/src/main/java/org/apache/camel/component/http4/springboot/HttpComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.http4.springboot;
 
+import javax.annotation.Generated;
 import javax.net.ssl.HostnameVerifier;
 import org.apache.camel.component.http4.HttpClientConfigurer;
 import org.apache.camel.http.common.HttpBinding;
@@ -33,6 +34,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.http4")
 public class HttpComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-ical-starter/src/main/java/org/apache/camel/component/ical/springboot/ICalDataFormatAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-ical-starter/src/main/java/org/apache/camel/component/ical/springboot/ICalDataFormatAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-ical-starter/src/main/java/org/apache/camel/component/ical/springboot/ICalDataFormatAutoConfiguration.java
index b799b7d..36ec2a5 100644
--- a/platforms/spring-boot/components-starter/camel-ical-starter/src/main/java/org/apache/camel/component/ical/springboot/ICalDataFormatAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-ical-starter/src/main/java/org/apache/camel/component/ical/springboot/ICalDataFormatAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.ical.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.CamelContextAware;
 import org.apache.camel.RuntimeCamelException;
@@ -43,6 +44,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(ICalDataFormatAutoConfiguration.Condition.class)
@@ -82,6 +84,7 @@ public class ICalDataFormatAutoConfiguration {
         };
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-ical-starter/src/main/java/org/apache/camel/component/ical/springboot/ICalDataFormatConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-ical-starter/src/main/java/org/apache/camel/component/ical/springboot/ICalDataFormatConfiguration.java b/platforms/spring-boot/components-starter/camel-ical-starter/src/main/java/org/apache/camel/component/ical/springboot/ICalDataFormatConfiguration.java
index 88ddfa0..2b654ae 100644
--- a/platforms/spring-boot/components-starter/camel-ical-starter/src/main/java/org/apache/camel/component/ical/springboot/ICalDataFormatConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-ical-starter/src/main/java/org/apache/camel/component/ical/springboot/ICalDataFormatConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.ical.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -23,6 +24,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.dataformat.ical")
 public class ICalDataFormatConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-infinispan-starter/src/main/java/org/apache/camel/component/infinispan/springboot/InfinispanComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-infinispan-starter/src/main/java/org/apache/camel/component/infinispan/springboot/InfinispanComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-infinispan-starter/src/main/java/org/apache/camel/component/infinispan/springboot/InfinispanComponentAutoConfiguration.java
index 144791c..ae496d2 100644
--- a/platforms/spring-boot/components-starter/camel-infinispan-starter/src/main/java/org/apache/camel/component/infinispan/springboot/InfinispanComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-infinispan-starter/src/main/java/org/apache/camel/component/infinispan/springboot/InfinispanComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.infinispan.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.infinispan.InfinispanComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(InfinispanComponentAutoConfiguration.Condition.class)
@@ -84,6 +86,7 @@ public class InfinispanComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-infinispan-starter/src/main/java/org/apache/camel/component/infinispan/springboot/InfinispanComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-infinispan-starter/src/main/java/org/apache/camel/component/infinispan/springboot/InfinispanComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-infinispan-starter/src/main/java/org/apache/camel/component/infinispan/springboot/InfinispanComponentConfiguration.java
index c4afece..8fc56dd 100644
--- a/platforms/spring-boot/components-starter/camel-infinispan-starter/src/main/java/org/apache/camel/component/infinispan/springboot/InfinispanComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-infinispan-starter/src/main/java/org/apache/camel/component/infinispan/springboot/InfinispanComponentConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.infinispan.springboot;
 
 import java.util.Map;
 import java.util.Set;
+import javax.annotation.Generated;
 import org.apache.camel.component.infinispan.InfinispanCustomListener;
 import org.apache.camel.component.infinispan.InfinispanQueryBuilder;
 import org.infinispan.commons.api.BasicCacheContainer;
@@ -31,6 +32,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.infinispan")
 public class InfinispanComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-influxdb-starter/src/main/java/org/apache/camel/component/influxdb/springboot/InfluxDbComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-influxdb-starter/src/main/java/org/apache/camel/component/influxdb/springboot/InfluxDbComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-influxdb-starter/src/main/java/org/apache/camel/component/influxdb/springboot/InfluxDbComponentAutoConfiguration.java
index f7a0e26..9aa6fe0 100644
--- a/platforms/spring-boot/components-starter/camel-influxdb-starter/src/main/java/org/apache/camel/component/influxdb/springboot/InfluxDbComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-influxdb-starter/src/main/java/org/apache/camel/component/influxdb/springboot/InfluxDbComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.influxdb.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.influxdb.InfluxDbComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(InfluxDbComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class InfluxDbComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-irc-starter/src/main/java/org/apache/camel/component/irc/springboot/IrcComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-irc-starter/src/main/java/org/apache/camel/component/irc/springboot/IrcComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-irc-starter/src/main/java/org/apache/camel/component/irc/springboot/IrcComponentAutoConfiguration.java
index 67d9cf8..741a06e 100644
--- a/platforms/spring-boot/components-starter/camel-irc-starter/src/main/java/org/apache/camel/component/irc/springboot/IrcComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-irc-starter/src/main/java/org/apache/camel/component/irc/springboot/IrcComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.irc.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.irc.IrcComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(IrcComponentAutoConfiguration.Condition.class)
@@ -83,6 +85,7 @@ public class IrcComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-irc-starter/src/main/java/org/apache/camel/component/irc/springboot/IrcComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-irc-starter/src/main/java/org/apache/camel/component/irc/springboot/IrcComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-irc-starter/src/main/java/org/apache/camel/component/irc/springboot/IrcComponentConfiguration.java
index 02daefb..fe89d50 100644
--- a/platforms/spring-boot/components-starter/camel-irc-starter/src/main/java/org/apache/camel/component/irc/springboot/IrcComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-irc-starter/src/main/java/org/apache/camel/component/irc/springboot/IrcComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.irc.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -23,6 +24,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.irc")
 public class IrcComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-ironmq-starter/src/main/java/org/apache/camel/component/ironmq/springboot/IronMQComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-ironmq-starter/src/main/java/org/apache/camel/component/ironmq/springboot/IronMQComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-ironmq-starter/src/main/java/org/apache/camel/component/ironmq/springboot/IronMQComponentAutoConfiguration.java
index 5053f68..de636c0 100644
--- a/platforms/spring-boot/components-starter/camel-ironmq-starter/src/main/java/org/apache/camel/component/ironmq/springboot/IronMQComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-ironmq-starter/src/main/java/org/apache/camel/component/ironmq/springboot/IronMQComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.ironmq.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.ironmq.IronMQComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(IronMQComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class IronMQComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-jackson-starter/src/main/java/org/apache/camel/component/jackson/springboot/JacksonDataFormatAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-jackson-starter/src/main/java/org/apache/camel/component/jackson/springboot/JacksonDataFormatAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-jackson-starter/src/main/java/org/apache/camel/component/jackson/springboot/JacksonDataFormatAutoConfiguration.java
index 406b5af..5099b19 100644
--- a/platforms/spring-boot/components-starter/camel-jackson-starter/src/main/java/org/apache/camel/component/jackson/springboot/JacksonDataFormatAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-jackson-starter/src/main/java/org/apache/camel/component/jackson/springboot/JacksonDataFormatAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.jackson.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.CamelContextAware;
 import org.apache.camel.RuntimeCamelException;
@@ -43,6 +44,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(JacksonDataFormatAutoConfiguration.Condition.class)
@@ -82,6 +84,7 @@ public class JacksonDataFormatAutoConfiguration {
         };
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-jackson-starter/src/main/java/org/apache/camel/component/jackson/springboot/JacksonDataFormatConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-jackson-starter/src/main/java/org/apache/camel/component/jackson/springboot/JacksonDataFormatConfiguration.java b/platforms/spring-boot/components-starter/camel-jackson-starter/src/main/java/org/apache/camel/component/jackson/springboot/JacksonDataFormatConfiguration.java
index e5dcbc2..8f69717 100644
--- a/platforms/spring-boot/components-starter/camel-jackson-starter/src/main/java/org/apache/camel/component/jackson/springboot/JacksonDataFormatConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-jackson-starter/src/main/java/org/apache/camel/component/jackson/springboot/JacksonDataFormatConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.jackson.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.component.jackson.JacksonDataFormat;
 import org.apache.camel.model.dataformat.JsonLibrary;
 import org.springframework.boot.context.properties.ConfigurationProperties;
@@ -25,6 +26,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.dataformat.json-jackson")
 public class JacksonDataFormatConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-jacksonxml-starter/src/main/java/org/apache/camel/component/jacksonxml/springboot/JacksonXMLDataFormatAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-jacksonxml-starter/src/main/java/org/apache/camel/component/jacksonxml/springboot/JacksonXMLDataFormatAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-jacksonxml-starter/src/main/java/org/apache/camel/component/jacksonxml/springboot/JacksonXMLDataFormatAutoConfiguration.java
index 30c2f63..3a22f52 100644
--- a/platforms/spring-boot/components-starter/camel-jacksonxml-starter/src/main/java/org/apache/camel/component/jacksonxml/springboot/JacksonXMLDataFormatAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-jacksonxml-starter/src/main/java/org/apache/camel/component/jacksonxml/springboot/JacksonXMLDataFormatAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.jacksonxml.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.CamelContextAware;
 import org.apache.camel.RuntimeCamelException;
@@ -43,6 +44,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(JacksonXMLDataFormatAutoConfiguration.Condition.class)
@@ -82,6 +84,7 @@ public class JacksonXMLDataFormatAutoConfiguration {
         };
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-jacksonxml-starter/src/main/java/org/apache/camel/component/jacksonxml/springboot/JacksonXMLDataFormatConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-jacksonxml-starter/src/main/java/org/apache/camel/component/jacksonxml/springboot/JacksonXMLDataFormatConfiguration.java b/platforms/spring-boot/components-starter/camel-jacksonxml-starter/src/main/java/org/apache/camel/component/jacksonxml/springboot/JacksonXMLDataFormatConfiguration.java
index 50c8062..389e38a 100644
--- a/platforms/spring-boot/components-starter/camel-jacksonxml-starter/src/main/java/org/apache/camel/component/jacksonxml/springboot/JacksonXMLDataFormatConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-jacksonxml-starter/src/main/java/org/apache/camel/component/jacksonxml/springboot/JacksonXMLDataFormatConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.jacksonxml.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -23,6 +24,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.dataformat.jacksonxml")
 public class JacksonXMLDataFormatConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-javaspace-starter/src/main/java/org/apache/camel/component/javaspace/springboot/JavaSpaceComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-javaspace-starter/src/main/java/org/apache/camel/component/javaspace/springboot/JavaSpaceComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-javaspace-starter/src/main/java/org/apache/camel/component/javaspace/springboot/JavaSpaceComponentAutoConfiguration.java
index 567af38..a409ff9 100644
--- a/platforms/spring-boot/components-starter/camel-javaspace-starter/src/main/java/org/apache/camel/component/javaspace/springboot/JavaSpaceComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-javaspace-starter/src/main/java/org/apache/camel/component/javaspace/springboot/JavaSpaceComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.javaspace.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.javaspace.JavaSpaceComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(JavaSpaceComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class JavaSpaceComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-jaxb-starter/src/main/java/org/apache/camel/converter/jaxb/springboot/JaxbDataFormatAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-jaxb-starter/src/main/java/org/apache/camel/converter/jaxb/springboot/JaxbDataFormatAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-jaxb-starter/src/main/java/org/apache/camel/converter/jaxb/springboot/JaxbDataFormatAutoConfiguration.java
index 3562119..a8388f1 100644
--- a/platforms/spring-boot/components-starter/camel-jaxb-starter/src/main/java/org/apache/camel/converter/jaxb/springboot/JaxbDataFormatAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-jaxb-starter/src/main/java/org/apache/camel/converter/jaxb/springboot/JaxbDataFormatAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.converter.jaxb.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.CamelContextAware;
 import org.apache.camel.RuntimeCamelException;
@@ -43,6 +44,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(JaxbDataFormatAutoConfiguration.Condition.class)
@@ -82,6 +84,7 @@ public class JaxbDataFormatAutoConfiguration {
         };
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-jaxb-starter/src/main/java/org/apache/camel/converter/jaxb/springboot/JaxbDataFormatConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-jaxb-starter/src/main/java/org/apache/camel/converter/jaxb/springboot/JaxbDataFormatConfiguration.java b/platforms/spring-boot/components-starter/camel-jaxb-starter/src/main/java/org/apache/camel/converter/jaxb/springboot/JaxbDataFormatConfiguration.java
index a980537..4d28036 100644
--- a/platforms/spring-boot/components-starter/camel-jaxb-starter/src/main/java/org/apache/camel/converter/jaxb/springboot/JaxbDataFormatConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-jaxb-starter/src/main/java/org/apache/camel/converter/jaxb/springboot/JaxbDataFormatConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.converter.jaxb.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -23,6 +24,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.dataformat.jaxb")
 public class JaxbDataFormatConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-jbpm-starter/src/main/java/org/apache/camel/component/jbpm/springboot/JBPMComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-jbpm-starter/src/main/java/org/apache/camel/component/jbpm/springboot/JBPMComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-jbpm-starter/src/main/java/org/apache/camel/component/jbpm/springboot/JBPMComponentAutoConfiguration.java
index e744a5a..13ede67 100644
--- a/platforms/spring-boot/components-starter/camel-jbpm-starter/src/main/java/org/apache/camel/component/jbpm/springboot/JBPMComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-jbpm-starter/src/main/java/org/apache/camel/component/jbpm/springboot/JBPMComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.jbpm.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.jbpm.JBPMComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(JBPMComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class JBPMComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-jcache-starter/src/main/java/org/apache/camel/component/jcache/springboot/JCacheComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-jcache-starter/src/main/java/org/apache/camel/component/jcache/springboot/JCacheComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-jcache-starter/src/main/java/org/apache/camel/component/jcache/springboot/JCacheComponentAutoConfiguration.java
index d552b5f..37137b4 100644
--- a/platforms/spring-boot/components-starter/camel-jcache-starter/src/main/java/org/apache/camel/component/jcache/springboot/JCacheComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-jcache-starter/src/main/java/org/apache/camel/component/jcache/springboot/JCacheComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.jcache.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.jcache.JCacheComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(JCacheComponentAutoConfiguration.Condition.class)
@@ -83,6 +85,7 @@ public class JCacheComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-jcache-starter/src/main/java/org/apache/camel/component/jcache/springboot/JCacheComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-jcache-starter/src/main/java/org/apache/camel/component/jcache/springboot/JCacheComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-jcache-starter/src/main/java/org/apache/camel/component/jcache/springboot/JCacheComponentConfiguration.java
index b0d9f5e..be5ced1 100644
--- a/platforms/spring-boot/components-starter/camel-jcache-starter/src/main/java/org/apache/camel/component/jcache/springboot/JCacheComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-jcache-starter/src/main/java/org/apache/camel/component/jcache/springboot/JCacheComponentConfiguration.java
@@ -17,6 +17,7 @@
 package org.apache.camel.component.jcache.springboot;
 
 import java.util.Properties;
+import javax.annotation.Generated;
 import javax.cache.configuration.Configuration;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
@@ -26,6 +27,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.jcache")
 public class JCacheComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-jcr-starter/src/main/java/org/apache/camel/component/jcr/springboot/JcrComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-jcr-starter/src/main/java/org/apache/camel/component/jcr/springboot/JcrComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-jcr-starter/src/main/java/org/apache/camel/component/jcr/springboot/JcrComponentAutoConfiguration.java
index 21ea150..8aebcc2 100644
--- a/platforms/spring-boot/components-starter/camel-jcr-starter/src/main/java/org/apache/camel/component/jcr/springboot/JcrComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-jcr-starter/src/main/java/org/apache/camel/component/jcr/springboot/JcrComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.jcr.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.jcr.JcrComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(JcrComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class JcrComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-jdbc-starter/src/main/java/org/apache/camel/component/jdbc/springboot/JdbcComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-jdbc-starter/src/main/java/org/apache/camel/component/jdbc/springboot/JdbcComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-jdbc-starter/src/main/java/org/apache/camel/component/jdbc/springboot/JdbcComponentAutoConfiguration.java
index fe8cb68..2424bdc 100644
--- a/platforms/spring-boot/components-starter/camel-jdbc-starter/src/main/java/org/apache/camel/component/jdbc/springboot/JdbcComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-jdbc-starter/src/main/java/org/apache/camel/component/jdbc/springboot/JdbcComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.jdbc.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.jdbc.JdbcComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(JdbcComponentAutoConfiguration.Condition.class)
@@ -83,6 +85,7 @@ public class JdbcComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-jdbc-starter/src/main/java/org/apache/camel/component/jdbc/springboot/JdbcComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-jdbc-starter/src/main/java/org/apache/camel/component/jdbc/springboot/JdbcComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-jdbc-starter/src/main/java/org/apache/camel/component/jdbc/springboot/JdbcComponentConfiguration.java
index 49df11b..f2e6234 100644
--- a/platforms/spring-boot/components-starter/camel-jdbc-starter/src/main/java/org/apache/camel/component/jdbc/springboot/JdbcComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-jdbc-starter/src/main/java/org/apache/camel/component/jdbc/springboot/JdbcComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.jdbc.springboot;
 
+import javax.annotation.Generated;
 import javax.sql.DataSource;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
@@ -25,6 +26,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.jdbc")
 public class JdbcComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-jetty9-starter/src/main/java/org/apache/camel/component/jetty9/springboot/JettyHttpComponentAutoConfiguration9.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-jetty9-starter/src/main/java/org/apache/camel/component/jetty9/springboot/JettyHttpComponentAutoConfiguration9.java b/platforms/spring-boot/components-starter/camel-jetty9-starter/src/main/java/org/apache/camel/component/jetty9/springboot/JettyHttpComponentAutoConfiguration9.java
index 3ac3ed9..c887d25 100644
--- a/platforms/spring-boot/components-starter/camel-jetty9-starter/src/main/java/org/apache/camel/component/jetty9/springboot/JettyHttpComponentAutoConfiguration9.java
+++ b/platforms/spring-boot/components-starter/camel-jetty9-starter/src/main/java/org/apache/camel/component/jetty9/springboot/JettyHttpComponentAutoConfiguration9.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.jetty9.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.jetty9.JettyHttpComponent9;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(JettyHttpComponentAutoConfiguration9.Condition.class)
@@ -84,6 +86,7 @@ public class JettyHttpComponentAutoConfiguration9 {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-jetty9-starter/src/main/java/org/apache/camel/component/jetty9/springboot/JettyHttpComponentConfiguration9.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-jetty9-starter/src/main/java/org/apache/camel/component/jetty9/springboot/JettyHttpComponentConfiguration9.java b/platforms/spring-boot/components-starter/camel-jetty9-starter/src/main/java/org/apache/camel/component/jetty9/springboot/JettyHttpComponentConfiguration9.java
index 6cfc3dc..dc841bb 100644
--- a/platforms/spring-boot/components-starter/camel-jetty9-starter/src/main/java/org/apache/camel/component/jetty9/springboot/JettyHttpComponentConfiguration9.java
+++ b/platforms/spring-boot/components-starter/camel-jetty9-starter/src/main/java/org/apache/camel/component/jetty9/springboot/JettyHttpComponentConfiguration9.java
@@ -17,6 +17,7 @@
 package org.apache.camel.component.jetty9.springboot;
 
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.component.jetty.JettyHttpBinding;
 import org.apache.camel.http.common.HttpBinding;
 import org.apache.camel.http.common.HttpConfiguration;
@@ -35,6 +36,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.jetty")
 public class JettyHttpComponentConfiguration9 {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-jgroups-starter/src/main/java/org/apache/camel/component/jgroups/springboot/JGroupsComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-jgroups-starter/src/main/java/org/apache/camel/component/jgroups/springboot/JGroupsComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-jgroups-starter/src/main/java/org/apache/camel/component/jgroups/springboot/JGroupsComponentAutoConfiguration.java
index a6d263f..492439c 100644
--- a/platforms/spring-boot/components-starter/camel-jgroups-starter/src/main/java/org/apache/camel/component/jgroups/springboot/JGroupsComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-jgroups-starter/src/main/java/org/apache/camel/component/jgroups/springboot/JGroupsComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.jgroups.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.jgroups.JGroupsComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(JGroupsComponentAutoConfiguration.Condition.class)
@@ -84,6 +86,7 @@ public class JGroupsComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-jgroups-starter/src/main/java/org/apache/camel/component/jgroups/springboot/JGroupsComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-jgroups-starter/src/main/java/org/apache/camel/component/jgroups/springboot/JGroupsComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-jgroups-starter/src/main/java/org/apache/camel/component/jgroups/springboot/JGroupsComponentConfiguration.java
index 8f61eb1..0c2e812 100644
--- a/platforms/spring-boot/components-starter/camel-jgroups-starter/src/main/java/org/apache/camel/component/jgroups/springboot/JGroupsComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-jgroups-starter/src/main/java/org/apache/camel/component/jgroups/springboot/JGroupsComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.jgroups.springboot;
 
+import javax.annotation.Generated;
 import org.jgroups.JChannel;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 import org.springframework.boot.context.properties.NestedConfigurationProperty;
@@ -26,6 +27,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.jgroups")
 public class JGroupsComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-jibx-starter/src/main/java/org/apache/camel/dataformat/jibx/springboot/JibxDataFormatAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-jibx-starter/src/main/java/org/apache/camel/dataformat/jibx/springboot/JibxDataFormatAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-jibx-starter/src/main/java/org/apache/camel/dataformat/jibx/springboot/JibxDataFormatAutoConfiguration.java
index 179701a..1597cbd 100644
--- a/platforms/spring-boot/components-starter/camel-jibx-starter/src/main/java/org/apache/camel/dataformat/jibx/springboot/JibxDataFormatAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-jibx-starter/src/main/java/org/apache/camel/dataformat/jibx/springboot/JibxDataFormatAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.dataformat.jibx.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.CamelContextAware;
 import org.apache.camel.RuntimeCamelException;
@@ -43,6 +44,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(JibxDataFormatAutoConfiguration.Condition.class)
@@ -82,6 +84,7 @@ public class JibxDataFormatAutoConfiguration {
         };
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-jibx-starter/src/main/java/org/apache/camel/dataformat/jibx/springboot/JibxDataFormatConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-jibx-starter/src/main/java/org/apache/camel/dataformat/jibx/springboot/JibxDataFormatConfiguration.java b/platforms/spring-boot/components-starter/camel-jibx-starter/src/main/java/org/apache/camel/dataformat/jibx/springboot/JibxDataFormatConfiguration.java
index 47af923..a2e21b7 100644
--- a/platforms/spring-boot/components-starter/camel-jibx-starter/src/main/java/org/apache/camel/dataformat/jibx/springboot/JibxDataFormatConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-jibx-starter/src/main/java/org/apache/camel/dataformat/jibx/springboot/JibxDataFormatConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.dataformat.jibx.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -23,6 +24,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.dataformat.jibx")
 public class JibxDataFormatConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-jing-starter/src/main/java/org/apache/camel/component/validator/jing/springboot/JingComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-jing-starter/src/main/java/org/apache/camel/component/validator/jing/springboot/JingComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-jing-starter/src/main/java/org/apache/camel/component/validator/jing/springboot/JingComponentAutoConfiguration.java
index b318b2c..eeb94b4 100644
--- a/platforms/spring-boot/components-starter/camel-jing-starter/src/main/java/org/apache/camel/component/validator/jing/springboot/JingComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-jing-starter/src/main/java/org/apache/camel/component/validator/jing/springboot/JingComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.validator.jing.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.validator.jing.JingComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(JingComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class JingComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-jira-starter/src/main/java/org/apache/camel/component/jira/springboot/JIRAComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-jira-starter/src/main/java/org/apache/camel/component/jira/springboot/JIRAComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-jira-starter/src/main/java/org/apache/camel/component/jira/springboot/JIRAComponentAutoConfiguration.java
index a40a8c1..1a1a48e 100644
--- a/platforms/spring-boot/components-starter/camel-jira-starter/src/main/java/org/apache/camel/component/jira/springboot/JIRAComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-jira-starter/src/main/java/org/apache/camel/component/jira/springboot/JIRAComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.jira.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.jira.JIRAComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(JIRAComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class JIRAComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-jms-starter/src/main/java/org/apache/camel/component/jms/springboot/JmsComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-jms-starter/src/main/java/org/apache/camel/component/jms/springboot/JmsComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-jms-starter/src/main/java/org/apache/camel/component/jms/springboot/JmsComponentAutoConfiguration.java
index c7761fa..9cf6e26 100644
--- a/platforms/spring-boot/components-starter/camel-jms-starter/src/main/java/org/apache/camel/component/jms/springboot/JmsComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-jms-starter/src/main/java/org/apache/camel/component/jms/springboot/JmsComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.jms.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.jms.JmsComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(JmsComponentAutoConfiguration.Condition.class)
@@ -83,6 +85,7 @@ public class JmsComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-jms-starter/src/main/java/org/apache/camel/component/jms/springboot/JmsComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-jms-starter/src/main/java/org/apache/camel/component/jms/springboot/JmsComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-jms-starter/src/main/java/org/apache/camel/component/jms/springboot/JmsComponentConfiguration.java
index 7225161..1f1130e 100644
--- a/platforms/spring-boot/components-starter/camel-jms-starter/src/main/java/org/apache/camel/component/jms/springboot/JmsComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-jms-starter/src/main/java/org/apache/camel/component/jms/springboot/JmsComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.jms.springboot;
 
+import javax.annotation.Generated;
 import javax.jms.ConnectionFactory;
 import javax.jms.ExceptionListener;
 import org.apache.camel.LoggingLevel;
@@ -46,6 +47,7 @@ import org.springframework.util.ErrorHandler;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.jms")
 public class JmsComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-jmx-starter/src/main/java/org/apache/camel/component/jmx/springboot/JMXComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-jmx-starter/src/main/java/org/apache/camel/component/jmx/springboot/JMXComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-jmx-starter/src/main/java/org/apache/camel/component/jmx/springboot/JMXComponentAutoConfiguration.java
index 2230be6..ec8d6c3 100644
--- a/platforms/spring-boot/components-starter/camel-jmx-starter/src/main/java/org/apache/camel/component/jmx/springboot/JMXComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-jmx-starter/src/main/java/org/apache/camel/component/jmx/springboot/JMXComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.jmx.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.jmx.JMXComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(JMXComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class JMXComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-johnzon-starter/src/main/java/org/apache/camel/component/johnzon/springboot/JohnzonDataFormatAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-johnzon-starter/src/main/java/org/apache/camel/component/johnzon/springboot/JohnzonDataFormatAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-johnzon-starter/src/main/java/org/apache/camel/component/johnzon/springboot/JohnzonDataFormatAutoConfiguration.java
index 0f5d2e0..e20fde9 100644
--- a/platforms/spring-boot/components-starter/camel-johnzon-starter/src/main/java/org/apache/camel/component/johnzon/springboot/JohnzonDataFormatAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-johnzon-starter/src/main/java/org/apache/camel/component/johnzon/springboot/JohnzonDataFormatAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.johnzon.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.CamelContextAware;
 import org.apache.camel.RuntimeCamelException;
@@ -43,6 +44,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(JohnzonDataFormatAutoConfiguration.Condition.class)
@@ -82,6 +84,7 @@ public class JohnzonDataFormatAutoConfiguration {
         };
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-johnzon-starter/src/main/java/org/apache/camel/component/johnzon/springboot/JohnzonDataFormatConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-johnzon-starter/src/main/java/org/apache/camel/component/johnzon/springboot/JohnzonDataFormatConfiguration.java b/platforms/spring-boot/components-starter/camel-johnzon-starter/src/main/java/org/apache/camel/component/johnzon/springboot/JohnzonDataFormatConfiguration.java
index 47b9093..67c542b 100644
--- a/platforms/spring-boot/components-starter/camel-johnzon-starter/src/main/java/org/apache/camel/component/johnzon/springboot/JohnzonDataFormatConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-johnzon-starter/src/main/java/org/apache/camel/component/johnzon/springboot/JohnzonDataFormatConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.johnzon.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.component.johnzon.JohnzonDataFormat;
 import org.apache.camel.model.dataformat.JsonLibrary;
 import org.springframework.boot.context.properties.ConfigurationProperties;
@@ -25,6 +26,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.dataformat.json-johnzon")
 public class JohnzonDataFormatConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-jolt-starter/src/main/java/org/apache/camel/component/jolt/springboot/JoltComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-jolt-starter/src/main/java/org/apache/camel/component/jolt/springboot/JoltComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-jolt-starter/src/main/java/org/apache/camel/component/jolt/springboot/JoltComponentAutoConfiguration.java
index 7b6552d..1c53972 100644
--- a/platforms/spring-boot/components-starter/camel-jolt-starter/src/main/java/org/apache/camel/component/jolt/springboot/JoltComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-jolt-starter/src/main/java/org/apache/camel/component/jolt/springboot/JoltComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.jolt.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.jolt.JoltComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(JoltComponentAutoConfiguration.Condition.class)
@@ -83,6 +85,7 @@ public class JoltComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-jolt-starter/src/main/java/org/apache/camel/component/jolt/springboot/JoltComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-jolt-starter/src/main/java/org/apache/camel/component/jolt/springboot/JoltComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-jolt-starter/src/main/java/org/apache/camel/component/jolt/springboot/JoltComponentConfiguration.java
index c14d949..e1017f0 100644
--- a/platforms/spring-boot/components-starter/camel-jolt-starter/src/main/java/org/apache/camel/component/jolt/springboot/JoltComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-jolt-starter/src/main/java/org/apache/camel/component/jolt/springboot/JoltComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.jolt.springboot;
 
+import javax.annotation.Generated;
 import com.bazaarvoice.jolt.Transform;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 import org.springframework.boot.context.properties.NestedConfigurationProperty;
@@ -26,6 +27,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.jolt")
 public class JoltComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-josql-starter/src/main/java/org/apache/camel/language/sql/springboot/SqlLanguageAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-josql-starter/src/main/java/org/apache/camel/language/sql/springboot/SqlLanguageAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-josql-starter/src/main/java/org/apache/camel/language/sql/springboot/SqlLanguageAutoConfiguration.java
index 0bc0a5d..8a993a6 100644
--- a/platforms/spring-boot/components-starter/camel-josql-starter/src/main/java/org/apache/camel/language/sql/springboot/SqlLanguageAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-josql-starter/src/main/java/org/apache/camel/language/sql/springboot/SqlLanguageAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.language.sql.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.CamelContextAware;
 import org.apache.camel.language.sql.SqlLanguage;
@@ -41,6 +42,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(SqlLanguageAutoConfiguration.Condition.class)
@@ -70,6 +72,7 @@ public class SqlLanguageAutoConfiguration {
         return language;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-josql-starter/src/main/java/org/apache/camel/language/sql/springboot/SqlLanguageConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-josql-starter/src/main/java/org/apache/camel/language/sql/springboot/SqlLanguageConfiguration.java b/platforms/spring-boot/components-starter/camel-josql-starter/src/main/java/org/apache/camel/language/sql/springboot/SqlLanguageConfiguration.java
index 1816393..6060fb5 100644
--- a/platforms/spring-boot/components-starter/camel-josql-starter/src/main/java/org/apache/camel/language/sql/springboot/SqlLanguageConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-josql-starter/src/main/java/org/apache/camel/language/sql/springboot/SqlLanguageConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.language.sql.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -23,6 +24,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.language.sql")
 public class SqlLanguageConfiguration {
 


[10/13] camel git commit: CAMEL-11165 Add @Generated annotation to code g...

Posted by zr...@apache.org.
http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/dataset/springboot/DataSetComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/dataset/springboot/DataSetComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/dataset/springboot/DataSetComponentAutoConfiguration.java
index e3d205c..98405d6 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/dataset/springboot/DataSetComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/dataset/springboot/DataSetComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.dataset.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.dataset.DataSetComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(DataSetComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class DataSetComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/direct/springboot/DirectComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/direct/springboot/DirectComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/direct/springboot/DirectComponentAutoConfiguration.java
index 07aa4d9..fd59a16 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/direct/springboot/DirectComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/direct/springboot/DirectComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.direct.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.direct.DirectComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(DirectComponentAutoConfiguration.Condition.class)
@@ -83,6 +85,7 @@ public class DirectComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/direct/springboot/DirectComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/direct/springboot/DirectComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/direct/springboot/DirectComponentConfiguration.java
index 5110239..4ba792c 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/direct/springboot/DirectComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/direct/springboot/DirectComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.direct.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -24,6 +25,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.direct")
 public class DirectComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/directvm/springboot/DirectVmComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/directvm/springboot/DirectVmComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/directvm/springboot/DirectVmComponentAutoConfiguration.java
index 33a1e2a..bb636d1 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/directvm/springboot/DirectVmComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/directvm/springboot/DirectVmComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.directvm.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.directvm.DirectVmComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(DirectVmComponentAutoConfiguration.Condition.class)
@@ -84,6 +86,7 @@ public class DirectVmComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/directvm/springboot/DirectVmComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/directvm/springboot/DirectVmComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/directvm/springboot/DirectVmComponentConfiguration.java
index 2f4383b..ae30a25 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/directvm/springboot/DirectVmComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/directvm/springboot/DirectVmComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.directvm.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.spi.HeaderFilterStrategy;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 import org.springframework.boot.context.properties.NestedConfigurationProperty;
@@ -26,6 +27,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.direct-vm")
 public class DirectVmComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/file/springboot/FileComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/file/springboot/FileComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/file/springboot/FileComponentAutoConfiguration.java
index 8b82256..4558d3b 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/file/springboot/FileComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/file/springboot/FileComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.file.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.file.FileComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(FileComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class FileComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/language/springboot/LanguageComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/language/springboot/LanguageComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/language/springboot/LanguageComponentAutoConfiguration.java
index a67110a..6980be2 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/language/springboot/LanguageComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/language/springboot/LanguageComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.language.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.language.LanguageComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(LanguageComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class LanguageComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/log/springboot/LogComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/log/springboot/LogComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/log/springboot/LogComponentAutoConfiguration.java
index 5a95fce..cb885fa 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/log/springboot/LogComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/log/springboot/LogComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.log.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.log.LogComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(LogComponentAutoConfiguration.Condition.class)
@@ -83,6 +85,7 @@ public class LogComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/log/springboot/LogComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/log/springboot/LogComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/log/springboot/LogComponentConfiguration.java
index 22b2301..5318bc7 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/log/springboot/LogComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/log/springboot/LogComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.log.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.spi.ExchangeFormatter;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 import org.springframework.boot.context.properties.NestedConfigurationProperty;
@@ -25,6 +26,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.log")
 public class LogComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/mock/springboot/MockComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/mock/springboot/MockComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/mock/springboot/MockComponentAutoConfiguration.java
index 73167f4..dc9389f 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/mock/springboot/MockComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/mock/springboot/MockComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.mock.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.mock.MockComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(MockComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class MockComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/properties/springboot/PropertiesComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/properties/springboot/PropertiesComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/properties/springboot/PropertiesComponentAutoConfiguration.java
index a6ee450..b1d0e85 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/properties/springboot/PropertiesComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/properties/springboot/PropertiesComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.properties.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.properties.PropertiesComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(PropertiesComponentAutoConfiguration.Condition.class)
@@ -84,6 +86,7 @@ public class PropertiesComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/properties/springboot/PropertiesComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/properties/springboot/PropertiesComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/properties/springboot/PropertiesComponentConfiguration.java
index fcb8096..b62dc67 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/properties/springboot/PropertiesComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/properties/springboot/PropertiesComponentConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.properties.springboot;
 
 import java.util.List;
 import java.util.Properties;
+import javax.annotation.Generated;
 import org.apache.camel.component.properties.PropertiesLocation;
 import org.apache.camel.component.properties.PropertiesParser;
 import org.apache.camel.component.properties.PropertiesResolver;
@@ -30,6 +31,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.properties")
 public class PropertiesComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/ref/springboot/RefComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/ref/springboot/RefComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/ref/springboot/RefComponentAutoConfiguration.java
index c30907a..270d960 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/ref/springboot/RefComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/ref/springboot/RefComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.ref.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.ref.RefComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(RefComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class RefComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/rest/springboot/RestApiComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/rest/springboot/RestApiComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/rest/springboot/RestApiComponentAutoConfiguration.java
index 2567fb7..c113cce 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/rest/springboot/RestApiComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/rest/springboot/RestApiComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.rest.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.rest.RestApiComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(RestApiComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class RestApiComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/rest/springboot/RestComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/rest/springboot/RestComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/rest/springboot/RestComponentAutoConfiguration.java
index 7fb213b..e99b813 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/rest/springboot/RestComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/rest/springboot/RestComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.rest.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.rest.RestComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(RestComponentAutoConfiguration.Condition.class)
@@ -83,6 +85,7 @@ public class RestComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/rest/springboot/RestComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/rest/springboot/RestComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/rest/springboot/RestComponentConfiguration.java
index 03c6870..ce06f5e 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/rest/springboot/RestComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/rest/springboot/RestComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.rest.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -24,6 +25,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.rest")
 public class RestComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/scheduler/springboot/SchedulerComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/scheduler/springboot/SchedulerComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/scheduler/springboot/SchedulerComponentAutoConfiguration.java
index 7521585..5ebf274 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/scheduler/springboot/SchedulerComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/scheduler/springboot/SchedulerComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.scheduler.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.scheduler.SchedulerComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(SchedulerComponentAutoConfiguration.Condition.class)
@@ -84,6 +86,7 @@ public class SchedulerComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/scheduler/springboot/SchedulerComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/scheduler/springboot/SchedulerComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/scheduler/springboot/SchedulerComponentConfiguration.java
index f186f9c..60d0e61 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/scheduler/springboot/SchedulerComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/scheduler/springboot/SchedulerComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.scheduler.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -24,6 +25,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.scheduler")
 public class SchedulerComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/seda/springboot/SedaComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/seda/springboot/SedaComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/seda/springboot/SedaComponentAutoConfiguration.java
index 60ce140..acd3d48 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/seda/springboot/SedaComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/seda/springboot/SedaComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.seda.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.seda.SedaComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(SedaComponentAutoConfiguration.Condition.class)
@@ -83,6 +85,7 @@ public class SedaComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/seda/springboot/SedaComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/seda/springboot/SedaComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/seda/springboot/SedaComponentConfiguration.java
index 761d7af..456ad90 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/seda/springboot/SedaComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/seda/springboot/SedaComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.seda.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.Exchange;
 import org.apache.camel.component.seda.BlockingQueueFactory;
 import org.springframework.boot.context.properties.ConfigurationProperties;
@@ -27,6 +28,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.seda")
 public class SedaComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/stub/springboot/StubComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/stub/springboot/StubComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/stub/springboot/StubComponentAutoConfiguration.java
index 5b75ade..fe4dcf5 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/stub/springboot/StubComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/stub/springboot/StubComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.stub.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.stub.StubComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(StubComponentAutoConfiguration.Condition.class)
@@ -83,6 +85,7 @@ public class StubComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/stub/springboot/StubComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/stub/springboot/StubComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/stub/springboot/StubComponentConfiguration.java
index bf9a6d0..a3a027f 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/stub/springboot/StubComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/stub/springboot/StubComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.stub.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.Exchange;
 import org.apache.camel.component.seda.BlockingQueueFactory;
 import org.springframework.boot.context.properties.ConfigurationProperties;
@@ -27,6 +28,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.stub")
 public class StubComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/test/springboot/TestComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/test/springboot/TestComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/test/springboot/TestComponentAutoConfiguration.java
index fe4f022..12f253b 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/test/springboot/TestComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/test/springboot/TestComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.test.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.test.TestComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(TestComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class TestComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/timer/springboot/TimerComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/timer/springboot/TimerComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/timer/springboot/TimerComponentAutoConfiguration.java
index e65f565..e26ba57 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/timer/springboot/TimerComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/timer/springboot/TimerComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.timer.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.timer.TimerComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(TimerComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class TimerComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/validator/springboot/ValidatorComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/validator/springboot/ValidatorComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/validator/springboot/ValidatorComponentAutoConfiguration.java
index 0f0bf25..c97549c 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/validator/springboot/ValidatorComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/validator/springboot/ValidatorComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.validator.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.validator.ValidatorComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(ValidatorComponentAutoConfiguration.Condition.class)
@@ -84,6 +86,7 @@ public class ValidatorComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/validator/springboot/ValidatorComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/validator/springboot/ValidatorComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/validator/springboot/ValidatorComponentConfiguration.java
index 1e607af..49ee967 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/validator/springboot/ValidatorComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/validator/springboot/ValidatorComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.validator.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.component.validator.ValidatorResourceResolverFactory;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 import org.springframework.boot.context.properties.NestedConfigurationProperty;
@@ -25,6 +26,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.validator")
 public class ValidatorComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/vm/springboot/VmComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/vm/springboot/VmComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/vm/springboot/VmComponentAutoConfiguration.java
index 4761f78..fb19cf1 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/vm/springboot/VmComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/vm/springboot/VmComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.vm.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.vm.VmComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(VmComponentAutoConfiguration.Condition.class)
@@ -83,6 +85,7 @@ public class VmComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/vm/springboot/VmComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/vm/springboot/VmComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/vm/springboot/VmComponentConfiguration.java
index 3ac9f03..c1ad19d 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/vm/springboot/VmComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/vm/springboot/VmComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.vm.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.Exchange;
 import org.apache.camel.component.seda.BlockingQueueFactory;
 import org.springframework.boot.context.properties.ConfigurationProperties;
@@ -27,6 +28,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.vm")
 public class VmComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/xslt/springboot/XsltComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/xslt/springboot/XsltComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/xslt/springboot/XsltComponentAutoConfiguration.java
index ce4e9f7..10d3ba3 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/xslt/springboot/XsltComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/xslt/springboot/XsltComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.xslt.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.xslt.XsltComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(XsltComponentAutoConfiguration.Condition.class)
@@ -83,6 +85,7 @@ public class XsltComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/xslt/springboot/XsltComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/xslt/springboot/XsltComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/xslt/springboot/XsltComponentConfiguration.java
index 040e229..2fbcb14 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/xslt/springboot/XsltComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/xslt/springboot/XsltComponentConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.xslt.springboot;
 
 import java.util.List;
 import java.util.Map;
+import javax.annotation.Generated;
 import javax.xml.parsers.DocumentBuilderFactory;
 import javax.xml.transform.TransformerFactory;
 import javax.xml.transform.URIResolver;
@@ -30,6 +31,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.xslt")
 public class XsltComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/impl/springboot/GzipDataFormatAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/impl/springboot/GzipDataFormatAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/impl/springboot/GzipDataFormatAutoConfiguration.java
index 81c052e..229aaf3 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/impl/springboot/GzipDataFormatAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/impl/springboot/GzipDataFormatAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.impl.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.CamelContextAware;
 import org.apache.camel.RuntimeCamelException;
@@ -43,6 +44,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(GzipDataFormatAutoConfiguration.Condition.class)
@@ -82,6 +84,7 @@ public class GzipDataFormatAutoConfiguration {
         };
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/impl/springboot/GzipDataFormatConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/impl/springboot/GzipDataFormatConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/impl/springboot/GzipDataFormatConfiguration.java
index 4953a5c..3eee5db 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/impl/springboot/GzipDataFormatConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/impl/springboot/GzipDataFormatConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.impl.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -23,6 +24,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.dataformat.gzip")
 public class GzipDataFormatConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/impl/springboot/SerializationDataFormatAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/impl/springboot/SerializationDataFormatAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/impl/springboot/SerializationDataFormatAutoConfiguration.java
index 27f6dbb..149119f 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/impl/springboot/SerializationDataFormatAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/impl/springboot/SerializationDataFormatAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.impl.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.CamelContextAware;
 import org.apache.camel.RuntimeCamelException;
@@ -43,6 +44,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(SerializationDataFormatAutoConfiguration.Condition.class)
@@ -82,6 +84,7 @@ public class SerializationDataFormatAutoConfiguration {
         };
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/impl/springboot/SerializationDataFormatConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/impl/springboot/SerializationDataFormatConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/impl/springboot/SerializationDataFormatConfiguration.java
index 5cf28d4..4492282 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/impl/springboot/SerializationDataFormatConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/impl/springboot/SerializationDataFormatConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.impl.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -23,6 +24,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.dataformat.serialization")
 public class SerializationDataFormatConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/impl/springboot/StringDataFormatAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/impl/springboot/StringDataFormatAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/impl/springboot/StringDataFormatAutoConfiguration.java
index d699e97..087a643 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/impl/springboot/StringDataFormatAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/impl/springboot/StringDataFormatAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.impl.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.CamelContextAware;
 import org.apache.camel.RuntimeCamelException;
@@ -43,6 +44,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(StringDataFormatAutoConfiguration.Condition.class)
@@ -82,6 +84,7 @@ public class StringDataFormatAutoConfiguration {
         };
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/impl/springboot/StringDataFormatConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/impl/springboot/StringDataFormatConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/impl/springboot/StringDataFormatConfiguration.java
index aeccfac..64c4ed7 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/impl/springboot/StringDataFormatConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/impl/springboot/StringDataFormatConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.impl.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -23,6 +24,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.dataformat.string")
 public class StringDataFormatConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/impl/springboot/ZipDataFormatAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/impl/springboot/ZipDataFormatAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/impl/springboot/ZipDataFormatAutoConfiguration.java
index 26ea5fe..653b189 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/impl/springboot/ZipDataFormatAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/impl/springboot/ZipDataFormatAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.impl.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.CamelContextAware;
 import org.apache.camel.RuntimeCamelException;
@@ -43,6 +44,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(ZipDataFormatAutoConfiguration.Condition.class)
@@ -82,6 +84,7 @@ public class ZipDataFormatAutoConfiguration {
         };
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/impl/springboot/ZipDataFormatConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/impl/springboot/ZipDataFormatConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/impl/springboot/ZipDataFormatConfiguration.java
index 401acb9..6a3a6ba 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/impl/springboot/ZipDataFormatConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/impl/springboot/ZipDataFormatConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.impl.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -23,6 +24,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.dataformat.zip")
 public class ZipDataFormatConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/bean/springboot/BeanLanguageAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/bean/springboot/BeanLanguageAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/bean/springboot/BeanLanguageAutoConfiguration.java
index 6f93fd8..810bd2d 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/bean/springboot/BeanLanguageAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/bean/springboot/BeanLanguageAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.language.bean.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.CamelContextAware;
 import org.apache.camel.language.bean.BeanLanguage;
@@ -41,6 +42,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(BeanLanguageAutoConfiguration.Condition.class)
@@ -70,6 +72,7 @@ public class BeanLanguageAutoConfiguration {
         return language;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/bean/springboot/BeanLanguageConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/bean/springboot/BeanLanguageConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/bean/springboot/BeanLanguageConfiguration.java
index b39a7ac..aa65384 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/bean/springboot/BeanLanguageConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/bean/springboot/BeanLanguageConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.language.bean.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -23,6 +24,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.language.bean")
 public class BeanLanguageConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/constant/springboot/ConstantLanguageAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/constant/springboot/ConstantLanguageAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/constant/springboot/ConstantLanguageAutoConfiguration.java
index 50a4b7a..a5a00d4 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/constant/springboot/ConstantLanguageAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/constant/springboot/ConstantLanguageAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.language.constant.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.CamelContextAware;
 import org.apache.camel.language.constant.ConstantLanguage;
@@ -41,6 +42,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(ConstantLanguageAutoConfiguration.Condition.class)
@@ -71,6 +73,7 @@ public class ConstantLanguageAutoConfiguration {
         return language;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/constant/springboot/ConstantLanguageConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/constant/springboot/ConstantLanguageConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/constant/springboot/ConstantLanguageConfiguration.java
index cec0509..7d0ad77 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/constant/springboot/ConstantLanguageConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/constant/springboot/ConstantLanguageConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.language.constant.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -23,6 +24,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.language.constant")
 public class ConstantLanguageConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/header/springboot/HeaderLanguageAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/header/springboot/HeaderLanguageAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/header/springboot/HeaderLanguageAutoConfiguration.java
index d49c098..0d75034 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/header/springboot/HeaderLanguageAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/header/springboot/HeaderLanguageAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.language.header.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.CamelContextAware;
 import org.apache.camel.language.header.HeaderLanguage;
@@ -41,6 +42,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(HeaderLanguageAutoConfiguration.Condition.class)
@@ -70,6 +72,7 @@ public class HeaderLanguageAutoConfiguration {
         return language;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/header/springboot/HeaderLanguageConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/header/springboot/HeaderLanguageConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/header/springboot/HeaderLanguageConfiguration.java
index bf00d3a..6a3d67a 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/header/springboot/HeaderLanguageConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/header/springboot/HeaderLanguageConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.language.header.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -23,6 +24,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.language.header")
 public class HeaderLanguageConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/property/springboot/ExchangePropertyLanguageAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/property/springboot/ExchangePropertyLanguageAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/property/springboot/ExchangePropertyLanguageAutoConfiguration.java
index e4456cb..15e1508 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/property/springboot/ExchangePropertyLanguageAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/property/springboot/ExchangePropertyLanguageAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.language.property.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.CamelContextAware;
 import org.apache.camel.language.property.ExchangePropertyLanguage;
@@ -41,6 +42,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(ExchangePropertyLanguageAutoConfiguration.Condition.class)
@@ -73,6 +75,7 @@ public class ExchangePropertyLanguageAutoConfiguration {
         return language;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/property/springboot/ExchangePropertyLanguageConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/property/springboot/ExchangePropertyLanguageConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/property/springboot/ExchangePropertyLanguageConfiguration.java
index ef7a21c..8e58600 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/property/springboot/ExchangePropertyLanguageConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/property/springboot/ExchangePropertyLanguageConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.language.property.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -23,6 +24,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.language.exchangeproperty")
 public class ExchangePropertyLanguageConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/ref/springboot/RefLanguageAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/ref/springboot/RefLanguageAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/ref/springboot/RefLanguageAutoConfiguration.java
index 4c64f98..f73dffe 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/ref/springboot/RefLanguageAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/ref/springboot/RefLanguageAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.language.ref.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.CamelContextAware;
 import org.apache.camel.language.ref.RefLanguage;
@@ -41,6 +42,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(RefLanguageAutoConfiguration.Condition.class)
@@ -70,6 +72,7 @@ public class RefLanguageAutoConfiguration {
         return language;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/ref/springboot/RefLanguageConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/ref/springboot/RefLanguageConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/ref/springboot/RefLanguageConfiguration.java
index 7893b91..f1fbc7e 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/ref/springboot/RefLanguageConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/ref/springboot/RefLanguageConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.language.ref.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -23,6 +24,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.language.ref")
 public class RefLanguageConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/simple/springboot/FileLanguageAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/simple/springboot/FileLanguageAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/simple/springboot/FileLanguageAutoConfiguration.java
index 4891f8a..1345dc8 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/simple/springboot/FileLanguageAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/simple/springboot/FileLanguageAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.language.simple.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.CamelContextAware;
 import org.apache.camel.language.simple.FileLanguage;
@@ -41,6 +42,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(FileLanguageAutoConfiguration.Condition.class)
@@ -70,6 +72,7 @@ public class FileLanguageAutoConfiguration {
         return language;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/simple/springboot/FileLanguageConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/simple/springboot/FileLanguageConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/simple/springboot/FileLanguageConfiguration.java
index f80a9e4..13f0756 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/simple/springboot/FileLanguageConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/simple/springboot/FileLanguageConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.language.simple.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -23,6 +24,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.language.file")
 public class FileLanguageConfiguration {
 


[12/13] camel git commit: CAMEL-11165 Add @Generated annotation to code g...

Posted by zr...@apache.org.
CAMEL-11165 Add @Generated annotation to code g...

...enerated by SpringBootAutoConfigurationMojo

This regenerates Spring Boot auto configuration source files to include
`@Generated` annotation.


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/2297128f
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/2297128f
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/2297128f

Branch: refs/heads/master
Commit: 2297128fc16a93e08f9e09fc2c8e64bbfb5a8387
Parents: 583d6dc
Author: Zoran Regvart <zr...@apache.org>
Authored: Wed Apr 19 10:26:38 2017 +0200
Committer: Zoran Regvart <zr...@apache.org>
Committed: Wed Apr 19 10:32:34 2017 +0200

----------------------------------------------------------------------
 .../component/ahc/springboot/AhcComponentAutoConfiguration.java  | 3 +++
 .../component/ahc/springboot/AhcComponentConfiguration.java      | 2 ++
 .../ahc/ws/springboot/WsComponentAutoConfiguration.java          | 3 +++
 .../component/ahc/ws/springboot/WsComponentConfiguration.java    | 2 ++
 .../amqp/springboot/AMQPComponentAutoConfiguration.java          | 3 +++
 .../component/amqp/springboot/AMQPComponentConfiguration.java    | 2 ++
 .../apns/springboot/ApnsComponentAutoConfiguration.java          | 3 +++
 .../component/apns/springboot/ApnsComponentConfiguration.java    | 2 ++
 .../asterisk/springboot/AsteriskComponentAutoConfiguration.java  | 3 +++
 .../atmos/springboot/AtmosComponentAutoConfiguration.java        | 3 +++
 .../springboot/WebsocketComponentAutoConfiguration.java          | 3 +++
 .../websocket/springboot/WebsocketComponentConfiguration.java    | 2 ++
 .../atom/springboot/AtomComponentAutoConfiguration.java          | 3 +++
 .../avro/springboot/AvroComponentAutoConfiguration.java          | 3 +++
 .../component/avro/springboot/AvroComponentConfiguration.java    | 2 ++
 .../avro/springboot/AvroDataFormatAutoConfiguration.java         | 3 +++
 .../dataformat/avro/springboot/AvroDataFormatConfiguration.java  | 2 ++
 .../aws/cw/springboot/CwComponentAutoConfiguration.java          | 3 +++
 .../aws/ddb/springboot/DdbComponentAutoConfiguration.java        | 3 +++
 .../springboot/DdbStreamComponentAutoConfiguration.java          | 3 +++
 .../aws/ec2/springboot/EC2ComponentAutoConfiguration.java        | 3 +++
 .../springboot/KinesisFirehoseComponentAutoConfiguration.java    | 3 +++
 .../kinesis/springboot/KinesisComponentAutoConfiguration.java    | 3 +++
 .../aws/s3/springboot/S3ComponentAutoConfiguration.java          | 3 +++
 .../aws/sdb/springboot/SdbComponentAutoConfiguration.java        | 3 +++
 .../aws/ses/springboot/SesComponentAutoConfiguration.java        | 3 +++
 .../aws/sns/springboot/SnsComponentAutoConfiguration.java        | 3 +++
 .../aws/sqs/springboot/SqsComponentAutoConfiguration.java        | 3 +++
 .../aws/swf/springboot/SWFComponentAutoConfiguration.java        | 3 +++
 .../blob/springboot/BlobServiceComponentAutoConfiguration.java   | 3 +++
 .../queue/springboot/QueueServiceComponentAutoConfiguration.java | 3 +++
 .../barcode/springboot/BarcodeDataFormatAutoConfiguration.java   | 3 +++
 .../barcode/springboot/BarcodeDataFormatConfiguration.java       | 2 ++
 .../base64/springboot/Base64DataFormatAutoConfiguration.java     | 3 +++
 .../base64/springboot/Base64DataFormatConfiguration.java         | 2 ++
 .../springboot/BeanValidatorComponentAutoConfiguration.java      | 3 +++
 .../beanio/springboot/BeanIODataFormatAutoConfiguration.java     | 3 +++
 .../beanio/springboot/BeanIODataFormatConfiguration.java         | 2 ++
 .../springboot/BeanstalkComponentAutoConfiguration.java          | 3 +++
 .../beanstalk/springboot/BeanstalkComponentConfiguration.java    | 2 ++
 .../csv/springboot/BindyCsvDataFormatAutoConfiguration.java      | 3 +++
 .../bindy/csv/springboot/BindyCsvDataFormatConfiguration.java    | 2 ++
 .../springboot/BindyFixedLengthDataFormatAutoConfiguration.java  | 3 +++
 .../springboot/BindyFixedLengthDataFormatConfiguration.java      | 2 ++
 .../springboot/BindyKeyValuePairDataFormatAutoConfiguration.java | 3 +++
 .../kvp/springboot/BindyKeyValuePairDataFormatConfiguration.java | 2 ++
 .../bonita/springboot/BonitaComponentAutoConfiguration.java      | 3 +++
 .../boon/springboot/BoonDataFormatAutoConfiguration.java         | 3 +++
 .../component/boon/springboot/BoonDataFormatConfiguration.java   | 2 ++
 .../component/box/springboot/BoxComponentAutoConfiguration.java  | 3 +++
 .../component/box/springboot/BoxComponentConfiguration.java      | 2 ++
 .../springboot/BraintreeComponentAutoConfiguration.java          | 3 +++
 .../braintree/springboot/BraintreeComponentConfiguration.java    | 2 ++
 .../cache/springboot/CacheComponentAutoConfiguration.java        | 3 +++
 .../component/cache/springboot/CacheComponentConfiguration.java  | 2 ++
 .../springboot/CassandraComponentAutoConfiguration.java          | 3 +++
 .../castor/springboot/CastorDataFormatAutoConfiguration.java     | 3 +++
 .../castor/springboot/CastorDataFormatConfiguration.java         | 2 ++
 .../springboot/ChronicleEngineComponentAutoConfiguration.java    | 3 +++
 .../chunk/springboot/ChunkComponentAutoConfiguration.java        | 3 +++
 .../component/cm/springboot/CMComponentAutoConfiguration.java    | 3 +++
 .../cmis/springboot/CMISComponentAutoConfiguration.java          | 3 +++
 .../component/cmis/springboot/CMISComponentConfiguration.java    | 2 ++
 .../camel/coap/springboot/CoAPComponentAutoConfiguration.java    | 3 +++
 .../cometd/springboot/CometdComponentAutoConfiguration.java      | 3 +++
 .../cometd/springboot/CometdComponentConfiguration.java          | 2 ++
 .../consul/springboot/ConsulComponentAutoConfiguration.java      | 3 +++
 .../consul/springboot/ConsulComponentConfiguration.java          | 2 ++
 .../springboot/QualifiedContextComponentAutoConfiguration.java   | 3 +++
 .../bean/springboot/BeanComponentAutoConfiguration.java          | 3 +++
 .../beanclass/springboot/ClassComponentAutoConfiguration.java    | 3 +++
 .../springboot/BindingNameComponentAutoConfiguration.java        | 3 +++
 .../browse/springboot/BrowseComponentAutoConfiguration.java      | 3 +++
 .../springboot/ControlBusComponentAutoConfiguration.java         | 3 +++
 .../springboot/DataFormatComponentAutoConfiguration.java         | 3 +++
 .../dataset/springboot/DataSetComponentAutoConfiguration.java    | 3 +++
 .../direct/springboot/DirectComponentAutoConfiguration.java      | 3 +++
 .../direct/springboot/DirectComponentConfiguration.java          | 2 ++
 .../directvm/springboot/DirectVmComponentAutoConfiguration.java  | 3 +++
 .../directvm/springboot/DirectVmComponentConfiguration.java      | 2 ++
 .../file/springboot/FileComponentAutoConfiguration.java          | 3 +++
 .../language/springboot/LanguageComponentAutoConfiguration.java  | 3 +++
 .../component/log/springboot/LogComponentAutoConfiguration.java  | 3 +++
 .../component/log/springboot/LogComponentConfiguration.java      | 2 ++
 .../mock/springboot/MockComponentAutoConfiguration.java          | 3 +++
 .../springboot/PropertiesComponentAutoConfiguration.java         | 3 +++
 .../properties/springboot/PropertiesComponentConfiguration.java  | 2 ++
 .../component/ref/springboot/RefComponentAutoConfiguration.java  | 3 +++
 .../rest/springboot/RestApiComponentAutoConfiguration.java       | 3 +++
 .../rest/springboot/RestComponentAutoConfiguration.java          | 3 +++
 .../component/rest/springboot/RestComponentConfiguration.java    | 2 ++
 .../springboot/SchedulerComponentAutoConfiguration.java          | 3 +++
 .../scheduler/springboot/SchedulerComponentConfiguration.java    | 2 ++
 .../seda/springboot/SedaComponentAutoConfiguration.java          | 3 +++
 .../component/seda/springboot/SedaComponentConfiguration.java    | 2 ++
 .../stub/springboot/StubComponentAutoConfiguration.java          | 3 +++
 .../component/stub/springboot/StubComponentConfiguration.java    | 2 ++
 .../test/springboot/TestComponentAutoConfiguration.java          | 3 +++
 .../timer/springboot/TimerComponentAutoConfiguration.java        | 3 +++
 .../springboot/ValidatorComponentAutoConfiguration.java          | 3 +++
 .../validator/springboot/ValidatorComponentConfiguration.java    | 2 ++
 .../component/vm/springboot/VmComponentAutoConfiguration.java    | 3 +++
 .../camel/component/vm/springboot/VmComponentConfiguration.java  | 2 ++
 .../xslt/springboot/XsltComponentAutoConfiguration.java          | 3 +++
 .../component/xslt/springboot/XsltComponentConfiguration.java    | 2 ++
 .../camel/impl/springboot/GzipDataFormatAutoConfiguration.java   | 3 +++
 .../camel/impl/springboot/GzipDataFormatConfiguration.java       | 2 ++
 .../springboot/SerializationDataFormatAutoConfiguration.java     | 3 +++
 .../impl/springboot/SerializationDataFormatConfiguration.java    | 2 ++
 .../camel/impl/springboot/StringDataFormatAutoConfiguration.java | 3 +++
 .../camel/impl/springboot/StringDataFormatConfiguration.java     | 2 ++
 .../camel/impl/springboot/ZipDataFormatAutoConfiguration.java    | 3 +++
 .../apache/camel/impl/springboot/ZipDataFormatConfiguration.java | 2 ++
 .../language/bean/springboot/BeanLanguageAutoConfiguration.java  | 3 +++
 .../language/bean/springboot/BeanLanguageConfiguration.java      | 2 ++
 .../constant/springboot/ConstantLanguageAutoConfiguration.java   | 3 +++
 .../constant/springboot/ConstantLanguageConfiguration.java       | 2 ++
 .../header/springboot/HeaderLanguageAutoConfiguration.java       | 3 +++
 .../language/header/springboot/HeaderLanguageConfiguration.java  | 2 ++
 .../springboot/ExchangePropertyLanguageAutoConfiguration.java    | 3 +++
 .../springboot/ExchangePropertyLanguageConfiguration.java        | 2 ++
 .../language/ref/springboot/RefLanguageAutoConfiguration.java    | 3 +++
 .../camel/language/ref/springboot/RefLanguageConfiguration.java  | 2 ++
 .../simple/springboot/FileLanguageAutoConfiguration.java         | 3 +++
 .../language/simple/springboot/FileLanguageConfiguration.java    | 2 ++
 .../simple/springboot/SimpleLanguageAutoConfiguration.java       | 3 +++
 .../language/simple/springboot/SimpleLanguageConfiguration.java  | 2 ++
 .../tokenizer/springboot/TokenizeLanguageAutoConfiguration.java  | 3 +++
 .../tokenizer/springboot/TokenizeLanguageConfiguration.java      | 2 ++
 .../springboot/XMLTokenizeLanguageAutoConfiguration.java         | 3 +++
 .../tokenizer/springboot/XMLTokenizeLanguageConfiguration.java   | 2 ++
 .../xpath/springboot/XPathLanguageAutoConfiguration.java         | 3 +++
 .../language/xpath/springboot/XPathLanguageConfiguration.java    | 2 ++
 .../ConsulServiceCallServiceDiscoveryConfigurationCommon.java    | 2 ++
 ...ConsulServiceCallServiceDiscoveryConfigurationProperties.java | 2 ++
 .../DnsServiceCallServiceDiscoveryConfigurationCommon.java       | 2 ++
 .../DnsServiceCallServiceDiscoveryConfigurationProperties.java   | 2 ++
 .../EtcdServiceCallServiceDiscoveryConfigurationCommon.java      | 2 ++
 .../EtcdServiceCallServiceDiscoveryConfigurationProperties.java  | 2 ++
 ...KubernetesServiceCallServiceDiscoveryConfigurationCommon.java | 2 ++
 ...rnetesServiceCallServiceDiscoveryConfigurationProperties.java | 2 ++
 .../RibbonServiceCallLoadBalancerConfigurationCommon.java        | 2 ++
 .../RibbonServiceCallLoadBalancerConfigurationProperties.java    | 2 ++
 .../springboot/RestConfigurationDefinitionAutoConfiguration.java | 2 ++
 .../rest/springboot/RestConfigurationDefinitionProperties.java   | 2 ++
 .../model/springboot/HystrixConfigurationDefinitionCommon.java   | 4 ++++
 .../springboot/HystrixConfigurationDefinitionProperties.java     | 2 ++
 .../springboot/CouchbaseComponentAutoConfiguration.java          | 3 +++
 .../couchdb/springboot/CouchDbComponentAutoConfiguration.java    | 3 +++
 .../springboot/DigitalSignatureComponentAutoConfiguration.java   | 3 +++
 .../springboot/DigitalSignatureComponentConfiguration.java       | 2 ++
 .../crypto/springboot/CryptoDataFormatAutoConfiguration.java     | 3 +++
 .../crypto/springboot/CryptoDataFormatConfiguration.java         | 2 ++
 .../crypto/springboot/PGPDataFormatAutoConfiguration.java        | 3 +++
 .../converter/crypto/springboot/PGPDataFormatConfiguration.java  | 2 ++
 .../csv/springboot/CsvDataFormatAutoConfiguration.java           | 3 +++
 .../dataformat/csv/springboot/CsvDataFormatConfiguration.java    | 2 ++
 .../cxf/jaxrs/springboot/CxfRsComponentAutoConfiguration.java    | 3 +++
 .../cxf/jaxrs/springboot/CxfRsComponentConfiguration.java        | 2 ++
 .../component/cxf/springboot/CxfComponentAutoConfiguration.java  | 3 +++
 .../component/cxf/springboot/CxfComponentConfiguration.java      | 2 ++
 .../springboot/DigitalOceanComponentAutoConfiguration.java       | 3 +++
 .../springboot/DisruptorComponentAutoConfiguration.java          | 3 +++
 .../disruptor/springboot/DisruptorComponentConfiguration.java    | 2 ++
 .../vm/springboot/DisruptorVmComponentAutoConfiguration.java     | 3 +++
 .../vm/springboot/DisruptorVmComponentConfiguration.java         | 2 ++
 .../component/dns/springboot/DnsComponentAutoConfiguration.java  | 3 +++
 .../docker/springboot/DockerComponentAutoConfiguration.java      | 3 +++
 .../docker/springboot/DockerComponentConfiguration.java          | 2 ++
 .../dozer/springboot/DozerComponentAutoConfiguration.java        | 3 +++
 .../drill/springboot/DrillComponentAutoConfiguration.java        | 3 +++
 .../dropbox/springboot/DropboxComponentAutoConfiguration.java    | 3 +++
 .../ehcache/springboot/EhcacheComponentAutoConfiguration.java    | 3 +++
 .../springboot/ElasticsearchComponentAutoConfiguration.java      | 3 +++
 .../springboot/ElasticsearchComponentConfiguration.java          | 2 ++
 .../springboot/ElasticsearchComponentAutoConfiguration.java      | 3 +++
 .../elsql/springboot/ElsqlComponentAutoConfiguration.java        | 3 +++
 .../component/elsql/springboot/ElsqlComponentConfiguration.java  | 2 ++
 .../etcd/springboot/EtcdComponentAutoConfiguration.java          | 3 +++
 .../component/etcd/springboot/EtcdComponentConfiguration.java    | 2 ++
 .../exec/springboot/ExecComponentAutoConfiguration.java          | 3 +++
 .../facebook/springboot/FacebookComponentAutoConfiguration.java  | 3 +++
 .../facebook/springboot/FacebookComponentConfiguration.java      | 2 ++
 .../flatpack/springboot/FlatpackComponentAutoConfiguration.java  | 3 +++
 .../flatpack/springboot/FlatpackDataFormatAutoConfiguration.java | 3 +++
 .../flatpack/springboot/FlatpackDataFormatConfiguration.java     | 2 ++
 .../flink/springboot/FlinkComponentAutoConfiguration.java        | 3 +++
 .../component/flink/springboot/FlinkComponentConfiguration.java  | 2 ++
 .../component/fop/springboot/FopComponentAutoConfiguration.java  | 3 +++
 .../springboot/FreemarkerComponentAutoConfiguration.java         | 3 +++
 .../freemarker/springboot/FreemarkerComponentConfiguration.java  | 2 ++
 .../file/remote/springboot/FtpComponentAutoConfiguration.java    | 3 +++
 .../file/remote/springboot/FtpsComponentAutoConfiguration.java   | 3 +++
 .../file/remote/springboot/FtpsComponentConfiguration.java       | 2 ++
 .../file/remote/springboot/SftpComponentAutoConfiguration.java   | 3 +++
 .../ganglia/springboot/GangliaComponentAutoConfiguration.java    | 3 +++
 .../ganglia/springboot/GangliaComponentConfiguration.java        | 2 ++
 .../geocoder/springboot/GeoCoderComponentAutoConfiguration.java  | 3 +++
 .../component/git/springboot/GitComponentAutoConfiguration.java  | 3 +++
 .../github/springboot/GitHubComponentAutoConfiguration.java      | 3 +++
 .../springboot/GoogleCalendarComponentAutoConfiguration.java     | 3 +++
 .../springboot/GoogleCalendarComponentConfiguration.java         | 2 ++
 .../drive/springboot/GoogleDriveComponentAutoConfiguration.java  | 3 +++
 .../drive/springboot/GoogleDriveComponentConfiguration.java      | 2 ++
 .../mail/springboot/GoogleMailComponentAutoConfiguration.java    | 3 +++
 .../google/mail/springboot/GoogleMailComponentConfiguration.java | 2 ++
 .../springboot/GooglePubsubComponentAutoConfiguration.java       | 3 +++
 .../pubsub/springboot/GooglePubsubComponentConfiguration.java    | 2 ++
 .../gora/springboot/GoraComponentAutoConfiguration.java          | 3 +++
 .../groovy/springboot/GroovyLanguageAutoConfiguration.java       | 3 +++
 .../language/groovy/springboot/GroovyLanguageConfiguration.java  | 2 ++
 .../grpc/springboot/GrpcComponentAutoConfiguration.java          | 3 +++
 .../gson/springboot/GsonDataFormatAutoConfiguration.java         | 3 +++
 .../component/gson/springboot/GsonDataFormatConfiguration.java   | 2 ++
 .../springboot/GuavaEventBusComponentAutoConfiguration.java      | 3 +++
 .../eventbus/springboot/GuavaEventBusComponentConfiguration.java | 2 ++
 .../springboot/HazelcastComponentAutoConfiguration.java          | 3 +++
 .../hazelcast/springboot/HazelcastComponentConfiguration.java    | 2 ++
 .../hbase/springboot/HBaseComponentAutoConfiguration.java        | 3 +++
 .../component/hbase/springboot/HBaseComponentConfiguration.java  | 2 ++
 .../hdfs/springboot/HdfsComponentAutoConfiguration.java          | 3 +++
 .../component/hdfs/springboot/HdfsComponentConfiguration.java    | 2 ++
 .../hdfs2/springboot/HdfsComponentAutoConfiguration.java         | 4 ++--
 .../component/hdfs2/springboot/HdfsComponentConfiguration.java   | 2 +-
 .../hessian/springboot/HessianDataFormatAutoConfiguration.java   | 3 +++
 .../hessian/springboot/HessianDataFormatConfiguration.java       | 2 ++
 .../hipchat/springboot/HipchatComponentAutoConfiguration.java    | 3 +++
 .../component/hl7/springboot/HL7DataFormatAutoConfiguration.java | 3 +++
 .../component/hl7/springboot/HL7DataFormatConfiguration.java     | 2 ++
 .../hl7/springboot/TerserLanguageAutoConfiguration.java          | 3 +++
 .../component/hl7/springboot/TerserLanguageConfiguration.java    | 2 ++
 .../http/springboot/HttpComponentAutoConfiguration.java          | 3 +++
 .../component/http/springboot/HttpComponentConfiguration.java    | 2 ++
 .../http4/springboot/HttpComponentAutoConfiguration.java         | 3 +++
 .../component/http4/springboot/HttpComponentConfiguration.java   | 2 ++
 .../ical/springboot/ICalDataFormatAutoConfiguration.java         | 3 +++
 .../component/ical/springboot/ICalDataFormatConfiguration.java   | 2 ++
 .../springboot/InfinispanComponentAutoConfiguration.java         | 3 +++
 .../infinispan/springboot/InfinispanComponentConfiguration.java  | 2 ++
 .../influxdb/springboot/InfluxDbComponentAutoConfiguration.java  | 3 +++
 .../component/irc/springboot/IrcComponentAutoConfiguration.java  | 3 +++
 .../component/irc/springboot/IrcComponentConfiguration.java      | 2 ++
 .../ironmq/springboot/IronMQComponentAutoConfiguration.java      | 3 +++
 .../jackson/springboot/JacksonDataFormatAutoConfiguration.java   | 3 +++
 .../jackson/springboot/JacksonDataFormatConfiguration.java       | 2 ++
 .../springboot/JacksonXMLDataFormatAutoConfiguration.java        | 3 +++
 .../jacksonxml/springboot/JacksonXMLDataFormatConfiguration.java | 2 ++
 .../springboot/JavaSpaceComponentAutoConfiguration.java          | 3 +++
 .../jaxb/springboot/JaxbDataFormatAutoConfiguration.java         | 3 +++
 .../converter/jaxb/springboot/JaxbDataFormatConfiguration.java   | 2 ++
 .../jbpm/springboot/JBPMComponentAutoConfiguration.java          | 3 +++
 .../jcache/springboot/JCacheComponentAutoConfiguration.java      | 3 +++
 .../jcache/springboot/JCacheComponentConfiguration.java          | 2 ++
 .../component/jcr/springboot/JcrComponentAutoConfiguration.java  | 3 +++
 .../jdbc/springboot/JdbcComponentAutoConfiguration.java          | 3 +++
 .../component/jdbc/springboot/JdbcComponentConfiguration.java    | 2 ++
 .../jetty9/springboot/JettyHttpComponentAutoConfiguration9.java  | 3 +++
 .../jetty9/springboot/JettyHttpComponentConfiguration9.java      | 2 ++
 .../jgroups/springboot/JGroupsComponentAutoConfiguration.java    | 3 +++
 .../jgroups/springboot/JGroupsComponentConfiguration.java        | 2 ++
 .../jibx/springboot/JibxDataFormatAutoConfiguration.java         | 3 +++
 .../dataformat/jibx/springboot/JibxDataFormatConfiguration.java  | 2 ++
 .../jing/springboot/JingComponentAutoConfiguration.java          | 3 +++
 .../jira/springboot/JIRAComponentAutoConfiguration.java          | 3 +++
 .../component/jms/springboot/JmsComponentAutoConfiguration.java  | 3 +++
 .../component/jms/springboot/JmsComponentConfiguration.java      | 2 ++
 .../component/jmx/springboot/JMXComponentAutoConfiguration.java  | 3 +++
 .../johnzon/springboot/JohnzonDataFormatAutoConfiguration.java   | 3 +++
 .../johnzon/springboot/JohnzonDataFormatConfiguration.java       | 2 ++
 .../jolt/springboot/JoltComponentAutoConfiguration.java          | 3 +++
 .../component/jolt/springboot/JoltComponentConfiguration.java    | 2 ++
 .../language/sql/springboot/SqlLanguageAutoConfiguration.java    | 3 +++
 .../camel/language/sql/springboot/SqlLanguageConfiguration.java  | 2 ++
 .../component/jpa/springboot/JpaComponentAutoConfiguration.java  | 3 +++
 .../component/jpa/springboot/JpaComponentConfiguration.java      | 2 ++
 .../component/scp/springboot/ScpComponentAutoConfiguration.java  | 3 +++
 .../component/scp/springboot/ScpComponentConfiguration.java      | 2 ++
 .../jsonpath/springboot/JsonPathLanguageAutoConfiguration.java   | 3 +++
 .../camel/jsonpath/springboot/JsonPathLanguageConfiguration.java | 2 ++
 .../jt400/springboot/Jt400ComponentAutoConfiguration.java        | 3 +++
 .../component/jt400/springboot/Jt400ComponentConfiguration.java  | 2 ++
 .../language/juel/springboot/JuelLanguageAutoConfiguration.java  | 3 +++
 .../language/juel/springboot/JuelLanguageConfiguration.java      | 2 ++
 .../jxpath/springboot/JXPathLanguageAutoConfiguration.java       | 3 +++
 .../language/jxpath/springboot/JXPathLanguageConfiguration.java  | 2 ++
 .../kafka/springboot/KafkaComponentAutoConfiguration.java        | 3 +++
 .../component/kafka/springboot/KafkaComponentConfiguration.java  | 2 ++
 .../kestrel/springboot/KestrelComponentAutoConfiguration.java    | 3 +++
 .../kestrel/springboot/KestrelComponentConfiguration.java        | 2 ++
 .../krati/springboot/KratiComponentAutoConfiguration.java        | 3 +++
 .../springboot/KubernetesComponentAutoConfiguration.java         | 3 +++
 .../ldap/springboot/LdapComponentAutoConfiguration.java          | 3 +++
 .../linkedin/springboot/LinkedInComponentAutoConfiguration.java  | 3 +++
 .../linkedin/springboot/LinkedInComponentConfiguration.java      | 2 ++
 .../lucene/springboot/LuceneComponentAutoConfiguration.java      | 3 +++
 .../lucene/springboot/LuceneComponentConfiguration.java          | 2 ++
 .../springboot/LumberjackComponentAutoConfiguration.java         | 3 +++
 .../lumberjack/springboot/LumberjackComponentConfiguration.java  | 2 ++
 .../lzf/springboot/LZFDataFormatAutoConfiguration.java           | 3 +++
 .../dataformat/lzf/springboot/LZFDataFormatConfiguration.java    | 2 ++
 .../mail/springboot/MailComponentAutoConfiguration.java          | 3 +++
 .../component/mail/springboot/MailComponentConfiguration.java    | 2 ++
 .../springboot/MimeMultipartDataFormatAutoConfiguration.java     | 3 +++
 .../springboot/MimeMultipartDataFormatConfiguration.java         | 2 ++
 .../metrics/springboot/MetricsComponentAutoConfiguration.java    | 3 +++
 .../metrics/springboot/MetricsComponentConfiguration.java        | 2 ++
 .../client/springboot/MiloClientComponentAutoConfiguration.java  | 3 +++
 .../milo/client/springboot/MiloClientComponentConfiguration.java | 2 ++
 .../server/springboot/MiloServerComponentAutoConfiguration.java  | 3 +++
 .../milo/server/springboot/MiloServerComponentConfiguration.java | 2 ++
 .../mina2/springboot/Mina2ComponentAutoConfiguration.java        | 3 +++
 .../component/mina2/springboot/Mina2ComponentConfiguration.java  | 2 ++
 .../mllp/springboot/MllpComponentAutoConfiguration.java          | 3 +++
 .../gridfs/springboot/GridFsComponentAutoConfiguration.java      | 3 +++
 .../mongodb/springboot/MongoDbComponentAutoConfiguration.java    | 3 +++
 .../mongodb3/springboot/MongoDbComponentAutoConfiguration.java   | 3 +++
 .../mqtt/springboot/MQTTComponentAutoConfiguration.java          | 3 +++
 .../component/mqtt/springboot/MQTTComponentConfiguration.java    | 2 ++
 .../validator/msv/springboot/MsvComponentAutoConfiguration.java  | 3 +++
 .../validator/msv/springboot/MsvComponentConfiguration.java      | 2 ++
 .../mustache/springboot/MustacheComponentAutoConfiguration.java  | 3 +++
 .../mustache/springboot/MustacheComponentConfiguration.java      | 2 ++
 .../mvel/springboot/MvelComponentAutoConfiguration.java          | 3 +++
 .../language/mvel/springboot/MvelLanguageAutoConfiguration.java  | 3 +++
 .../language/mvel/springboot/MvelLanguageConfiguration.java      | 2 ++
 .../mybatis/springboot/MyBatisComponentAutoConfiguration.java    | 3 +++
 .../mybatis/springboot/MyBatisComponentConfiguration.java        | 2 ++
 .../nagios/springboot/NagiosComponentAutoConfiguration.java      | 3 +++
 .../nagios/springboot/NagiosComponentConfiguration.java          | 2 ++
 .../nats/springboot/NatsComponentAutoConfiguration.java          | 3 +++
 .../component/nats/springboot/NatsComponentConfiguration.java    | 2 ++
 .../http/springboot/NettyHttpComponentAutoConfiguration.java     | 3 +++
 .../netty/http/springboot/NettyHttpComponentConfiguration.java   | 2 ++
 .../netty/springboot/NettyComponentAutoConfiguration.java        | 3 +++
 .../component/netty/springboot/NettyComponentConfiguration.java  | 2 ++
 .../http/springboot/NettyHttpComponentAutoConfiguration.java     | 3 +++
 .../netty4/http/springboot/NettyHttpComponentConfiguration.java  | 2 ++
 .../netty4/springboot/NettyComponentAutoConfiguration.java       | 3 +++
 .../component/netty4/springboot/NettyComponentConfiguration.java | 2 ++
 .../language/ognl/springboot/OgnlLanguageAutoConfiguration.java  | 3 +++
 .../language/ognl/springboot/OgnlLanguageConfiguration.java      | 2 ++
 .../olingo2/springboot/Olingo2ComponentAutoConfiguration.java    | 3 +++
 .../olingo2/springboot/Olingo2ComponentConfiguration.java        | 2 ++
 .../olingo4/springboot/Olingo4ComponentAutoConfiguration.java    | 3 +++
 .../olingo4/springboot/Olingo4ComponentConfiguration.java        | 2 ++
 .../springboot/OpenShiftComponentAutoConfiguration.java          | 3 +++
 .../openshift/springboot/OpenShiftComponentConfiguration.java    | 2 ++
 .../cinder/springboot/CinderComponentAutoConfiguration.java      | 3 +++
 .../glance/springboot/GlanceComponentAutoConfiguration.java      | 3 +++
 .../keystone/springboot/KeystoneComponentAutoConfiguration.java  | 3 +++
 .../neutron/springboot/NeutronComponentAutoConfiguration.java    | 3 +++
 .../nova/springboot/NovaComponentAutoConfiguration.java          | 3 +++
 .../swift/springboot/SwiftComponentAutoConfiguration.java        | 3 +++
 .../springboot/OptaPlannerComponentAutoConfiguration.java        | 3 +++
 .../paho/springboot/PahoComponentAutoConfiguration.java          | 3 +++
 .../component/paho/springboot/PahoComponentConfiguration.java    | 2 ++
 .../component/pdf/springboot/PdfComponentAutoConfiguration.java  | 3 +++
 .../pgevent/springboot/PgEventComponentAutoConfiguration.java    | 3 +++
 .../printer/springboot/PrinterComponentAutoConfiguration.java    | 3 +++
 .../protobuf/springboot/ProtobufDataFormatAutoConfiguration.java | 3 +++
 .../protobuf/springboot/ProtobufDataFormatConfiguration.java     | 2 ++
 .../pubnub/springboot/PubNubComponentAutoConfiguration.java      | 3 +++
 .../quartz2/springboot/QuartzComponentAutoConfiguration.java     | 3 +++
 .../quartz2/springboot/QuartzComponentConfiguration.java         | 2 ++
 .../springboot/QuickfixjComponentAutoConfiguration.java          | 3 +++
 .../quickfixj/springboot/QuickfixjComponentConfiguration.java    | 2 ++
 .../rabbitmq/springboot/RabbitMQComponentAutoConfiguration.java  | 3 +++
 .../springboot/ReactiveStreamsComponentAutoConfiguration.java    | 3 +++
 .../springboot/ReactiveStreamsComponentConfiguration.java        | 2 ++
 .../springboot/RestSwaggerComponentAutoConfiguration.java        | 3 +++
 .../swagger/springboot/RestSwaggerComponentConfiguration.java    | 2 ++
 .../restlet/springboot/RestletComponentAutoConfiguration.java    | 3 +++
 .../restlet/springboot/RestletComponentConfiguration.java        | 2 ++
 .../component/rmi/springboot/RmiComponentAutoConfiguration.java  | 3 +++
 .../routebox/springboot/RouteboxComponentAutoConfiguration.java  | 3 +++
 .../component/rss/springboot/RssComponentAutoConfiguration.java  | 3 +++
 .../rss/springboot/RssDataFormatAutoConfiguration.java           | 3 +++
 .../dataformat/rss/springboot/RssDataFormatConfiguration.java    | 2 ++
 .../springboot/SalesforceComponentAutoConfiguration.java         | 3 +++
 .../salesforce/springboot/SalesforceComponentConfiguration.java  | 2 ++
 .../springboot/NetWeaverComponentAutoConfiguration.java          | 3 +++
 .../xquery/springboot/XQueryComponentAutoConfiguration.java      | 3 +++
 .../xquery/springboot/XQueryComponentConfiguration.java          | 2 ++
 .../xquery/springboot/XQueryLanguageAutoConfiguration.java       | 3 +++
 .../language/xquery/springboot/XQueryLanguageConfiguration.java  | 2 ++
 .../springboot/SchematronComponentAutoConfiguration.java         | 3 +++
 .../script/springboot/JavaScriptLanguageAutoConfiguration.java   | 3 +++
 .../script/springboot/JavaScriptLanguageConfiguration.java       | 2 ++
 .../builder/script/springboot/PhpLanguageAutoConfiguration.java  | 3 +++
 .../builder/script/springboot/PhpLanguageConfiguration.java      | 2 ++
 .../script/springboot/PythonLanguageAutoConfiguration.java       | 3 +++
 .../builder/script/springboot/PythonLanguageConfiguration.java   | 2 ++
 .../builder/script/springboot/RubyLanguageAutoConfiguration.java | 3 +++
 .../builder/script/springboot/RubyLanguageConfiguration.java     | 2 ++
 .../springboot/ServiceNowComponentAutoConfiguration.java         | 3 +++
 .../servicenow/springboot/ServiceNowComponentConfiguration.java  | 2 ++
 .../servlet/springboot/ServletComponentAutoConfiguration.java    | 3 +++
 .../servlet/springboot/ServletComponentConfiguration.java        | 2 ++
 .../component/sip/springboot/SipComponentAutoConfiguration.java  | 3 +++
 .../batch/springboot/SjmsBatchComponentAutoConfiguration.java    | 3 +++
 .../sjms/batch/springboot/SjmsBatchComponentConfiguration.java   | 2 ++
 .../sjms/springboot/SjmsComponentAutoConfiguration.java          | 3 +++
 .../component/sjms/springboot/SjmsComponentConfiguration.java    | 2 ++
 .../sjms2/springboot/Sjms2ComponentAutoConfiguration.java        | 3 +++
 .../component/sjms2/springboot/Sjms2ComponentConfiguration.java  | 2 ++
 .../slack/springboot/SlackComponentAutoConfiguration.java        | 3 +++
 .../component/slack/springboot/SlackComponentConfiguration.java  | 2 ++
 .../smpp/springboot/SmppComponentAutoConfiguration.java          | 3 +++
 .../component/smpp/springboot/SmppComponentConfiguration.java    | 2 ++
 .../springboot/SnakeYAMLDataFormatAutoConfiguration.java         | 3 +++
 .../snakeyaml/springboot/SnakeYAMLDataFormatConfiguration.java   | 2 ++
 .../snmp/springboot/SnmpComponentAutoConfiguration.java          | 3 +++
 .../soap/springboot/SoapJaxbDataFormatAutoConfiguration.java     | 3 +++
 .../soap/springboot/SoapJaxbDataFormatConfiguration.java         | 2 ++
 .../solr/springboot/SolrComponentAutoConfiguration.java          | 3 +++
 .../spark/springboot/SparkComponentAutoConfiguration.java        | 3 +++
 .../component/spark/springboot/SparkComponentConfiguration.java  | 2 ++
 .../splunk/springboot/SplunkComponentAutoConfiguration.java      | 3 +++
 .../splunk/springboot/SplunkComponentConfiguration.java          | 2 ++
 .../batch/springboot/SpringBatchComponentAutoConfiguration.java  | 3 +++
 .../batch/springboot/SpringBatchComponentConfiguration.java      | 2 ++
 .../springboot/SpringIntegrationComponentAutoConfiguration.java  | 3 +++
 .../springboot/SpringLdapComponentAutoConfiguration.java         | 3 +++
 .../redis/springboot/RedisComponentAutoConfiguration.java        | 3 +++
 .../event/springboot/EventComponentAutoConfiguration.java        | 3 +++
 .../language/spel/springboot/SpelLanguageAutoConfiguration.java  | 3 +++
 .../language/spel/springboot/SpelLanguageConfiguration.java      | 2 ++
 .../springboot/SpringWebserviceComponentAutoConfiguration.java   | 3 +++
 .../ws/springboot/SpringWebserviceComponentConfiguration.java    | 2 ++
 .../component/sql/springboot/SqlComponentAutoConfiguration.java  | 3 +++
 .../component/sql/springboot/SqlComponentConfiguration.java      | 2 ++
 .../stored/springboot/SqlStoredComponentAutoConfiguration.java   | 3 +++
 .../sql/stored/springboot/SqlStoredComponentConfiguration.java   | 2 ++
 .../component/ssh/springboot/SshComponentAutoConfiguration.java  | 3 +++
 .../component/ssh/springboot/SshComponentConfiguration.java      | 2 ++
 .../stax/springboot/StAXComponentAutoConfiguration.java          | 3 +++
 .../stomp/springboot/StompComponentAutoConfiguration.java        | 3 +++
 .../component/stomp/springboot/StompComponentConfiguration.java  | 2 ++
 .../stream/springboot/StreamComponentAutoConfiguration.java      | 3 +++
 .../springboot/StringTemplateComponentAutoConfiguration.java     | 3 +++
 .../syslog/springboot/SyslogDataFormatAutoConfiguration.java     | 3 +++
 .../syslog/springboot/SyslogDataFormatConfiguration.java         | 2 ++
 .../springboot/TidyMarkupDataFormatAutoConfiguration.java        | 3 +++
 .../tagsoup/springboot/TidyMarkupDataFormatConfiguration.java    | 2 ++
 .../tarfile/springboot/TarFileDataFormatAutoConfiguration.java   | 3 +++
 .../tarfile/springboot/TarFileDataFormatConfiguration.java       | 2 ++
 .../telegram/springboot/TelegramComponentAutoConfiguration.java  | 3 +++
 .../telegram/springboot/TelegramComponentConfiguration.java      | 2 ++
 .../tika/springboot/TikaComponentAutoConfiguration.java          | 3 +++
 .../twitter/springboot/TwitterComponentAutoConfiguration.java    | 3 +++
 .../twitter/springboot/TwitterComponentConfiguration.java        | 2 ++
 .../undertow/springboot/UndertowComponentAutoConfiguration.java  | 3 +++
 .../undertow/springboot/UndertowComponentConfiguration.java      | 2 ++
 .../springboot/UniVocityCsvDataFormatAutoConfiguration.java      | 3 +++
 .../springboot/UniVocityCsvDataFormatConfiguration.java          | 2 ++
 .../UniVocityFixedWidthDataFormatAutoConfiguration.java          | 3 +++
 .../springboot/UniVocityFixedWidthDataFormatConfiguration.java   | 2 ++
 .../springboot/UniVocityTsvDataFormatAutoConfiguration.java      | 3 +++
 .../springboot/UniVocityTsvDataFormatConfiguration.java          | 2 ++
 .../velocity/springboot/VelocityComponentAutoConfiguration.java  | 3 +++
 .../velocity/springboot/VelocityComponentConfiguration.java      | 2 ++
 .../vertx/springboot/VertxComponentAutoConfiguration.java        | 3 +++
 .../component/vertx/springboot/VertxComponentConfiguration.java  | 2 ++
 .../weather/springboot/WeatherComponentAutoConfiguration.java    | 3 +++
 .../springboot/WebsocketComponentAutoConfiguration.java          | 3 +++
 .../websocket/springboot/WebsocketComponentConfiguration.java    | 2 ++
 .../xmlbeans/springboot/XmlBeansDataFormatAutoConfiguration.java | 3 +++
 .../xmlbeans/springboot/XmlBeansDataFormatConfiguration.java     | 2 ++
 .../xmljson/springboot/XmlJsonDataFormatAutoConfiguration.java   | 3 +++
 .../xmljson/springboot/XmlJsonDataFormatConfiguration.java       | 2 ++
 .../xmlrpc/springboot/XmlRpcComponentAutoConfiguration.java      | 3 +++
 .../xmlrpc/springboot/XmlRpcDataFormatAutoConfiguration.java     | 3 +++
 .../xmlrpc/springboot/XmlRpcDataFormatConfiguration.java         | 2 ++
 .../springboot/XmlSignatureComponentAutoConfiguration.java       | 3 +++
 .../springboot/XmlSignatureComponentConfiguration.java           | 2 ++
 .../springboot/XMLSecurityDataFormatAutoConfiguration.java       | 3 +++
 .../springboot/XMLSecurityDataFormatConfiguration.java           | 2 ++
 .../xmpp/springboot/XmppComponentAutoConfiguration.java          | 3 +++
 .../xstream/springboot/JsonDataFormatAutoConfiguration.java      | 3 +++
 .../xstream/springboot/JsonDataFormatConfiguration.java          | 2 ++
 .../xstream/springboot/XStreamDataFormatAutoConfiguration.java   | 3 +++
 .../xstream/springboot/XStreamDataFormatConfiguration.java       | 2 ++
 .../yammer/springboot/YammerComponentAutoConfiguration.java      | 3 +++
 .../yammer/springboot/YammerComponentConfiguration.java          | 2 ++
 .../zendesk/springboot/ZendeskComponentAutoConfiguration.java    | 3 +++
 .../zendesk/springboot/ZendeskComponentConfiguration.java        | 2 ++
 .../zipfile/springboot/ZipFileDataFormatAutoConfiguration.java   | 3 +++
 .../zipfile/springboot/ZipFileDataFormatConfiguration.java       | 2 ++
 .../springboot/MasterComponentAutoConfiguration.java             | 3 +++
 .../zookeepermaster/springboot/MasterComponentConfiguration.java | 2 ++
 .../springboot/ZooKeeperComponentAutoConfiguration.java          | 3 +++
 .../zookeeper/springboot/ZooKeeperComponentConfiguration.java    | 2 ++
 492 files changed, 1276 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-ahc-starter/src/main/java/org/apache/camel/component/ahc/springboot/AhcComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-ahc-starter/src/main/java/org/apache/camel/component/ahc/springboot/AhcComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-ahc-starter/src/main/java/org/apache/camel/component/ahc/springboot/AhcComponentAutoConfiguration.java
index 9ecf975..671810a 100644
--- a/platforms/spring-boot/components-starter/camel-ahc-starter/src/main/java/org/apache/camel/component/ahc/springboot/AhcComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-ahc-starter/src/main/java/org/apache/camel/component/ahc/springboot/AhcComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.ahc.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.ahc.AhcComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(AhcComponentAutoConfiguration.Condition.class)
@@ -83,6 +85,7 @@ public class AhcComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-ahc-starter/src/main/java/org/apache/camel/component/ahc/springboot/AhcComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-ahc-starter/src/main/java/org/apache/camel/component/ahc/springboot/AhcComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-ahc-starter/src/main/java/org/apache/camel/component/ahc/springboot/AhcComponentConfiguration.java
index d48437f..b810679 100644
--- a/platforms/spring-boot/components-starter/camel-ahc-starter/src/main/java/org/apache/camel/component/ahc/springboot/AhcComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-ahc-starter/src/main/java/org/apache/camel/component/ahc/springboot/AhcComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.ahc.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.component.ahc.AhcBinding;
 import org.apache.camel.spi.HeaderFilterStrategy;
 import org.apache.camel.util.jsse.SSLContextParameters;
@@ -29,6 +30,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.ahc")
 public class AhcComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-ahc-ws-starter/src/main/java/org/apache/camel/component/ahc/ws/springboot/WsComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-ahc-ws-starter/src/main/java/org/apache/camel/component/ahc/ws/springboot/WsComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-ahc-ws-starter/src/main/java/org/apache/camel/component/ahc/ws/springboot/WsComponentAutoConfiguration.java
index f63cc7c..d370983 100644
--- a/platforms/spring-boot/components-starter/camel-ahc-ws-starter/src/main/java/org/apache/camel/component/ahc/ws/springboot/WsComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-ahc-ws-starter/src/main/java/org/apache/camel/component/ahc/ws/springboot/WsComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.ahc.ws.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.ahc.ws.WsComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(WsComponentAutoConfiguration.Condition.class)
@@ -83,6 +85,7 @@ public class WsComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-ahc-ws-starter/src/main/java/org/apache/camel/component/ahc/ws/springboot/WsComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-ahc-ws-starter/src/main/java/org/apache/camel/component/ahc/ws/springboot/WsComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-ahc-ws-starter/src/main/java/org/apache/camel/component/ahc/ws/springboot/WsComponentConfiguration.java
index 160a961..25dea26 100644
--- a/platforms/spring-boot/components-starter/camel-ahc-ws-starter/src/main/java/org/apache/camel/component/ahc/ws/springboot/WsComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-ahc-ws-starter/src/main/java/org/apache/camel/component/ahc/ws/springboot/WsComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.ahc.ws.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.component.ahc.AhcBinding;
 import org.apache.camel.spi.HeaderFilterStrategy;
 import org.apache.camel.util.jsse.SSLContextParameters;
@@ -29,6 +30,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.ahc-ws")
 public class WsComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-amqp-starter/src/main/java/org/apache/camel/component/amqp/springboot/AMQPComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-amqp-starter/src/main/java/org/apache/camel/component/amqp/springboot/AMQPComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-amqp-starter/src/main/java/org/apache/camel/component/amqp/springboot/AMQPComponentAutoConfiguration.java
index d425353..1805ce2 100644
--- a/platforms/spring-boot/components-starter/camel-amqp-starter/src/main/java/org/apache/camel/component/amqp/springboot/AMQPComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-amqp-starter/src/main/java/org/apache/camel/component/amqp/springboot/AMQPComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.amqp.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.amqp.AMQPComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(AMQPComponentAutoConfiguration.Condition.class)
@@ -83,6 +85,7 @@ public class AMQPComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-amqp-starter/src/main/java/org/apache/camel/component/amqp/springboot/AMQPComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-amqp-starter/src/main/java/org/apache/camel/component/amqp/springboot/AMQPComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-amqp-starter/src/main/java/org/apache/camel/component/amqp/springboot/AMQPComponentConfiguration.java
index f30c727..ff88503 100644
--- a/platforms/spring-boot/components-starter/camel-amqp-starter/src/main/java/org/apache/camel/component/amqp/springboot/AMQPComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-amqp-starter/src/main/java/org/apache/camel/component/amqp/springboot/AMQPComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.amqp.springboot;
 
+import javax.annotation.Generated;
 import javax.jms.ConnectionFactory;
 import javax.jms.ExceptionListener;
 import org.apache.camel.LoggingLevel;
@@ -42,6 +43,7 @@ import org.springframework.util.ErrorHandler;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.amqp")
 public class AMQPComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-apns-starter/src/main/java/org/apache/camel/component/apns/springboot/ApnsComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-apns-starter/src/main/java/org/apache/camel/component/apns/springboot/ApnsComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-apns-starter/src/main/java/org/apache/camel/component/apns/springboot/ApnsComponentAutoConfiguration.java
index 4f7ba5b..c2233ce 100644
--- a/platforms/spring-boot/components-starter/camel-apns-starter/src/main/java/org/apache/camel/component/apns/springboot/ApnsComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-apns-starter/src/main/java/org/apache/camel/component/apns/springboot/ApnsComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.apns.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.apns.ApnsComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(ApnsComponentAutoConfiguration.Condition.class)
@@ -83,6 +85,7 @@ public class ApnsComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-apns-starter/src/main/java/org/apache/camel/component/apns/springboot/ApnsComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-apns-starter/src/main/java/org/apache/camel/component/apns/springboot/ApnsComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-apns-starter/src/main/java/org/apache/camel/component/apns/springboot/ApnsComponentConfiguration.java
index a5f9e0a..93fc197 100644
--- a/platforms/spring-boot/components-starter/camel-apns-starter/src/main/java/org/apache/camel/component/apns/springboot/ApnsComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-apns-starter/src/main/java/org/apache/camel/component/apns/springboot/ApnsComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.apns.springboot;
 
+import javax.annotation.Generated;
 import com.notnoop.apns.ApnsService;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 import org.springframework.boot.context.properties.NestedConfigurationProperty;
@@ -25,6 +26,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.apns")
 public class ApnsComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-asterisk-starter/src/main/java/org/apache/camel/component/asterisk/springboot/AsteriskComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-asterisk-starter/src/main/java/org/apache/camel/component/asterisk/springboot/AsteriskComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-asterisk-starter/src/main/java/org/apache/camel/component/asterisk/springboot/AsteriskComponentAutoConfiguration.java
index 1faa558..ce8b6f9 100644
--- a/platforms/spring-boot/components-starter/camel-asterisk-starter/src/main/java/org/apache/camel/component/asterisk/springboot/AsteriskComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-asterisk-starter/src/main/java/org/apache/camel/component/asterisk/springboot/AsteriskComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.asterisk.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.asterisk.AsteriskComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(AsteriskComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class AsteriskComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-atmos-starter/src/main/java/org/apache/camel/component/atmos/springboot/AtmosComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-atmos-starter/src/main/java/org/apache/camel/component/atmos/springboot/AtmosComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-atmos-starter/src/main/java/org/apache/camel/component/atmos/springboot/AtmosComponentAutoConfiguration.java
index c1d7b1f..faca500 100644
--- a/platforms/spring-boot/components-starter/camel-atmos-starter/src/main/java/org/apache/camel/component/atmos/springboot/AtmosComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-atmos-starter/src/main/java/org/apache/camel/component/atmos/springboot/AtmosComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.atmos.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.atmos.AtmosComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(AtmosComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class AtmosComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-atmosphere-websocket-starter/src/main/java/org/apache/camel/component/atmosphere/websocket/springboot/WebsocketComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-atmosphere-websocket-starter/src/main/java/org/apache/camel/component/atmosphere/websocket/springboot/WebsocketComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-atmosphere-websocket-starter/src/main/java/org/apache/camel/component/atmosphere/websocket/springboot/WebsocketComponentAutoConfiguration.java
index 99a12f6..9b56ba1 100644
--- a/platforms/spring-boot/components-starter/camel-atmosphere-websocket-starter/src/main/java/org/apache/camel/component/atmosphere/websocket/springboot/WebsocketComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-atmosphere-websocket-starter/src/main/java/org/apache/camel/component/atmosphere/websocket/springboot/WebsocketComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.atmosphere.websocket.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.atmosphere.websocket.WebsocketComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(WebsocketComponentAutoConfiguration.Condition.class)
@@ -84,6 +86,7 @@ public class WebsocketComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-atmosphere-websocket-starter/src/main/java/org/apache/camel/component/atmosphere/websocket/springboot/WebsocketComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-atmosphere-websocket-starter/src/main/java/org/apache/camel/component/atmosphere/websocket/springboot/WebsocketComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-atmosphere-websocket-starter/src/main/java/org/apache/camel/component/atmosphere/websocket/springboot/WebsocketComponentConfiguration.java
index af474e8..753dac0 100644
--- a/platforms/spring-boot/components-starter/camel-atmosphere-websocket-starter/src/main/java/org/apache/camel/component/atmosphere/websocket/springboot/WebsocketComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-atmosphere-websocket-starter/src/main/java/org/apache/camel/component/atmosphere/websocket/springboot/WebsocketComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.atmosphere.websocket.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.component.servlet.HttpRegistry;
 import org.apache.camel.http.common.HttpBinding;
 import org.apache.camel.http.common.HttpConfiguration;
@@ -28,6 +29,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.atmosphere-websocket")
 public class WebsocketComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-atom-starter/src/main/java/org/apache/camel/component/atom/springboot/AtomComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-atom-starter/src/main/java/org/apache/camel/component/atom/springboot/AtomComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-atom-starter/src/main/java/org/apache/camel/component/atom/springboot/AtomComponentAutoConfiguration.java
index c39a6c4..1d41386 100644
--- a/platforms/spring-boot/components-starter/camel-atom-starter/src/main/java/org/apache/camel/component/atom/springboot/AtomComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-atom-starter/src/main/java/org/apache/camel/component/atom/springboot/AtomComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.atom.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.atom.AtomComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(AtomComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class AtomComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-avro-starter/src/main/java/org/apache/camel/component/avro/springboot/AvroComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-avro-starter/src/main/java/org/apache/camel/component/avro/springboot/AvroComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-avro-starter/src/main/java/org/apache/camel/component/avro/springboot/AvroComponentAutoConfiguration.java
index 1b60f16..7ce7934 100644
--- a/platforms/spring-boot/components-starter/camel-avro-starter/src/main/java/org/apache/camel/component/avro/springboot/AvroComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-avro-starter/src/main/java/org/apache/camel/component/avro/springboot/AvroComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.avro.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.avro.AvroComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(AvroComponentAutoConfiguration.Condition.class)
@@ -83,6 +85,7 @@ public class AvroComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-avro-starter/src/main/java/org/apache/camel/component/avro/springboot/AvroComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-avro-starter/src/main/java/org/apache/camel/component/avro/springboot/AvroComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-avro-starter/src/main/java/org/apache/camel/component/avro/springboot/AvroComponentConfiguration.java
index ca10519..42a61fb 100644
--- a/platforms/spring-boot/components-starter/camel-avro-starter/src/main/java/org/apache/camel/component/avro/springboot/AvroComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-avro-starter/src/main/java/org/apache/camel/component/avro/springboot/AvroComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.avro.springboot;
 
+import javax.annotation.Generated;
 import org.apache.avro.Protocol;
 import org.apache.camel.component.avro.AvroTransport;
 import org.springframework.boot.context.properties.ConfigurationProperties;
@@ -26,6 +27,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.avro")
 public class AvroComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-avro-starter/src/main/java/org/apache/camel/dataformat/avro/springboot/AvroDataFormatAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-avro-starter/src/main/java/org/apache/camel/dataformat/avro/springboot/AvroDataFormatAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-avro-starter/src/main/java/org/apache/camel/dataformat/avro/springboot/AvroDataFormatAutoConfiguration.java
index f4e6093..4d5debf 100644
--- a/platforms/spring-boot/components-starter/camel-avro-starter/src/main/java/org/apache/camel/dataformat/avro/springboot/AvroDataFormatAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-avro-starter/src/main/java/org/apache/camel/dataformat/avro/springboot/AvroDataFormatAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.dataformat.avro.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.CamelContextAware;
 import org.apache.camel.RuntimeCamelException;
@@ -43,6 +44,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(AvroDataFormatAutoConfiguration.Condition.class)
@@ -82,6 +84,7 @@ public class AvroDataFormatAutoConfiguration {
         };
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-avro-starter/src/main/java/org/apache/camel/dataformat/avro/springboot/AvroDataFormatConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-avro-starter/src/main/java/org/apache/camel/dataformat/avro/springboot/AvroDataFormatConfiguration.java b/platforms/spring-boot/components-starter/camel-avro-starter/src/main/java/org/apache/camel/dataformat/avro/springboot/AvroDataFormatConfiguration.java
index 2f5a6a0..54db754 100644
--- a/platforms/spring-boot/components-starter/camel-avro-starter/src/main/java/org/apache/camel/dataformat/avro/springboot/AvroDataFormatConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-avro-starter/src/main/java/org/apache/camel/dataformat/avro/springboot/AvroDataFormatConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.dataformat.avro.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -23,6 +24,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.dataformat.avro")
 public class AvroDataFormatConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-aws-starter/src/main/java/org/apache/camel/component/aws/cw/springboot/CwComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-aws-starter/src/main/java/org/apache/camel/component/aws/cw/springboot/CwComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-aws-starter/src/main/java/org/apache/camel/component/aws/cw/springboot/CwComponentAutoConfiguration.java
index 6a1bc5d..4f195f6 100644
--- a/platforms/spring-boot/components-starter/camel-aws-starter/src/main/java/org/apache/camel/component/aws/cw/springboot/CwComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-aws-starter/src/main/java/org/apache/camel/component/aws/cw/springboot/CwComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.aws.cw.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.aws.cw.CwComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(CwComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class CwComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-aws-starter/src/main/java/org/apache/camel/component/aws/ddb/springboot/DdbComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-aws-starter/src/main/java/org/apache/camel/component/aws/ddb/springboot/DdbComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-aws-starter/src/main/java/org/apache/camel/component/aws/ddb/springboot/DdbComponentAutoConfiguration.java
index 4782566..b34ab33 100644
--- a/platforms/spring-boot/components-starter/camel-aws-starter/src/main/java/org/apache/camel/component/aws/ddb/springboot/DdbComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-aws-starter/src/main/java/org/apache/camel/component/aws/ddb/springboot/DdbComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.aws.ddb.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.aws.ddb.DdbComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(DdbComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class DdbComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-aws-starter/src/main/java/org/apache/camel/component/aws/ddbstream/springboot/DdbStreamComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-aws-starter/src/main/java/org/apache/camel/component/aws/ddbstream/springboot/DdbStreamComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-aws-starter/src/main/java/org/apache/camel/component/aws/ddbstream/springboot/DdbStreamComponentAutoConfiguration.java
index 51d8ef5..35cc24e 100644
--- a/platforms/spring-boot/components-starter/camel-aws-starter/src/main/java/org/apache/camel/component/aws/ddbstream/springboot/DdbStreamComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-aws-starter/src/main/java/org/apache/camel/component/aws/ddbstream/springboot/DdbStreamComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.aws.ddbstream.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.aws.ddbstream.DdbStreamComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(DdbStreamComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class DdbStreamComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-aws-starter/src/main/java/org/apache/camel/component/aws/ec2/springboot/EC2ComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-aws-starter/src/main/java/org/apache/camel/component/aws/ec2/springboot/EC2ComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-aws-starter/src/main/java/org/apache/camel/component/aws/ec2/springboot/EC2ComponentAutoConfiguration.java
index 5ec7a17..914b9f1 100644
--- a/platforms/spring-boot/components-starter/camel-aws-starter/src/main/java/org/apache/camel/component/aws/ec2/springboot/EC2ComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-aws-starter/src/main/java/org/apache/camel/component/aws/ec2/springboot/EC2ComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.aws.ec2.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.aws.ec2.EC2Component;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(EC2ComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class EC2ComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-aws-starter/src/main/java/org/apache/camel/component/aws/firehose/springboot/KinesisFirehoseComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-aws-starter/src/main/java/org/apache/camel/component/aws/firehose/springboot/KinesisFirehoseComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-aws-starter/src/main/java/org/apache/camel/component/aws/firehose/springboot/KinesisFirehoseComponentAutoConfiguration.java
index 7f60733..2f91996 100644
--- a/platforms/spring-boot/components-starter/camel-aws-starter/src/main/java/org/apache/camel/component/aws/firehose/springboot/KinesisFirehoseComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-aws-starter/src/main/java/org/apache/camel/component/aws/firehose/springboot/KinesisFirehoseComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.aws.firehose.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.aws.firehose.KinesisFirehoseComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(KinesisFirehoseComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class KinesisFirehoseComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-aws-starter/src/main/java/org/apache/camel/component/aws/kinesis/springboot/KinesisComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-aws-starter/src/main/java/org/apache/camel/component/aws/kinesis/springboot/KinesisComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-aws-starter/src/main/java/org/apache/camel/component/aws/kinesis/springboot/KinesisComponentAutoConfiguration.java
index 402f43d..043a07c 100644
--- a/platforms/spring-boot/components-starter/camel-aws-starter/src/main/java/org/apache/camel/component/aws/kinesis/springboot/KinesisComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-aws-starter/src/main/java/org/apache/camel/component/aws/kinesis/springboot/KinesisComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.aws.kinesis.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.aws.kinesis.KinesisComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(KinesisComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class KinesisComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-aws-starter/src/main/java/org/apache/camel/component/aws/s3/springboot/S3ComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-aws-starter/src/main/java/org/apache/camel/component/aws/s3/springboot/S3ComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-aws-starter/src/main/java/org/apache/camel/component/aws/s3/springboot/S3ComponentAutoConfiguration.java
index 192ebf0..eff632b 100644
--- a/platforms/spring-boot/components-starter/camel-aws-starter/src/main/java/org/apache/camel/component/aws/s3/springboot/S3ComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-aws-starter/src/main/java/org/apache/camel/component/aws/s3/springboot/S3ComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.aws.s3.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.aws.s3.S3Component;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(S3ComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class S3ComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-aws-starter/src/main/java/org/apache/camel/component/aws/sdb/springboot/SdbComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-aws-starter/src/main/java/org/apache/camel/component/aws/sdb/springboot/SdbComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-aws-starter/src/main/java/org/apache/camel/component/aws/sdb/springboot/SdbComponentAutoConfiguration.java
index 784b48d..17de781 100644
--- a/platforms/spring-boot/components-starter/camel-aws-starter/src/main/java/org/apache/camel/component/aws/sdb/springboot/SdbComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-aws-starter/src/main/java/org/apache/camel/component/aws/sdb/springboot/SdbComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.aws.sdb.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.aws.sdb.SdbComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(SdbComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class SdbComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-aws-starter/src/main/java/org/apache/camel/component/aws/ses/springboot/SesComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-aws-starter/src/main/java/org/apache/camel/component/aws/ses/springboot/SesComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-aws-starter/src/main/java/org/apache/camel/component/aws/ses/springboot/SesComponentAutoConfiguration.java
index da577b8..472b4f8 100644
--- a/platforms/spring-boot/components-starter/camel-aws-starter/src/main/java/org/apache/camel/component/aws/ses/springboot/SesComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-aws-starter/src/main/java/org/apache/camel/component/aws/ses/springboot/SesComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.aws.ses.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.aws.ses.SesComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(SesComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class SesComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-aws-starter/src/main/java/org/apache/camel/component/aws/sns/springboot/SnsComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-aws-starter/src/main/java/org/apache/camel/component/aws/sns/springboot/SnsComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-aws-starter/src/main/java/org/apache/camel/component/aws/sns/springboot/SnsComponentAutoConfiguration.java
index 3a89352..e7edf7f 100644
--- a/platforms/spring-boot/components-starter/camel-aws-starter/src/main/java/org/apache/camel/component/aws/sns/springboot/SnsComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-aws-starter/src/main/java/org/apache/camel/component/aws/sns/springboot/SnsComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.aws.sns.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.aws.sns.SnsComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(SnsComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class SnsComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-aws-starter/src/main/java/org/apache/camel/component/aws/sqs/springboot/SqsComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-aws-starter/src/main/java/org/apache/camel/component/aws/sqs/springboot/SqsComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-aws-starter/src/main/java/org/apache/camel/component/aws/sqs/springboot/SqsComponentAutoConfiguration.java
index d898529..f8a6650 100644
--- a/platforms/spring-boot/components-starter/camel-aws-starter/src/main/java/org/apache/camel/component/aws/sqs/springboot/SqsComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-aws-starter/src/main/java/org/apache/camel/component/aws/sqs/springboot/SqsComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.aws.sqs.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.aws.sqs.SqsComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(SqsComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class SqsComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(


[13/13] camel git commit: Regenerate component documentation list

Posted by zr...@apache.org.
Regenerate component documentation list

This updates the component list in the documentation.


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/492bef34
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/492bef34
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/492bef34

Branch: refs/heads/master
Commit: 492bef3432349317f95622c0528e38f2e72ea866
Parents: 2297128
Author: Zoran Regvart <zr...@apache.org>
Authored: Wed Apr 19 10:27:50 2017 +0200
Committer: Zoran Regvart <zr...@apache.org>
Committed: Wed Apr 19 10:32:35 2017 +0200

----------------------------------------------------------------------
 components/readme.adoc         | 17 ++++++++++++++++-
 docs/user-manual/en/SUMMARY.md |  5 +++++
 2 files changed, 21 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/492bef34/components/readme.adoc
----------------------------------------------------------------------
diff --git a/components/readme.adoc b/components/readme.adoc
index 09c9bf1..a3990e7 100644
--- a/components/readme.adoc
+++ b/components/readme.adoc
@@ -2,7 +2,7 @@ Components
 ^^^^^^^^^^
 
 // components: START
-Number of Components: 231 in 184 JAR artifacts (14 deprecated)
+Number of Components: 236 in 185 JAR artifacts (14 deprecated)
 
 [width="100%",cols="4,1,5",options="header"]
 |=======================================================================
@@ -251,12 +251,27 @@ Number of Components: 231 in 184 JAR artifacts (14 deprecated)
 | link:camel-google-drive/src/main/docs/google-drive-component.adoc[Google Drive] (camel-google-drive) +
 `google-drive:apiName/methodName` | 2.14 | The google-drive component provides access to Google Drive file storage service.
 
+| link:camel-gae/src/main/docs/gauth-component.adoc[Google GAuth] (camel-gae) +
+`gauth:name` |  | The gauth component is used by web applications to implement a Google-specific OAuth consumer.
+
+| link:camel-gae/src/main/docs/ghttp-component.adoc[Google HTTP] (camel-gae) +
+`ghttp:httpUri` |  | The ghttp component provides HTTP connectivity to the GAE.
+
+| link:camel-gae/src/main/docs/glogin-component.adoc[Google Login] (camel-gae) +
+`glogin:hostName` |  | The glogin component is used by Camel applications outside Google App Engine (GAE) for programmatic login to GAE applications.
+
+| link:camel-gae/src/main/docs/gmail-component.adoc[Google mail] (camel-gae) +
+`gmail:sender` |  | The gmail component is used for sending emails to GAE.
+
 | link:camel-google-mail/src/main/docs/google-mail-component.adoc[Google Mail] (camel-google-mail) +
 `google-mail:apiName/methodName` | 2.15 | The google-mail component provides access to Google Mail.
 
 | link:camel-google-pubsub/src/main/docs/google-pubsub-component.adoc[Google Pubsub] (camel-google-pubsub) +
 `google-pubsub:projectId:destinationName` | 2.19 | Messaging client for Google Cloud Platform PubSub Service: https://cloud.google.com/pubsub/
 
+| link:camel-gae/src/main/docs/gtask-component.adoc[Google Task] (camel-gae) +
+`gtask:queueName` |  | The gtask component is used for sending messages to GAE task queue service.
+
 | link:camel-gora/src/main/docs/gora-component.adoc[Gora] (camel-gora) +
 `gora:name` | 2.14 | The gora component allows you to work with NoSQL databases using the Apache Gora framework.
 

http://git-wip-us.apache.org/repos/asf/camel/blob/492bef34/docs/user-manual/en/SUMMARY.md
----------------------------------------------------------------------
diff --git a/docs/user-manual/en/SUMMARY.md b/docs/user-manual/en/SUMMARY.md
index 25968df..62f43ac 100644
--- a/docs/user-manual/en/SUMMARY.md
+++ b/docs/user-manual/en/SUMMARY.md
@@ -195,8 +195,13 @@
 	* [GitHub](github-component.adoc)
 	* [Google Calendar](google-calendar-component.adoc)
 	* [Google Drive](google-drive-component.adoc)
+	* [Google GAuth](gauth-component.adoc)
+	* [Google HTTP](ghttp-component.adoc)
+	* [Google Login](glogin-component.adoc)
+	* [Google mail](gmail-component.adoc)
 	* [Google Mail](google-mail-component.adoc)
 	* [Google Pubsub](google-pubsub-component.adoc)
+	* [Google Task](gtask-component.adoc)
 	* [Gora](gora-component.adoc)
 	* [Grape](grape-component.adoc)
 	* [gRPC](grpc-component.adoc)


[11/13] camel git commit: CAMEL-11165 Add @Generated annotation to code g...

Posted by zr...@apache.org.
http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-aws-starter/src/main/java/org/apache/camel/component/aws/swf/springboot/SWFComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-aws-starter/src/main/java/org/apache/camel/component/aws/swf/springboot/SWFComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-aws-starter/src/main/java/org/apache/camel/component/aws/swf/springboot/SWFComponentAutoConfiguration.java
index 41c5993..a2f24ce 100644
--- a/platforms/spring-boot/components-starter/camel-aws-starter/src/main/java/org/apache/camel/component/aws/swf/springboot/SWFComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-aws-starter/src/main/java/org/apache/camel/component/aws/swf/springboot/SWFComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.aws.swf.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.aws.swf.SWFComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(SWFComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class SWFComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-azure-starter/src/main/java/org/apache/camel/component/azure/blob/springboot/BlobServiceComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-azure-starter/src/main/java/org/apache/camel/component/azure/blob/springboot/BlobServiceComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-azure-starter/src/main/java/org/apache/camel/component/azure/blob/springboot/BlobServiceComponentAutoConfiguration.java
index fdb4dfc..5e8ee71 100644
--- a/platforms/spring-boot/components-starter/camel-azure-starter/src/main/java/org/apache/camel/component/azure/blob/springboot/BlobServiceComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-azure-starter/src/main/java/org/apache/camel/component/azure/blob/springboot/BlobServiceComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.azure.blob.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.azure.blob.BlobServiceComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(BlobServiceComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class BlobServiceComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-azure-starter/src/main/java/org/apache/camel/component/azure/queue/springboot/QueueServiceComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-azure-starter/src/main/java/org/apache/camel/component/azure/queue/springboot/QueueServiceComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-azure-starter/src/main/java/org/apache/camel/component/azure/queue/springboot/QueueServiceComponentAutoConfiguration.java
index a929af0..691ab09 100644
--- a/platforms/spring-boot/components-starter/camel-azure-starter/src/main/java/org/apache/camel/component/azure/queue/springboot/QueueServiceComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-azure-starter/src/main/java/org/apache/camel/component/azure/queue/springboot/QueueServiceComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.azure.queue.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.azure.queue.QueueServiceComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(QueueServiceComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class QueueServiceComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-barcode-starter/src/main/java/org/apache/camel/dataformat/barcode/springboot/BarcodeDataFormatAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-barcode-starter/src/main/java/org/apache/camel/dataformat/barcode/springboot/BarcodeDataFormatAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-barcode-starter/src/main/java/org/apache/camel/dataformat/barcode/springboot/BarcodeDataFormatAutoConfiguration.java
index ce76822..d7cafd9 100644
--- a/platforms/spring-boot/components-starter/camel-barcode-starter/src/main/java/org/apache/camel/dataformat/barcode/springboot/BarcodeDataFormatAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-barcode-starter/src/main/java/org/apache/camel/dataformat/barcode/springboot/BarcodeDataFormatAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.dataformat.barcode.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.CamelContextAware;
 import org.apache.camel.RuntimeCamelException;
@@ -43,6 +44,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(BarcodeDataFormatAutoConfiguration.Condition.class)
@@ -82,6 +84,7 @@ public class BarcodeDataFormatAutoConfiguration {
         };
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-barcode-starter/src/main/java/org/apache/camel/dataformat/barcode/springboot/BarcodeDataFormatConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-barcode-starter/src/main/java/org/apache/camel/dataformat/barcode/springboot/BarcodeDataFormatConfiguration.java b/platforms/spring-boot/components-starter/camel-barcode-starter/src/main/java/org/apache/camel/dataformat/barcode/springboot/BarcodeDataFormatConfiguration.java
index 1cdb0c1..d8539be 100644
--- a/platforms/spring-boot/components-starter/camel-barcode-starter/src/main/java/org/apache/camel/dataformat/barcode/springboot/BarcodeDataFormatConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-barcode-starter/src/main/java/org/apache/camel/dataformat/barcode/springboot/BarcodeDataFormatConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.dataformat.barcode.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -23,6 +24,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.dataformat.barcode")
 public class BarcodeDataFormatConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-base64-starter/src/main/java/org/apache/camel/dataformat/base64/springboot/Base64DataFormatAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-base64-starter/src/main/java/org/apache/camel/dataformat/base64/springboot/Base64DataFormatAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-base64-starter/src/main/java/org/apache/camel/dataformat/base64/springboot/Base64DataFormatAutoConfiguration.java
index 11b6c7a..f0b1387 100644
--- a/platforms/spring-boot/components-starter/camel-base64-starter/src/main/java/org/apache/camel/dataformat/base64/springboot/Base64DataFormatAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-base64-starter/src/main/java/org/apache/camel/dataformat/base64/springboot/Base64DataFormatAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.dataformat.base64.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.CamelContextAware;
 import org.apache.camel.RuntimeCamelException;
@@ -43,6 +44,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(Base64DataFormatAutoConfiguration.Condition.class)
@@ -82,6 +84,7 @@ public class Base64DataFormatAutoConfiguration {
         };
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-base64-starter/src/main/java/org/apache/camel/dataformat/base64/springboot/Base64DataFormatConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-base64-starter/src/main/java/org/apache/camel/dataformat/base64/springboot/Base64DataFormatConfiguration.java b/platforms/spring-boot/components-starter/camel-base64-starter/src/main/java/org/apache/camel/dataformat/base64/springboot/Base64DataFormatConfiguration.java
index 26bda5e..e0d52d3 100644
--- a/platforms/spring-boot/components-starter/camel-base64-starter/src/main/java/org/apache/camel/dataformat/base64/springboot/Base64DataFormatConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-base64-starter/src/main/java/org/apache/camel/dataformat/base64/springboot/Base64DataFormatConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.dataformat.base64.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -23,6 +24,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.dataformat.base64")
 public class Base64DataFormatConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-bean-validator-starter/src/main/java/org/apache/camel/component/bean/validator/springboot/BeanValidatorComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-bean-validator-starter/src/main/java/org/apache/camel/component/bean/validator/springboot/BeanValidatorComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-bean-validator-starter/src/main/java/org/apache/camel/component/bean/validator/springboot/BeanValidatorComponentAutoConfiguration.java
index 2aef002..731fb15 100644
--- a/platforms/spring-boot/components-starter/camel-bean-validator-starter/src/main/java/org/apache/camel/component/bean/validator/springboot/BeanValidatorComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-bean-validator-starter/src/main/java/org/apache/camel/component/bean/validator/springboot/BeanValidatorComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.bean.validator.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.bean.validator.BeanValidatorComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(BeanValidatorComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class BeanValidatorComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-beanio-starter/src/main/java/org/apache/camel/dataformat/beanio/springboot/BeanIODataFormatAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-beanio-starter/src/main/java/org/apache/camel/dataformat/beanio/springboot/BeanIODataFormatAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-beanio-starter/src/main/java/org/apache/camel/dataformat/beanio/springboot/BeanIODataFormatAutoConfiguration.java
index dc93bab..04d3b3b 100644
--- a/platforms/spring-boot/components-starter/camel-beanio-starter/src/main/java/org/apache/camel/dataformat/beanio/springboot/BeanIODataFormatAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-beanio-starter/src/main/java/org/apache/camel/dataformat/beanio/springboot/BeanIODataFormatAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.dataformat.beanio.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.CamelContextAware;
 import org.apache.camel.RuntimeCamelException;
@@ -43,6 +44,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(BeanIODataFormatAutoConfiguration.Condition.class)
@@ -82,6 +84,7 @@ public class BeanIODataFormatAutoConfiguration {
         };
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-beanio-starter/src/main/java/org/apache/camel/dataformat/beanio/springboot/BeanIODataFormatConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-beanio-starter/src/main/java/org/apache/camel/dataformat/beanio/springboot/BeanIODataFormatConfiguration.java b/platforms/spring-boot/components-starter/camel-beanio-starter/src/main/java/org/apache/camel/dataformat/beanio/springboot/BeanIODataFormatConfiguration.java
index 2f1922d..2a32468 100644
--- a/platforms/spring-boot/components-starter/camel-beanio-starter/src/main/java/org/apache/camel/dataformat/beanio/springboot/BeanIODataFormatConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-beanio-starter/src/main/java/org/apache/camel/dataformat/beanio/springboot/BeanIODataFormatConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.dataformat.beanio.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -23,6 +24,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.dataformat.beanio")
 public class BeanIODataFormatConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-beanstalk-starter/src/main/java/org/apache/camel/component/beanstalk/springboot/BeanstalkComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-beanstalk-starter/src/main/java/org/apache/camel/component/beanstalk/springboot/BeanstalkComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-beanstalk-starter/src/main/java/org/apache/camel/component/beanstalk/springboot/BeanstalkComponentAutoConfiguration.java
index 9f283d2..ed4684b 100644
--- a/platforms/spring-boot/components-starter/camel-beanstalk-starter/src/main/java/org/apache/camel/component/beanstalk/springboot/BeanstalkComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-beanstalk-starter/src/main/java/org/apache/camel/component/beanstalk/springboot/BeanstalkComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.beanstalk.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.beanstalk.BeanstalkComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(BeanstalkComponentAutoConfiguration.Condition.class)
@@ -84,6 +86,7 @@ public class BeanstalkComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-beanstalk-starter/src/main/java/org/apache/camel/component/beanstalk/springboot/BeanstalkComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-beanstalk-starter/src/main/java/org/apache/camel/component/beanstalk/springboot/BeanstalkComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-beanstalk-starter/src/main/java/org/apache/camel/component/beanstalk/springboot/BeanstalkComponentConfiguration.java
index e4eaf7e..6aae498 100644
--- a/platforms/spring-boot/components-starter/camel-beanstalk-starter/src/main/java/org/apache/camel/component/beanstalk/springboot/BeanstalkComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-beanstalk-starter/src/main/java/org/apache/camel/component/beanstalk/springboot/BeanstalkComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.beanstalk.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.component.beanstalk.ConnectionSettingsFactory;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 import org.springframework.boot.context.properties.NestedConfigurationProperty;
@@ -26,6 +27,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.beanstalk")
 public class BeanstalkComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-bindy-starter/src/main/java/org/apache/camel/dataformat/bindy/csv/springboot/BindyCsvDataFormatAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-bindy-starter/src/main/java/org/apache/camel/dataformat/bindy/csv/springboot/BindyCsvDataFormatAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-bindy-starter/src/main/java/org/apache/camel/dataformat/bindy/csv/springboot/BindyCsvDataFormatAutoConfiguration.java
index e2583ee..4ed920a 100644
--- a/platforms/spring-boot/components-starter/camel-bindy-starter/src/main/java/org/apache/camel/dataformat/bindy/csv/springboot/BindyCsvDataFormatAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-bindy-starter/src/main/java/org/apache/camel/dataformat/bindy/csv/springboot/BindyCsvDataFormatAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.dataformat.bindy.csv.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.CamelContextAware;
 import org.apache.camel.RuntimeCamelException;
@@ -43,6 +44,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(BindyCsvDataFormatAutoConfiguration.Condition.class)
@@ -82,6 +84,7 @@ public class BindyCsvDataFormatAutoConfiguration {
         };
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-bindy-starter/src/main/java/org/apache/camel/dataformat/bindy/csv/springboot/BindyCsvDataFormatConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-bindy-starter/src/main/java/org/apache/camel/dataformat/bindy/csv/springboot/BindyCsvDataFormatConfiguration.java b/platforms/spring-boot/components-starter/camel-bindy-starter/src/main/java/org/apache/camel/dataformat/bindy/csv/springboot/BindyCsvDataFormatConfiguration.java
index 8589bf0..5c3db44 100644
--- a/platforms/spring-boot/components-starter/camel-bindy-starter/src/main/java/org/apache/camel/dataformat/bindy/csv/springboot/BindyCsvDataFormatConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-bindy-starter/src/main/java/org/apache/camel/dataformat/bindy/csv/springboot/BindyCsvDataFormatConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.dataformat.bindy.csv.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.model.dataformat.BindyType;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
@@ -24,6 +25,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.dataformat.bindy-csv")
 public class BindyCsvDataFormatConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-bindy-starter/src/main/java/org/apache/camel/dataformat/bindy/fixed/springboot/BindyFixedLengthDataFormatAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-bindy-starter/src/main/java/org/apache/camel/dataformat/bindy/fixed/springboot/BindyFixedLengthDataFormatAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-bindy-starter/src/main/java/org/apache/camel/dataformat/bindy/fixed/springboot/BindyFixedLengthDataFormatAutoConfiguration.java
index 64a547a..50cd7cf 100644
--- a/platforms/spring-boot/components-starter/camel-bindy-starter/src/main/java/org/apache/camel/dataformat/bindy/fixed/springboot/BindyFixedLengthDataFormatAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-bindy-starter/src/main/java/org/apache/camel/dataformat/bindy/fixed/springboot/BindyFixedLengthDataFormatAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.dataformat.bindy.fixed.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.CamelContextAware;
 import org.apache.camel.RuntimeCamelException;
@@ -43,6 +44,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(BindyFixedLengthDataFormatAutoConfiguration.Condition.class)
@@ -82,6 +84,7 @@ public class BindyFixedLengthDataFormatAutoConfiguration {
         };
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-bindy-starter/src/main/java/org/apache/camel/dataformat/bindy/fixed/springboot/BindyFixedLengthDataFormatConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-bindy-starter/src/main/java/org/apache/camel/dataformat/bindy/fixed/springboot/BindyFixedLengthDataFormatConfiguration.java b/platforms/spring-boot/components-starter/camel-bindy-starter/src/main/java/org/apache/camel/dataformat/bindy/fixed/springboot/BindyFixedLengthDataFormatConfiguration.java
index 91ef2f5..0292d8f 100644
--- a/platforms/spring-boot/components-starter/camel-bindy-starter/src/main/java/org/apache/camel/dataformat/bindy/fixed/springboot/BindyFixedLengthDataFormatConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-bindy-starter/src/main/java/org/apache/camel/dataformat/bindy/fixed/springboot/BindyFixedLengthDataFormatConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.dataformat.bindy.fixed.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.model.dataformat.BindyType;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
@@ -24,6 +25,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.dataformat.bindy-fixed")
 public class BindyFixedLengthDataFormatConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-bindy-starter/src/main/java/org/apache/camel/dataformat/bindy/kvp/springboot/BindyKeyValuePairDataFormatAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-bindy-starter/src/main/java/org/apache/camel/dataformat/bindy/kvp/springboot/BindyKeyValuePairDataFormatAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-bindy-starter/src/main/java/org/apache/camel/dataformat/bindy/kvp/springboot/BindyKeyValuePairDataFormatAutoConfiguration.java
index 733e14c..77de985 100644
--- a/platforms/spring-boot/components-starter/camel-bindy-starter/src/main/java/org/apache/camel/dataformat/bindy/kvp/springboot/BindyKeyValuePairDataFormatAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-bindy-starter/src/main/java/org/apache/camel/dataformat/bindy/kvp/springboot/BindyKeyValuePairDataFormatAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.dataformat.bindy.kvp.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.CamelContextAware;
 import org.apache.camel.RuntimeCamelException;
@@ -43,6 +44,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(BindyKeyValuePairDataFormatAutoConfiguration.Condition.class)
@@ -82,6 +84,7 @@ public class BindyKeyValuePairDataFormatAutoConfiguration {
         };
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-bindy-starter/src/main/java/org/apache/camel/dataformat/bindy/kvp/springboot/BindyKeyValuePairDataFormatConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-bindy-starter/src/main/java/org/apache/camel/dataformat/bindy/kvp/springboot/BindyKeyValuePairDataFormatConfiguration.java b/platforms/spring-boot/components-starter/camel-bindy-starter/src/main/java/org/apache/camel/dataformat/bindy/kvp/springboot/BindyKeyValuePairDataFormatConfiguration.java
index a26c9fa..f812e60 100644
--- a/platforms/spring-boot/components-starter/camel-bindy-starter/src/main/java/org/apache/camel/dataformat/bindy/kvp/springboot/BindyKeyValuePairDataFormatConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-bindy-starter/src/main/java/org/apache/camel/dataformat/bindy/kvp/springboot/BindyKeyValuePairDataFormatConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.dataformat.bindy.kvp.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.model.dataformat.BindyType;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
@@ -24,6 +25,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.dataformat.bindy-kvp")
 public class BindyKeyValuePairDataFormatConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-bonita-starter/src/main/java/org/apache/camel/component/bonita/springboot/BonitaComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-bonita-starter/src/main/java/org/apache/camel/component/bonita/springboot/BonitaComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-bonita-starter/src/main/java/org/apache/camel/component/bonita/springboot/BonitaComponentAutoConfiguration.java
index 776f6b2..8bfa8d8 100644
--- a/platforms/spring-boot/components-starter/camel-bonita-starter/src/main/java/org/apache/camel/component/bonita/springboot/BonitaComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-bonita-starter/src/main/java/org/apache/camel/component/bonita/springboot/BonitaComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.bonita.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.bonita.BonitaComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(BonitaComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class BonitaComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-boon-starter/src/main/java/org/apache/camel/component/boon/springboot/BoonDataFormatAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-boon-starter/src/main/java/org/apache/camel/component/boon/springboot/BoonDataFormatAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-boon-starter/src/main/java/org/apache/camel/component/boon/springboot/BoonDataFormatAutoConfiguration.java
index 5d6702f..e4b60ac 100644
--- a/platforms/spring-boot/components-starter/camel-boon-starter/src/main/java/org/apache/camel/component/boon/springboot/BoonDataFormatAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-boon-starter/src/main/java/org/apache/camel/component/boon/springboot/BoonDataFormatAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.boon.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.CamelContextAware;
 import org.apache.camel.RuntimeCamelException;
@@ -43,6 +44,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(BoonDataFormatAutoConfiguration.Condition.class)
@@ -82,6 +84,7 @@ public class BoonDataFormatAutoConfiguration {
         };
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-boon-starter/src/main/java/org/apache/camel/component/boon/springboot/BoonDataFormatConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-boon-starter/src/main/java/org/apache/camel/component/boon/springboot/BoonDataFormatConfiguration.java b/platforms/spring-boot/components-starter/camel-boon-starter/src/main/java/org/apache/camel/component/boon/springboot/BoonDataFormatConfiguration.java
index 9832694..0531b94 100644
--- a/platforms/spring-boot/components-starter/camel-boon-starter/src/main/java/org/apache/camel/component/boon/springboot/BoonDataFormatConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-boon-starter/src/main/java/org/apache/camel/component/boon/springboot/BoonDataFormatConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.boon.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -23,6 +24,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.dataformat.boon")
 public class BoonDataFormatConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-box-starter/src/main/java/org/apache/camel/component/box/springboot/BoxComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-box-starter/src/main/java/org/apache/camel/component/box/springboot/BoxComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-box-starter/src/main/java/org/apache/camel/component/box/springboot/BoxComponentAutoConfiguration.java
index c71e9e1..d5e4c15 100644
--- a/platforms/spring-boot/components-starter/camel-box-starter/src/main/java/org/apache/camel/component/box/springboot/BoxComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-box-starter/src/main/java/org/apache/camel/component/box/springboot/BoxComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.box.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.box.BoxComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(BoxComponentAutoConfiguration.Condition.class)
@@ -83,6 +85,7 @@ public class BoxComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-box-starter/src/main/java/org/apache/camel/component/box/springboot/BoxComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-box-starter/src/main/java/org/apache/camel/component/box/springboot/BoxComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-box-starter/src/main/java/org/apache/camel/component/box/springboot/BoxComponentConfiguration.java
index d60ba98..e65b88f 100644
--- a/platforms/spring-boot/components-starter/camel-box-starter/src/main/java/org/apache/camel/component/box/springboot/BoxComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-box-starter/src/main/java/org/apache/camel/component/box/springboot/BoxComponentConfiguration.java
@@ -17,6 +17,7 @@
 package org.apache.camel.component.box.springboot;
 
 import java.util.Map;
+import javax.annotation.Generated;
 import com.box.sdk.IAccessTokenCache;
 import org.apache.camel.component.box.internal.BoxApiName;
 import org.apache.camel.util.jsse.SSLContextParameters;
@@ -29,6 +30,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.box")
 public class BoxComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-braintree-starter/src/main/java/org/apache/camel/component/braintree/springboot/BraintreeComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-braintree-starter/src/main/java/org/apache/camel/component/braintree/springboot/BraintreeComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-braintree-starter/src/main/java/org/apache/camel/component/braintree/springboot/BraintreeComponentAutoConfiguration.java
index 9136399..74c6170 100644
--- a/platforms/spring-boot/components-starter/camel-braintree-starter/src/main/java/org/apache/camel/component/braintree/springboot/BraintreeComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-braintree-starter/src/main/java/org/apache/camel/component/braintree/springboot/BraintreeComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.braintree.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.braintree.BraintreeComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(BraintreeComponentAutoConfiguration.Condition.class)
@@ -84,6 +86,7 @@ public class BraintreeComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-braintree-starter/src/main/java/org/apache/camel/component/braintree/springboot/BraintreeComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-braintree-starter/src/main/java/org/apache/camel/component/braintree/springboot/BraintreeComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-braintree-starter/src/main/java/org/apache/camel/component/braintree/springboot/BraintreeComponentConfiguration.java
index a040f05..036509e 100644
--- a/platforms/spring-boot/components-starter/camel-braintree-starter/src/main/java/org/apache/camel/component/braintree/springboot/BraintreeComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-braintree-starter/src/main/java/org/apache/camel/component/braintree/springboot/BraintreeComponentConfiguration.java
@@ -17,6 +17,7 @@
 package org.apache.camel.component.braintree.springboot;
 
 import java.util.logging.Level;
+import javax.annotation.Generated;
 import org.apache.camel.component.braintree.internal.BraintreeApiName;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
@@ -26,6 +27,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.braintree")
 public class BraintreeComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-cache-starter/src/main/java/org/apache/camel/component/cache/springboot/CacheComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-cache-starter/src/main/java/org/apache/camel/component/cache/springboot/CacheComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-cache-starter/src/main/java/org/apache/camel/component/cache/springboot/CacheComponentAutoConfiguration.java
index e2f577e..cb42905 100644
--- a/platforms/spring-boot/components-starter/camel-cache-starter/src/main/java/org/apache/camel/component/cache/springboot/CacheComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-cache-starter/src/main/java/org/apache/camel/component/cache/springboot/CacheComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.cache.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.cache.CacheComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(CacheComponentAutoConfiguration.Condition.class)
@@ -83,6 +85,7 @@ public class CacheComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-cache-starter/src/main/java/org/apache/camel/component/cache/springboot/CacheComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-cache-starter/src/main/java/org/apache/camel/component/cache/springboot/CacheComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-cache-starter/src/main/java/org/apache/camel/component/cache/springboot/CacheComponentConfiguration.java
index 1872e64..57a9ae5 100644
--- a/platforms/spring-boot/components-starter/camel-cache-starter/src/main/java/org/apache/camel/component/cache/springboot/CacheComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-cache-starter/src/main/java/org/apache/camel/component/cache/springboot/CacheComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.cache.springboot;
 
+import javax.annotation.Generated;
 import net.sf.ehcache.store.MemoryStoreEvictionPolicy;
 import org.apache.camel.component.cache.CacheEventListenerRegistry;
 import org.apache.camel.component.cache.CacheLoaderRegistry;
@@ -30,6 +31,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.cache")
 public class CacheComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-cassandraql-starter/src/main/java/org/apache/camel/component/cassandra/springboot/CassandraComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-cassandraql-starter/src/main/java/org/apache/camel/component/cassandra/springboot/CassandraComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-cassandraql-starter/src/main/java/org/apache/camel/component/cassandra/springboot/CassandraComponentAutoConfiguration.java
index 40cb722..041ba28 100644
--- a/platforms/spring-boot/components-starter/camel-cassandraql-starter/src/main/java/org/apache/camel/component/cassandra/springboot/CassandraComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-cassandraql-starter/src/main/java/org/apache/camel/component/cassandra/springboot/CassandraComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.cassandra.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.cassandra.CassandraComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(CassandraComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class CassandraComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-castor-starter/src/main/java/org/apache/camel/dataformat/castor/springboot/CastorDataFormatAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-castor-starter/src/main/java/org/apache/camel/dataformat/castor/springboot/CastorDataFormatAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-castor-starter/src/main/java/org/apache/camel/dataformat/castor/springboot/CastorDataFormatAutoConfiguration.java
index f4588e1..22c6cb0 100644
--- a/platforms/spring-boot/components-starter/camel-castor-starter/src/main/java/org/apache/camel/dataformat/castor/springboot/CastorDataFormatAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-castor-starter/src/main/java/org/apache/camel/dataformat/castor/springboot/CastorDataFormatAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.dataformat.castor.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.CamelContextAware;
 import org.apache.camel.RuntimeCamelException;
@@ -43,6 +44,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(CastorDataFormatAutoConfiguration.Condition.class)
@@ -82,6 +84,7 @@ public class CastorDataFormatAutoConfiguration {
         };
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-castor-starter/src/main/java/org/apache/camel/dataformat/castor/springboot/CastorDataFormatConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-castor-starter/src/main/java/org/apache/camel/dataformat/castor/springboot/CastorDataFormatConfiguration.java b/platforms/spring-boot/components-starter/camel-castor-starter/src/main/java/org/apache/camel/dataformat/castor/springboot/CastorDataFormatConfiguration.java
index 7f566af..5eac61a 100644
--- a/platforms/spring-boot/components-starter/camel-castor-starter/src/main/java/org/apache/camel/dataformat/castor/springboot/CastorDataFormatConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-castor-starter/src/main/java/org/apache/camel/dataformat/castor/springboot/CastorDataFormatConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.dataformat.castor.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -23,6 +24,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.dataformat.castor")
 public class CastorDataFormatConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-chronicle-starter/src/main/java/org/apache/camel/component/chronicle/engine/springboot/ChronicleEngineComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-chronicle-starter/src/main/java/org/apache/camel/component/chronicle/engine/springboot/ChronicleEngineComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-chronicle-starter/src/main/java/org/apache/camel/component/chronicle/engine/springboot/ChronicleEngineComponentAutoConfiguration.java
index 416b32f..1cc30ab 100644
--- a/platforms/spring-boot/components-starter/camel-chronicle-starter/src/main/java/org/apache/camel/component/chronicle/engine/springboot/ChronicleEngineComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-chronicle-starter/src/main/java/org/apache/camel/component/chronicle/engine/springboot/ChronicleEngineComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.chronicle.engine.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.chronicle.engine.ChronicleEngineComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(ChronicleEngineComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class ChronicleEngineComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-chunk-starter/src/main/java/org/apache/camel/component/chunk/springboot/ChunkComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-chunk-starter/src/main/java/org/apache/camel/component/chunk/springboot/ChunkComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-chunk-starter/src/main/java/org/apache/camel/component/chunk/springboot/ChunkComponentAutoConfiguration.java
index 76a5ef4..6f90de0 100644
--- a/platforms/spring-boot/components-starter/camel-chunk-starter/src/main/java/org/apache/camel/component/chunk/springboot/ChunkComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-chunk-starter/src/main/java/org/apache/camel/component/chunk/springboot/ChunkComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.chunk.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.chunk.ChunkComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(ChunkComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class ChunkComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-cm-sms-starter/src/main/java/org/apache/camel/component/cm/springboot/CMComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-cm-sms-starter/src/main/java/org/apache/camel/component/cm/springboot/CMComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-cm-sms-starter/src/main/java/org/apache/camel/component/cm/springboot/CMComponentAutoConfiguration.java
index 96f44e6..0816d87 100644
--- a/platforms/spring-boot/components-starter/camel-cm-sms-starter/src/main/java/org/apache/camel/component/cm/springboot/CMComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-cm-sms-starter/src/main/java/org/apache/camel/component/cm/springboot/CMComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.cm.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.cm.CMComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(CMComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class CMComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-cmis-starter/src/main/java/org/apache/camel/component/cmis/springboot/CMISComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-cmis-starter/src/main/java/org/apache/camel/component/cmis/springboot/CMISComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-cmis-starter/src/main/java/org/apache/camel/component/cmis/springboot/CMISComponentAutoConfiguration.java
index 484a69a..592c974 100644
--- a/platforms/spring-boot/components-starter/camel-cmis-starter/src/main/java/org/apache/camel/component/cmis/springboot/CMISComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-cmis-starter/src/main/java/org/apache/camel/component/cmis/springboot/CMISComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.cmis.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.cmis.CMISComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(CMISComponentAutoConfiguration.Condition.class)
@@ -83,6 +85,7 @@ public class CMISComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-cmis-starter/src/main/java/org/apache/camel/component/cmis/springboot/CMISComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-cmis-starter/src/main/java/org/apache/camel/component/cmis/springboot/CMISComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-cmis-starter/src/main/java/org/apache/camel/component/cmis/springboot/CMISComponentConfiguration.java
index 7922287..624fb09 100644
--- a/platforms/spring-boot/components-starter/camel-cmis-starter/src/main/java/org/apache/camel/component/cmis/springboot/CMISComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-cmis-starter/src/main/java/org/apache/camel/component/cmis/springboot/CMISComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.cmis.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.component.cmis.CMISSessionFacadeFactory;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 import org.springframework.boot.context.properties.NestedConfigurationProperty;
@@ -26,6 +27,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.cmis")
 public class CMISComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-coap-starter/src/main/java/org/apache/camel/coap/springboot/CoAPComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-coap-starter/src/main/java/org/apache/camel/coap/springboot/CoAPComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-coap-starter/src/main/java/org/apache/camel/coap/springboot/CoAPComponentAutoConfiguration.java
index 30eb83c..fa1ccfc 100644
--- a/platforms/spring-boot/components-starter/camel-coap-starter/src/main/java/org/apache/camel/coap/springboot/CoAPComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-coap-starter/src/main/java/org/apache/camel/coap/springboot/CoAPComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.coap.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.coap.CoAPComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(CoAPComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class CoAPComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-cometd-starter/src/main/java/org/apache/camel/component/cometd/springboot/CometdComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-cometd-starter/src/main/java/org/apache/camel/component/cometd/springboot/CometdComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-cometd-starter/src/main/java/org/apache/camel/component/cometd/springboot/CometdComponentAutoConfiguration.java
index 5bfcdce..33a15ef 100644
--- a/platforms/spring-boot/components-starter/camel-cometd-starter/src/main/java/org/apache/camel/component/cometd/springboot/CometdComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-cometd-starter/src/main/java/org/apache/camel/component/cometd/springboot/CometdComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.cometd.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.cometd.CometdComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(CometdComponentAutoConfiguration.Condition.class)
@@ -83,6 +85,7 @@ public class CometdComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-cometd-starter/src/main/java/org/apache/camel/component/cometd/springboot/CometdComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-cometd-starter/src/main/java/org/apache/camel/component/cometd/springboot/CometdComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-cometd-starter/src/main/java/org/apache/camel/component/cometd/springboot/CometdComponentConfiguration.java
index eacf933..1ad2c2c 100644
--- a/platforms/spring-boot/components-starter/camel-cometd-starter/src/main/java/org/apache/camel/component/cometd/springboot/CometdComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-cometd-starter/src/main/java/org/apache/camel/component/cometd/springboot/CometdComponentConfiguration.java
@@ -17,6 +17,7 @@
 package org.apache.camel.component.cometd.springboot;
 
 import java.util.List;
+import javax.annotation.Generated;
 import org.apache.camel.util.jsse.SSLContextParameters;
 import org.cometd.bayeux.server.BayeuxServer.Extension;
 import org.cometd.bayeux.server.SecurityPolicy;
@@ -29,6 +30,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.cometd")
 public class CometdComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-consul-starter/src/main/java/org/apache/camel/component/consul/springboot/ConsulComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-consul-starter/src/main/java/org/apache/camel/component/consul/springboot/ConsulComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-consul-starter/src/main/java/org/apache/camel/component/consul/springboot/ConsulComponentAutoConfiguration.java
index cd7fbbf..15c197b 100644
--- a/platforms/spring-boot/components-starter/camel-consul-starter/src/main/java/org/apache/camel/component/consul/springboot/ConsulComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-consul-starter/src/main/java/org/apache/camel/component/consul/springboot/ConsulComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.consul.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.consul.ConsulComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(ConsulComponentAutoConfiguration.Condition.class)
@@ -83,6 +85,7 @@ public class ConsulComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-consul-starter/src/main/java/org/apache/camel/component/consul/springboot/ConsulComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-consul-starter/src/main/java/org/apache/camel/component/consul/springboot/ConsulComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-consul-starter/src/main/java/org/apache/camel/component/consul/springboot/ConsulComponentConfiguration.java
index 9e8b957..a763d9c 100644
--- a/platforms/spring-boot/components-starter/camel-consul-starter/src/main/java/org/apache/camel/component/consul/springboot/ConsulComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-consul-starter/src/main/java/org/apache/camel/component/consul/springboot/ConsulComponentConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.consul.springboot;
 
 import java.util.List;
 import java.util.Set;
+import javax.annotation.Generated;
 import com.orbitz.consul.option.ConsistencyMode;
 import org.apache.camel.CamelContext;
 import org.apache.camel.util.jsse.SSLContextParameters;
@@ -31,6 +32,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.consul")
 public class ConsulComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-context-starter/src/main/java/org/apache/camel/component/context/springboot/QualifiedContextComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-context-starter/src/main/java/org/apache/camel/component/context/springboot/QualifiedContextComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-context-starter/src/main/java/org/apache/camel/component/context/springboot/QualifiedContextComponentAutoConfiguration.java
index c1ac8a6..b45987c 100644
--- a/platforms/spring-boot/components-starter/camel-context-starter/src/main/java/org/apache/camel/component/context/springboot/QualifiedContextComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-context-starter/src/main/java/org/apache/camel/component/context/springboot/QualifiedContextComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.context.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.context.QualifiedContextComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(QualifiedContextComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class QualifiedContextComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/bean/springboot/BeanComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/bean/springboot/BeanComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/bean/springboot/BeanComponentAutoConfiguration.java
index 53abd7e..2387463 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/bean/springboot/BeanComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/bean/springboot/BeanComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.bean.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.bean.BeanComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(BeanComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class BeanComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/beanclass/springboot/ClassComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/beanclass/springboot/ClassComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/beanclass/springboot/ClassComponentAutoConfiguration.java
index d75da6f..3a77bc3 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/beanclass/springboot/ClassComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/beanclass/springboot/ClassComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.beanclass.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.beanclass.ClassComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(ClassComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class ClassComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/binding/springboot/BindingNameComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/binding/springboot/BindingNameComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/binding/springboot/BindingNameComponentAutoConfiguration.java
index ce78eb1..9be6807 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/binding/springboot/BindingNameComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/binding/springboot/BindingNameComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.binding.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.binding.BindingNameComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(BindingNameComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class BindingNameComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/browse/springboot/BrowseComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/browse/springboot/BrowseComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/browse/springboot/BrowseComponentAutoConfiguration.java
index 9aa85c0..1cbe088 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/browse/springboot/BrowseComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/browse/springboot/BrowseComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.browse.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.browse.BrowseComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(BrowseComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class BrowseComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/controlbus/springboot/ControlBusComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/controlbus/springboot/ControlBusComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/controlbus/springboot/ControlBusComponentAutoConfiguration.java
index d9a7aaa..1b572b5 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/controlbus/springboot/ControlBusComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/controlbus/springboot/ControlBusComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.controlbus.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.controlbus.ControlBusComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(ControlBusComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class ControlBusComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/dataformat/springboot/DataFormatComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/dataformat/springboot/DataFormatComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/dataformat/springboot/DataFormatComponentAutoConfiguration.java
index c574bdc..02091d5 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/dataformat/springboot/DataFormatComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/component/dataformat/springboot/DataFormatComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.dataformat.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.dataformat.DataFormatComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(DataFormatComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class DataFormatComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(


[02/13] camel git commit: CAMEL-11165 Add @Generated annotation to code g...

Posted by zr...@apache.org.
http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-xmlbeans-starter/src/main/java/org/apache/camel/converter/xmlbeans/springboot/XmlBeansDataFormatAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-xmlbeans-starter/src/main/java/org/apache/camel/converter/xmlbeans/springboot/XmlBeansDataFormatAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-xmlbeans-starter/src/main/java/org/apache/camel/converter/xmlbeans/springboot/XmlBeansDataFormatAutoConfiguration.java
index 7ec6a95..cfd5297 100644
--- a/platforms/spring-boot/components-starter/camel-xmlbeans-starter/src/main/java/org/apache/camel/converter/xmlbeans/springboot/XmlBeansDataFormatAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-xmlbeans-starter/src/main/java/org/apache/camel/converter/xmlbeans/springboot/XmlBeansDataFormatAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.converter.xmlbeans.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.CamelContextAware;
 import org.apache.camel.RuntimeCamelException;
@@ -43,6 +44,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(XmlBeansDataFormatAutoConfiguration.Condition.class)
@@ -82,6 +84,7 @@ public class XmlBeansDataFormatAutoConfiguration {
         };
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-xmlbeans-starter/src/main/java/org/apache/camel/converter/xmlbeans/springboot/XmlBeansDataFormatConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-xmlbeans-starter/src/main/java/org/apache/camel/converter/xmlbeans/springboot/XmlBeansDataFormatConfiguration.java b/platforms/spring-boot/components-starter/camel-xmlbeans-starter/src/main/java/org/apache/camel/converter/xmlbeans/springboot/XmlBeansDataFormatConfiguration.java
index eef7b64..1ff358b 100644
--- a/platforms/spring-boot/components-starter/camel-xmlbeans-starter/src/main/java/org/apache/camel/converter/xmlbeans/springboot/XmlBeansDataFormatConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-xmlbeans-starter/src/main/java/org/apache/camel/converter/xmlbeans/springboot/XmlBeansDataFormatConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.converter.xmlbeans.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -23,6 +24,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.dataformat.xmlbeans")
 public class XmlBeansDataFormatConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-xmljson-starter/src/main/java/org/apache/camel/dataformat/xmljson/springboot/XmlJsonDataFormatAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-xmljson-starter/src/main/java/org/apache/camel/dataformat/xmljson/springboot/XmlJsonDataFormatAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-xmljson-starter/src/main/java/org/apache/camel/dataformat/xmljson/springboot/XmlJsonDataFormatAutoConfiguration.java
index 6c6c7b7..ad00be1 100644
--- a/platforms/spring-boot/components-starter/camel-xmljson-starter/src/main/java/org/apache/camel/dataformat/xmljson/springboot/XmlJsonDataFormatAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-xmljson-starter/src/main/java/org/apache/camel/dataformat/xmljson/springboot/XmlJsonDataFormatAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.dataformat.xmljson.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.CamelContextAware;
 import org.apache.camel.RuntimeCamelException;
@@ -43,6 +44,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(XmlJsonDataFormatAutoConfiguration.Condition.class)
@@ -82,6 +84,7 @@ public class XmlJsonDataFormatAutoConfiguration {
         };
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-xmljson-starter/src/main/java/org/apache/camel/dataformat/xmljson/springboot/XmlJsonDataFormatConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-xmljson-starter/src/main/java/org/apache/camel/dataformat/xmljson/springboot/XmlJsonDataFormatConfiguration.java b/platforms/spring-boot/components-starter/camel-xmljson-starter/src/main/java/org/apache/camel/dataformat/xmljson/springboot/XmlJsonDataFormatConfiguration.java
index 013bdc0..63741af 100644
--- a/platforms/spring-boot/components-starter/camel-xmljson-starter/src/main/java/org/apache/camel/dataformat/xmljson/springboot/XmlJsonDataFormatConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-xmljson-starter/src/main/java/org/apache/camel/dataformat/xmljson/springboot/XmlJsonDataFormatConfiguration.java
@@ -17,6 +17,7 @@
 package org.apache.camel.dataformat.xmljson.springboot;
 
 import java.util.List;
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -24,6 +25,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.dataformat.xmljson")
 public class XmlJsonDataFormatConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-xmlrpc-starter/src/main/java/org/apache/camel/component/xmlrpc/springboot/XmlRpcComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-xmlrpc-starter/src/main/java/org/apache/camel/component/xmlrpc/springboot/XmlRpcComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-xmlrpc-starter/src/main/java/org/apache/camel/component/xmlrpc/springboot/XmlRpcComponentAutoConfiguration.java
index ab993bb..c4ae448 100644
--- a/platforms/spring-boot/components-starter/camel-xmlrpc-starter/src/main/java/org/apache/camel/component/xmlrpc/springboot/XmlRpcComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-xmlrpc-starter/src/main/java/org/apache/camel/component/xmlrpc/springboot/XmlRpcComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.xmlrpc.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.xmlrpc.XmlRpcComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(XmlRpcComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class XmlRpcComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-xmlrpc-starter/src/main/java/org/apache/camel/dataformat/xmlrpc/springboot/XmlRpcDataFormatAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-xmlrpc-starter/src/main/java/org/apache/camel/dataformat/xmlrpc/springboot/XmlRpcDataFormatAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-xmlrpc-starter/src/main/java/org/apache/camel/dataformat/xmlrpc/springboot/XmlRpcDataFormatAutoConfiguration.java
index 79d2439..81f0b5e 100644
--- a/platforms/spring-boot/components-starter/camel-xmlrpc-starter/src/main/java/org/apache/camel/dataformat/xmlrpc/springboot/XmlRpcDataFormatAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-xmlrpc-starter/src/main/java/org/apache/camel/dataformat/xmlrpc/springboot/XmlRpcDataFormatAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.dataformat.xmlrpc.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.CamelContextAware;
 import org.apache.camel.RuntimeCamelException;
@@ -43,6 +44,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(XmlRpcDataFormatAutoConfiguration.Condition.class)
@@ -82,6 +84,7 @@ public class XmlRpcDataFormatAutoConfiguration {
         };
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-xmlrpc-starter/src/main/java/org/apache/camel/dataformat/xmlrpc/springboot/XmlRpcDataFormatConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-xmlrpc-starter/src/main/java/org/apache/camel/dataformat/xmlrpc/springboot/XmlRpcDataFormatConfiguration.java b/platforms/spring-boot/components-starter/camel-xmlrpc-starter/src/main/java/org/apache/camel/dataformat/xmlrpc/springboot/XmlRpcDataFormatConfiguration.java
index b13729f..b66d2c3 100644
--- a/platforms/spring-boot/components-starter/camel-xmlrpc-starter/src/main/java/org/apache/camel/dataformat/xmlrpc/springboot/XmlRpcDataFormatConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-xmlrpc-starter/src/main/java/org/apache/camel/dataformat/xmlrpc/springboot/XmlRpcDataFormatConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.dataformat.xmlrpc.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -23,6 +24,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.dataformat.xmlrpc")
 public class XmlRpcDataFormatConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-xmlsecurity-starter/src/main/java/org/apache/camel/component/xmlsecurity/springboot/XmlSignatureComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-xmlsecurity-starter/src/main/java/org/apache/camel/component/xmlsecurity/springboot/XmlSignatureComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-xmlsecurity-starter/src/main/java/org/apache/camel/component/xmlsecurity/springboot/XmlSignatureComponentAutoConfiguration.java
index dfcd3de..67fb7a6 100644
--- a/platforms/spring-boot/components-starter/camel-xmlsecurity-starter/src/main/java/org/apache/camel/component/xmlsecurity/springboot/XmlSignatureComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-xmlsecurity-starter/src/main/java/org/apache/camel/component/xmlsecurity/springboot/XmlSignatureComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.xmlsecurity.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.xmlsecurity.XmlSignatureComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(XmlSignatureComponentAutoConfiguration.Condition.class)
@@ -84,6 +86,7 @@ public class XmlSignatureComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-xmlsecurity-starter/src/main/java/org/apache/camel/component/xmlsecurity/springboot/XmlSignatureComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-xmlsecurity-starter/src/main/java/org/apache/camel/component/xmlsecurity/springboot/XmlSignatureComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-xmlsecurity-starter/src/main/java/org/apache/camel/component/xmlsecurity/springboot/XmlSignatureComponentConfiguration.java
index 443724d..0c3f804 100644
--- a/platforms/spring-boot/components-starter/camel-xmlsecurity-starter/src/main/java/org/apache/camel/component/xmlsecurity/springboot/XmlSignatureComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-xmlsecurity-starter/src/main/java/org/apache/camel/component/xmlsecurity/springboot/XmlSignatureComponentConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.xmlsecurity.springboot;
 
 import java.util.List;
 import java.util.Map;
+import javax.annotation.Generated;
 import javax.xml.crypto.AlgorithmMethod;
 import javax.xml.crypto.KeySelector;
 import javax.xml.crypto.URIDereferencer;
@@ -35,6 +36,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.xmlsecurity")
 public class XmlSignatureComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-xmlsecurity-starter/src/main/java/org/apache/camel/dataformat/xmlsecurity/springboot/XMLSecurityDataFormatAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-xmlsecurity-starter/src/main/java/org/apache/camel/dataformat/xmlsecurity/springboot/XMLSecurityDataFormatAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-xmlsecurity-starter/src/main/java/org/apache/camel/dataformat/xmlsecurity/springboot/XMLSecurityDataFormatAutoConfiguration.java
index 62ca4d5..7bb1d70 100644
--- a/platforms/spring-boot/components-starter/camel-xmlsecurity-starter/src/main/java/org/apache/camel/dataformat/xmlsecurity/springboot/XMLSecurityDataFormatAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-xmlsecurity-starter/src/main/java/org/apache/camel/dataformat/xmlsecurity/springboot/XMLSecurityDataFormatAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.dataformat.xmlsecurity.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.CamelContextAware;
 import org.apache.camel.RuntimeCamelException;
@@ -43,6 +44,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(XMLSecurityDataFormatAutoConfiguration.Condition.class)
@@ -82,6 +84,7 @@ public class XMLSecurityDataFormatAutoConfiguration {
         };
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-xmlsecurity-starter/src/main/java/org/apache/camel/dataformat/xmlsecurity/springboot/XMLSecurityDataFormatConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-xmlsecurity-starter/src/main/java/org/apache/camel/dataformat/xmlsecurity/springboot/XMLSecurityDataFormatConfiguration.java b/platforms/spring-boot/components-starter/camel-xmlsecurity-starter/src/main/java/org/apache/camel/dataformat/xmlsecurity/springboot/XMLSecurityDataFormatConfiguration.java
index 9c725c7..772b52c 100644
--- a/platforms/spring-boot/components-starter/camel-xmlsecurity-starter/src/main/java/org/apache/camel/dataformat/xmlsecurity/springboot/XMLSecurityDataFormatConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-xmlsecurity-starter/src/main/java/org/apache/camel/dataformat/xmlsecurity/springboot/XMLSecurityDataFormatConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.dataformat.xmlsecurity.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -23,6 +24,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.dataformat.securexml")
 public class XMLSecurityDataFormatConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-xmpp-starter/src/main/java/org/apache/camel/component/xmpp/springboot/XmppComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-xmpp-starter/src/main/java/org/apache/camel/component/xmpp/springboot/XmppComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-xmpp-starter/src/main/java/org/apache/camel/component/xmpp/springboot/XmppComponentAutoConfiguration.java
index a48647e..5b21da0 100644
--- a/platforms/spring-boot/components-starter/camel-xmpp-starter/src/main/java/org/apache/camel/component/xmpp/springboot/XmppComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-xmpp-starter/src/main/java/org/apache/camel/component/xmpp/springboot/XmppComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.xmpp.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.xmpp.XmppComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(XmppComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class XmppComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-xstream-starter/src/main/java/org/apache/camel/dataformat/xstream/springboot/JsonDataFormatAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-xstream-starter/src/main/java/org/apache/camel/dataformat/xstream/springboot/JsonDataFormatAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-xstream-starter/src/main/java/org/apache/camel/dataformat/xstream/springboot/JsonDataFormatAutoConfiguration.java
index b45b669..58f86c8 100644
--- a/platforms/spring-boot/components-starter/camel-xstream-starter/src/main/java/org/apache/camel/dataformat/xstream/springboot/JsonDataFormatAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-xstream-starter/src/main/java/org/apache/camel/dataformat/xstream/springboot/JsonDataFormatAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.dataformat.xstream.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.CamelContextAware;
 import org.apache.camel.RuntimeCamelException;
@@ -43,6 +44,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(JsonDataFormatAutoConfiguration.Condition.class)
@@ -82,6 +84,7 @@ public class JsonDataFormatAutoConfiguration {
         };
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-xstream-starter/src/main/java/org/apache/camel/dataformat/xstream/springboot/JsonDataFormatConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-xstream-starter/src/main/java/org/apache/camel/dataformat/xstream/springboot/JsonDataFormatConfiguration.java b/platforms/spring-boot/components-starter/camel-xstream-starter/src/main/java/org/apache/camel/dataformat/xstream/springboot/JsonDataFormatConfiguration.java
index 522c52e..d56f19a 100644
--- a/platforms/spring-boot/components-starter/camel-xstream-starter/src/main/java/org/apache/camel/dataformat/xstream/springboot/JsonDataFormatConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-xstream-starter/src/main/java/org/apache/camel/dataformat/xstream/springboot/JsonDataFormatConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.dataformat.xstream.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.dataformat.xstream.JsonDataFormat;
 import org.apache.camel.model.dataformat.JsonLibrary;
 import org.springframework.boot.context.properties.ConfigurationProperties;
@@ -25,6 +26,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.dataformat.json-xstream")
 public class JsonDataFormatConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-xstream-starter/src/main/java/org/apache/camel/dataformat/xstream/springboot/XStreamDataFormatAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-xstream-starter/src/main/java/org/apache/camel/dataformat/xstream/springboot/XStreamDataFormatAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-xstream-starter/src/main/java/org/apache/camel/dataformat/xstream/springboot/XStreamDataFormatAutoConfiguration.java
index c132cab..3d5b520 100644
--- a/platforms/spring-boot/components-starter/camel-xstream-starter/src/main/java/org/apache/camel/dataformat/xstream/springboot/XStreamDataFormatAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-xstream-starter/src/main/java/org/apache/camel/dataformat/xstream/springboot/XStreamDataFormatAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.dataformat.xstream.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.CamelContextAware;
 import org.apache.camel.RuntimeCamelException;
@@ -43,6 +44,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(XStreamDataFormatAutoConfiguration.Condition.class)
@@ -82,6 +84,7 @@ public class XStreamDataFormatAutoConfiguration {
         };
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-xstream-starter/src/main/java/org/apache/camel/dataformat/xstream/springboot/XStreamDataFormatConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-xstream-starter/src/main/java/org/apache/camel/dataformat/xstream/springboot/XStreamDataFormatConfiguration.java b/platforms/spring-boot/components-starter/camel-xstream-starter/src/main/java/org/apache/camel/dataformat/xstream/springboot/XStreamDataFormatConfiguration.java
index 8e953c6..4921355 100644
--- a/platforms/spring-boot/components-starter/camel-xstream-starter/src/main/java/org/apache/camel/dataformat/xstream/springboot/XStreamDataFormatConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-xstream-starter/src/main/java/org/apache/camel/dataformat/xstream/springboot/XStreamDataFormatConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.dataformat.xstream.springboot;
 
 import java.util.List;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -25,6 +26,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.dataformat.xstream")
 public class XStreamDataFormatConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-yammer-starter/src/main/java/org/apache/camel/component/yammer/springboot/YammerComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-yammer-starter/src/main/java/org/apache/camel/component/yammer/springboot/YammerComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-yammer-starter/src/main/java/org/apache/camel/component/yammer/springboot/YammerComponentAutoConfiguration.java
index 006d096..219e800 100644
--- a/platforms/spring-boot/components-starter/camel-yammer-starter/src/main/java/org/apache/camel/component/yammer/springboot/YammerComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-yammer-starter/src/main/java/org/apache/camel/component/yammer/springboot/YammerComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.yammer.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.yammer.YammerComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(YammerComponentAutoConfiguration.Condition.class)
@@ -83,6 +85,7 @@ public class YammerComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-yammer-starter/src/main/java/org/apache/camel/component/yammer/springboot/YammerComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-yammer-starter/src/main/java/org/apache/camel/component/yammer/springboot/YammerComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-yammer-starter/src/main/java/org/apache/camel/component/yammer/springboot/YammerComponentConfiguration.java
index 1168a36..752766f 100644
--- a/platforms/spring-boot/components-starter/camel-yammer-starter/src/main/java/org/apache/camel/component/yammer/springboot/YammerComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-yammer-starter/src/main/java/org/apache/camel/component/yammer/springboot/YammerComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.yammer.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.component.yammer.ApiRequestor;
 import org.apache.camel.component.yammer.YammerFunctionType;
 import org.springframework.boot.context.properties.ConfigurationProperties;
@@ -26,6 +27,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.yammer")
 public class YammerComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-zendesk-starter/src/main/java/org/apache/camel/component/zendesk/springboot/ZendeskComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-zendesk-starter/src/main/java/org/apache/camel/component/zendesk/springboot/ZendeskComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-zendesk-starter/src/main/java/org/apache/camel/component/zendesk/springboot/ZendeskComponentAutoConfiguration.java
index d181838..0bd35c0 100644
--- a/platforms/spring-boot/components-starter/camel-zendesk-starter/src/main/java/org/apache/camel/component/zendesk/springboot/ZendeskComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-zendesk-starter/src/main/java/org/apache/camel/component/zendesk/springboot/ZendeskComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.zendesk.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.zendesk.ZendeskComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(ZendeskComponentAutoConfiguration.Condition.class)
@@ -84,6 +86,7 @@ public class ZendeskComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-zendesk-starter/src/main/java/org/apache/camel/component/zendesk/springboot/ZendeskComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-zendesk-starter/src/main/java/org/apache/camel/component/zendesk/springboot/ZendeskComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-zendesk-starter/src/main/java/org/apache/camel/component/zendesk/springboot/ZendeskComponentConfiguration.java
index 8defaca..e81d23f 100644
--- a/platforms/spring-boot/components-starter/camel-zendesk-starter/src/main/java/org/apache/camel/component/zendesk/springboot/ZendeskComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-zendesk-starter/src/main/java/org/apache/camel/component/zendesk/springboot/ZendeskComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.zendesk.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 import org.springframework.boot.context.properties.NestedConfigurationProperty;
 import org.zendesk.client.v2.Zendesk;
@@ -25,6 +26,7 @@ import org.zendesk.client.v2.Zendesk;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.zendesk")
 public class ZendeskComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-zipfile-starter/src/main/java/org/apache/camel/dataformat/zipfile/springboot/ZipFileDataFormatAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-zipfile-starter/src/main/java/org/apache/camel/dataformat/zipfile/springboot/ZipFileDataFormatAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-zipfile-starter/src/main/java/org/apache/camel/dataformat/zipfile/springboot/ZipFileDataFormatAutoConfiguration.java
index a0a3213..9772e7d 100644
--- a/platforms/spring-boot/components-starter/camel-zipfile-starter/src/main/java/org/apache/camel/dataformat/zipfile/springboot/ZipFileDataFormatAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-zipfile-starter/src/main/java/org/apache/camel/dataformat/zipfile/springboot/ZipFileDataFormatAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.dataformat.zipfile.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.CamelContextAware;
 import org.apache.camel.RuntimeCamelException;
@@ -43,6 +44,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(ZipFileDataFormatAutoConfiguration.Condition.class)
@@ -82,6 +84,7 @@ public class ZipFileDataFormatAutoConfiguration {
         };
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-zipfile-starter/src/main/java/org/apache/camel/dataformat/zipfile/springboot/ZipFileDataFormatConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-zipfile-starter/src/main/java/org/apache/camel/dataformat/zipfile/springboot/ZipFileDataFormatConfiguration.java b/platforms/spring-boot/components-starter/camel-zipfile-starter/src/main/java/org/apache/camel/dataformat/zipfile/springboot/ZipFileDataFormatConfiguration.java
index fa42d9e..d08996a 100644
--- a/platforms/spring-boot/components-starter/camel-zipfile-starter/src/main/java/org/apache/camel/dataformat/zipfile/springboot/ZipFileDataFormatConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-zipfile-starter/src/main/java/org/apache/camel/dataformat/zipfile/springboot/ZipFileDataFormatConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.dataformat.zipfile.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -23,6 +24,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.dataformat.zipfile")
 public class ZipFileDataFormatConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-zookeeper-master-starter/src/main/java/org/apache/camel/component/zookeepermaster/springboot/MasterComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-zookeeper-master-starter/src/main/java/org/apache/camel/component/zookeepermaster/springboot/MasterComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-zookeeper-master-starter/src/main/java/org/apache/camel/component/zookeepermaster/springboot/MasterComponentAutoConfiguration.java
index 5afd8cc..1162a59 100644
--- a/platforms/spring-boot/components-starter/camel-zookeeper-master-starter/src/main/java/org/apache/camel/component/zookeepermaster/springboot/MasterComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-zookeeper-master-starter/src/main/java/org/apache/camel/component/zookeepermaster/springboot/MasterComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.zookeepermaster.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.zookeepermaster.MasterComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(MasterComponentAutoConfiguration.Condition.class)
@@ -83,6 +85,7 @@ public class MasterComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-zookeeper-master-starter/src/main/java/org/apache/camel/component/zookeepermaster/springboot/MasterComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-zookeeper-master-starter/src/main/java/org/apache/camel/component/zookeepermaster/springboot/MasterComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-zookeeper-master-starter/src/main/java/org/apache/camel/component/zookeepermaster/springboot/MasterComponentConfiguration.java
index 8529a4d..5e0ed69 100644
--- a/platforms/spring-boot/components-starter/camel-zookeeper-master-starter/src/main/java/org/apache/camel/component/zookeepermaster/springboot/MasterComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-zookeeper-master-starter/src/main/java/org/apache/camel/component/zookeepermaster/springboot/MasterComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.zookeepermaster.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.component.zookeepermaster.ContainerIdFactory;
 import org.apache.curator.framework.CuratorFramework;
 import org.springframework.boot.context.properties.ConfigurationProperties;
@@ -27,6 +28,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.zookeeper-master")
 public class MasterComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-zookeeper-starter/src/main/java/org/apache/camel/component/zookeeper/springboot/ZooKeeperComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-zookeeper-starter/src/main/java/org/apache/camel/component/zookeeper/springboot/ZooKeeperComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-zookeeper-starter/src/main/java/org/apache/camel/component/zookeeper/springboot/ZooKeeperComponentAutoConfiguration.java
index 1478c95..209747a 100644
--- a/platforms/spring-boot/components-starter/camel-zookeeper-starter/src/main/java/org/apache/camel/component/zookeeper/springboot/ZooKeeperComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-zookeeper-starter/src/main/java/org/apache/camel/component/zookeeper/springboot/ZooKeeperComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.zookeeper.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.zookeeper.ZooKeeperComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(ZooKeeperComponentAutoConfiguration.Condition.class)
@@ -84,6 +86,7 @@ public class ZooKeeperComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-zookeeper-starter/src/main/java/org/apache/camel/component/zookeeper/springboot/ZooKeeperComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-zookeeper-starter/src/main/java/org/apache/camel/component/zookeeper/springboot/ZooKeeperComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-zookeeper-starter/src/main/java/org/apache/camel/component/zookeeper/springboot/ZooKeeperComponentConfiguration.java
index 7f40e02..9e4d2cc 100644
--- a/platforms/spring-boot/components-starter/camel-zookeeper-starter/src/main/java/org/apache/camel/component/zookeeper/springboot/ZooKeeperComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-zookeeper-starter/src/main/java/org/apache/camel/component/zookeeper/springboot/ZooKeeperComponentConfiguration.java
@@ -17,6 +17,7 @@
 package org.apache.camel.component.zookeeper.springboot;
 
 import java.util.List;
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 import org.springframework.boot.context.properties.DeprecatedConfigurationProperty;
 
@@ -25,6 +26,7 @@ import org.springframework.boot.context.properties.DeprecatedConfigurationProper
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.zookeeper")
 public class ZooKeeperComponentConfiguration {
 


[05/13] camel git commit: CAMEL-11165 Add @Generated annotation to code g...

Posted by zr...@apache.org.
http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-mvel-starter/src/main/java/org/apache/camel/component/mvel/springboot/MvelComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-mvel-starter/src/main/java/org/apache/camel/component/mvel/springboot/MvelComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-mvel-starter/src/main/java/org/apache/camel/component/mvel/springboot/MvelComponentAutoConfiguration.java
index 9761226..bfaef25 100644
--- a/platforms/spring-boot/components-starter/camel-mvel-starter/src/main/java/org/apache/camel/component/mvel/springboot/MvelComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-mvel-starter/src/main/java/org/apache/camel/component/mvel/springboot/MvelComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.mvel.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.mvel.MvelComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(MvelComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class MvelComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-mvel-starter/src/main/java/org/apache/camel/language/mvel/springboot/MvelLanguageAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-mvel-starter/src/main/java/org/apache/camel/language/mvel/springboot/MvelLanguageAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-mvel-starter/src/main/java/org/apache/camel/language/mvel/springboot/MvelLanguageAutoConfiguration.java
index e864e35..0072cfe 100644
--- a/platforms/spring-boot/components-starter/camel-mvel-starter/src/main/java/org/apache/camel/language/mvel/springboot/MvelLanguageAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-mvel-starter/src/main/java/org/apache/camel/language/mvel/springboot/MvelLanguageAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.language.mvel.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.CamelContextAware;
 import org.apache.camel.language.mvel.MvelLanguage;
@@ -41,6 +42,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(MvelLanguageAutoConfiguration.Condition.class)
@@ -70,6 +72,7 @@ public class MvelLanguageAutoConfiguration {
         return language;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-mvel-starter/src/main/java/org/apache/camel/language/mvel/springboot/MvelLanguageConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-mvel-starter/src/main/java/org/apache/camel/language/mvel/springboot/MvelLanguageConfiguration.java b/platforms/spring-boot/components-starter/camel-mvel-starter/src/main/java/org/apache/camel/language/mvel/springboot/MvelLanguageConfiguration.java
index cad6bd9..9eeb3e7 100644
--- a/platforms/spring-boot/components-starter/camel-mvel-starter/src/main/java/org/apache/camel/language/mvel/springboot/MvelLanguageConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-mvel-starter/src/main/java/org/apache/camel/language/mvel/springboot/MvelLanguageConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.language.mvel.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -23,6 +24,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.language.mvel")
 public class MvelLanguageConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-mybatis-starter/src/main/java/org/apache/camel/component/mybatis/springboot/MyBatisComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-mybatis-starter/src/main/java/org/apache/camel/component/mybatis/springboot/MyBatisComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-mybatis-starter/src/main/java/org/apache/camel/component/mybatis/springboot/MyBatisComponentAutoConfiguration.java
index 5995490..b0e516a 100644
--- a/platforms/spring-boot/components-starter/camel-mybatis-starter/src/main/java/org/apache/camel/component/mybatis/springboot/MyBatisComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-mybatis-starter/src/main/java/org/apache/camel/component/mybatis/springboot/MyBatisComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.mybatis.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.mybatis.MyBatisComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(MyBatisComponentAutoConfiguration.Condition.class)
@@ -84,6 +86,7 @@ public class MyBatisComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-mybatis-starter/src/main/java/org/apache/camel/component/mybatis/springboot/MyBatisComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-mybatis-starter/src/main/java/org/apache/camel/component/mybatis/springboot/MyBatisComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-mybatis-starter/src/main/java/org/apache/camel/component/mybatis/springboot/MyBatisComponentConfiguration.java
index 3d67f47..d3152c4 100644
--- a/platforms/spring-boot/components-starter/camel-mybatis-starter/src/main/java/org/apache/camel/component/mybatis/springboot/MyBatisComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-mybatis-starter/src/main/java/org/apache/camel/component/mybatis/springboot/MyBatisComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.mybatis.springboot;
 
+import javax.annotation.Generated;
 import org.apache.ibatis.session.SqlSessionFactory;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 import org.springframework.boot.context.properties.NestedConfigurationProperty;
@@ -26,6 +27,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.mybatis")
 public class MyBatisComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-nagios-starter/src/main/java/org/apache/camel/component/nagios/springboot/NagiosComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-nagios-starter/src/main/java/org/apache/camel/component/nagios/springboot/NagiosComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-nagios-starter/src/main/java/org/apache/camel/component/nagios/springboot/NagiosComponentAutoConfiguration.java
index 7d6984d..ff72f2b 100644
--- a/platforms/spring-boot/components-starter/camel-nagios-starter/src/main/java/org/apache/camel/component/nagios/springboot/NagiosComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-nagios-starter/src/main/java/org/apache/camel/component/nagios/springboot/NagiosComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.nagios.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.nagios.NagiosComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(NagiosComponentAutoConfiguration.Condition.class)
@@ -83,6 +85,7 @@ public class NagiosComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-nagios-starter/src/main/java/org/apache/camel/component/nagios/springboot/NagiosComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-nagios-starter/src/main/java/org/apache/camel/component/nagios/springboot/NagiosComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-nagios-starter/src/main/java/org/apache/camel/component/nagios/springboot/NagiosComponentConfiguration.java
index a621c46..ddcf6cb 100644
--- a/platforms/spring-boot/components-starter/camel-nagios-starter/src/main/java/org/apache/camel/component/nagios/springboot/NagiosComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-nagios-starter/src/main/java/org/apache/camel/component/nagios/springboot/NagiosComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.nagios.springboot;
 
+import javax.annotation.Generated;
 import com.googlecode.jsendnsca.core.NagiosSettings;
 import org.apache.camel.component.nagios.NagiosEncryptionMethod;
 import org.springframework.boot.context.properties.ConfigurationProperties;
@@ -26,6 +27,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.nagios")
 public class NagiosComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-nats-starter/src/main/java/org/apache/camel/component/nats/springboot/NatsComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-nats-starter/src/main/java/org/apache/camel/component/nats/springboot/NatsComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-nats-starter/src/main/java/org/apache/camel/component/nats/springboot/NatsComponentAutoConfiguration.java
index 52780ce..5f0a19f 100644
--- a/platforms/spring-boot/components-starter/camel-nats-starter/src/main/java/org/apache/camel/component/nats/springboot/NatsComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-nats-starter/src/main/java/org/apache/camel/component/nats/springboot/NatsComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.nats.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.nats.NatsComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(NatsComponentAutoConfiguration.Condition.class)
@@ -83,6 +85,7 @@ public class NatsComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-nats-starter/src/main/java/org/apache/camel/component/nats/springboot/NatsComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-nats-starter/src/main/java/org/apache/camel/component/nats/springboot/NatsComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-nats-starter/src/main/java/org/apache/camel/component/nats/springboot/NatsComponentConfiguration.java
index 92cbe0c..fb872db 100644
--- a/platforms/spring-boot/components-starter/camel-nats-starter/src/main/java/org/apache/camel/component/nats/springboot/NatsComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-nats-starter/src/main/java/org/apache/camel/component/nats/springboot/NatsComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.nats.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -23,6 +24,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.nats")
 public class NatsComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-netty-http-starter/src/main/java/org/apache/camel/component/netty/http/springboot/NettyHttpComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-netty-http-starter/src/main/java/org/apache/camel/component/netty/http/springboot/NettyHttpComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-netty-http-starter/src/main/java/org/apache/camel/component/netty/http/springboot/NettyHttpComponentAutoConfiguration.java
index e1238d2..1ed1da4 100644
--- a/platforms/spring-boot/components-starter/camel-netty-http-starter/src/main/java/org/apache/camel/component/netty/http/springboot/NettyHttpComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-netty-http-starter/src/main/java/org/apache/camel/component/netty/http/springboot/NettyHttpComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.netty.http.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.netty.http.NettyHttpComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(NettyHttpComponentAutoConfiguration.Condition.class)
@@ -84,6 +86,7 @@ public class NettyHttpComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-netty-http-starter/src/main/java/org/apache/camel/component/netty/http/springboot/NettyHttpComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-netty-http-starter/src/main/java/org/apache/camel/component/netty/http/springboot/NettyHttpComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-netty-http-starter/src/main/java/org/apache/camel/component/netty/http/springboot/NettyHttpComponentConfiguration.java
index fc4064b..e105a34 100644
--- a/platforms/spring-boot/components-starter/camel-netty-http-starter/src/main/java/org/apache/camel/component/netty/http/springboot/NettyHttpComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-netty-http-starter/src/main/java/org/apache/camel/component/netty/http/springboot/NettyHttpComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.netty.http.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.LoggingLevel;
 import org.apache.camel.component.netty.http.NettyHttpBinding;
 import org.apache.camel.component.netty.http.SecurityAuthenticator;
@@ -29,6 +30,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.netty-http")
 public class NettyHttpComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-netty-starter/src/main/java/org/apache/camel/component/netty/springboot/NettyComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-netty-starter/src/main/java/org/apache/camel/component/netty/springboot/NettyComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-netty-starter/src/main/java/org/apache/camel/component/netty/springboot/NettyComponentAutoConfiguration.java
index 0d54763..c80984a 100644
--- a/platforms/spring-boot/components-starter/camel-netty-starter/src/main/java/org/apache/camel/component/netty/springboot/NettyComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-netty-starter/src/main/java/org/apache/camel/component/netty/springboot/NettyComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.netty.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.netty.NettyComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(NettyComponentAutoConfiguration.Condition.class)
@@ -83,6 +85,7 @@ public class NettyComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-netty-starter/src/main/java/org/apache/camel/component/netty/springboot/NettyComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-netty-starter/src/main/java/org/apache/camel/component/netty/springboot/NettyComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-netty-starter/src/main/java/org/apache/camel/component/netty/springboot/NettyComponentConfiguration.java
index 0468394..9509391 100644
--- a/platforms/spring-boot/components-starter/camel-netty-starter/src/main/java/org/apache/camel/component/netty/springboot/NettyComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-netty-starter/src/main/java/org/apache/camel/component/netty/springboot/NettyComponentConfiguration.java
@@ -19,6 +19,7 @@ package org.apache.camel.component.netty.springboot;
 import java.io.File;
 import java.util.List;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.LoggingLevel;
 import org.apache.camel.component.netty.ClientPipelineFactory;
 import org.apache.camel.component.netty.NettyComponent;
@@ -40,6 +41,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.netty")
 public class NettyComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-netty4-http-starter/src/main/java/org/apache/camel/component/netty4/http/springboot/NettyHttpComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-netty4-http-starter/src/main/java/org/apache/camel/component/netty4/http/springboot/NettyHttpComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-netty4-http-starter/src/main/java/org/apache/camel/component/netty4/http/springboot/NettyHttpComponentAutoConfiguration.java
index 3898d9a..6478cfc 100644
--- a/platforms/spring-boot/components-starter/camel-netty4-http-starter/src/main/java/org/apache/camel/component/netty4/http/springboot/NettyHttpComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-netty4-http-starter/src/main/java/org/apache/camel/component/netty4/http/springboot/NettyHttpComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.netty4.http.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.netty4.http.NettyHttpComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(NettyHttpComponentAutoConfiguration.Condition.class)
@@ -84,6 +86,7 @@ public class NettyHttpComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-netty4-http-starter/src/main/java/org/apache/camel/component/netty4/http/springboot/NettyHttpComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-netty4-http-starter/src/main/java/org/apache/camel/component/netty4/http/springboot/NettyHttpComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-netty4-http-starter/src/main/java/org/apache/camel/component/netty4/http/springboot/NettyHttpComponentConfiguration.java
index 3c88189..7ac1105 100644
--- a/platforms/spring-boot/components-starter/camel-netty4-http-starter/src/main/java/org/apache/camel/component/netty4/http/springboot/NettyHttpComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-netty4-http-starter/src/main/java/org/apache/camel/component/netty4/http/springboot/NettyHttpComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.netty4.http.springboot;
 
+import javax.annotation.Generated;
 import io.netty.util.concurrent.EventExecutorGroup;
 import org.apache.camel.LoggingLevel;
 import org.apache.camel.component.netty4.http.NettyHttpBinding;
@@ -30,6 +31,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.netty4-http")
 public class NettyHttpComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-netty4-starter/src/main/java/org/apache/camel/component/netty4/springboot/NettyComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-netty4-starter/src/main/java/org/apache/camel/component/netty4/springboot/NettyComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-netty4-starter/src/main/java/org/apache/camel/component/netty4/springboot/NettyComponentAutoConfiguration.java
index 8696765..afb784c 100644
--- a/platforms/spring-boot/components-starter/camel-netty4-starter/src/main/java/org/apache/camel/component/netty4/springboot/NettyComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-netty4-starter/src/main/java/org/apache/camel/component/netty4/springboot/NettyComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.netty4.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.netty4.NettyComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(NettyComponentAutoConfiguration.Condition.class)
@@ -83,6 +85,7 @@ public class NettyComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-netty4-starter/src/main/java/org/apache/camel/component/netty4/springboot/NettyComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-netty4-starter/src/main/java/org/apache/camel/component/netty4/springboot/NettyComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-netty4-starter/src/main/java/org/apache/camel/component/netty4/springboot/NettyComponentConfiguration.java
index 4d8621f..659ea39 100644
--- a/platforms/spring-boot/components-starter/camel-netty4-starter/src/main/java/org/apache/camel/component/netty4/springboot/NettyComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-netty4-starter/src/main/java/org/apache/camel/component/netty4/springboot/NettyComponentConfiguration.java
@@ -19,6 +19,7 @@ package org.apache.camel.component.netty4.springboot;
 import java.io.File;
 import java.util.List;
 import java.util.Map;
+import javax.annotation.Generated;
 import io.netty.channel.ChannelHandler;
 import io.netty.channel.EventLoopGroup;
 import io.netty.channel.group.ChannelGroup;
@@ -40,6 +41,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.netty4")
 public class NettyComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-ognl-starter/src/main/java/org/apache/camel/language/ognl/springboot/OgnlLanguageAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-ognl-starter/src/main/java/org/apache/camel/language/ognl/springboot/OgnlLanguageAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-ognl-starter/src/main/java/org/apache/camel/language/ognl/springboot/OgnlLanguageAutoConfiguration.java
index eb87fa8..4d6bcc0 100644
--- a/platforms/spring-boot/components-starter/camel-ognl-starter/src/main/java/org/apache/camel/language/ognl/springboot/OgnlLanguageAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-ognl-starter/src/main/java/org/apache/camel/language/ognl/springboot/OgnlLanguageAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.language.ognl.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.CamelContextAware;
 import org.apache.camel.language.ognl.OgnlLanguage;
@@ -41,6 +42,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(OgnlLanguageAutoConfiguration.Condition.class)
@@ -70,6 +72,7 @@ public class OgnlLanguageAutoConfiguration {
         return language;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-ognl-starter/src/main/java/org/apache/camel/language/ognl/springboot/OgnlLanguageConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-ognl-starter/src/main/java/org/apache/camel/language/ognl/springboot/OgnlLanguageConfiguration.java b/platforms/spring-boot/components-starter/camel-ognl-starter/src/main/java/org/apache/camel/language/ognl/springboot/OgnlLanguageConfiguration.java
index c0db250..77c4b6b 100644
--- a/platforms/spring-boot/components-starter/camel-ognl-starter/src/main/java/org/apache/camel/language/ognl/springboot/OgnlLanguageConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-ognl-starter/src/main/java/org/apache/camel/language/ognl/springboot/OgnlLanguageConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.language.ognl.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -23,6 +24,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.language.ognl")
 public class OgnlLanguageConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-olingo2-starter/src/main/java/org/apache/camel/component/olingo2/springboot/Olingo2ComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-olingo2-starter/src/main/java/org/apache/camel/component/olingo2/springboot/Olingo2ComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-olingo2-starter/src/main/java/org/apache/camel/component/olingo2/springboot/Olingo2ComponentAutoConfiguration.java
index 33a4304..bf91860 100644
--- a/platforms/spring-boot/components-starter/camel-olingo2-starter/src/main/java/org/apache/camel/component/olingo2/springboot/Olingo2ComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-olingo2-starter/src/main/java/org/apache/camel/component/olingo2/springboot/Olingo2ComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.olingo2.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.olingo2.Olingo2Component;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(Olingo2ComponentAutoConfiguration.Condition.class)
@@ -84,6 +86,7 @@ public class Olingo2ComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-olingo2-starter/src/main/java/org/apache/camel/component/olingo2/springboot/Olingo2ComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-olingo2-starter/src/main/java/org/apache/camel/component/olingo2/springboot/Olingo2ComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-olingo2-starter/src/main/java/org/apache/camel/component/olingo2/springboot/Olingo2ComponentConfiguration.java
index 1ea121d..a808800 100644
--- a/platforms/spring-boot/components-starter/camel-olingo2-starter/src/main/java/org/apache/camel/component/olingo2/springboot/Olingo2ComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-olingo2-starter/src/main/java/org/apache/camel/component/olingo2/springboot/Olingo2ComponentConfiguration.java
@@ -17,6 +17,7 @@
 package org.apache.camel.component.olingo2.springboot;
 
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.component.olingo2.internal.Olingo2ApiName;
 import org.apache.camel.util.jsse.SSLContextParameters;
 import org.apache.http.HttpHost;
@@ -30,6 +31,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.olingo2")
 public class Olingo2ComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-olingo4-starter/src/main/java/org/apache/camel/component/olingo4/springboot/Olingo4ComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-olingo4-starter/src/main/java/org/apache/camel/component/olingo4/springboot/Olingo4ComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-olingo4-starter/src/main/java/org/apache/camel/component/olingo4/springboot/Olingo4ComponentAutoConfiguration.java
index f3e685d..6cdf4b1 100644
--- a/platforms/spring-boot/components-starter/camel-olingo4-starter/src/main/java/org/apache/camel/component/olingo4/springboot/Olingo4ComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-olingo4-starter/src/main/java/org/apache/camel/component/olingo4/springboot/Olingo4ComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.olingo4.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.olingo4.Olingo4Component;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(Olingo4ComponentAutoConfiguration.Condition.class)
@@ -84,6 +86,7 @@ public class Olingo4ComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-olingo4-starter/src/main/java/org/apache/camel/component/olingo4/springboot/Olingo4ComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-olingo4-starter/src/main/java/org/apache/camel/component/olingo4/springboot/Olingo4ComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-olingo4-starter/src/main/java/org/apache/camel/component/olingo4/springboot/Olingo4ComponentConfiguration.java
index 664c51a..105cd2d 100644
--- a/platforms/spring-boot/components-starter/camel-olingo4-starter/src/main/java/org/apache/camel/component/olingo4/springboot/Olingo4ComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-olingo4-starter/src/main/java/org/apache/camel/component/olingo4/springboot/Olingo4ComponentConfiguration.java
@@ -17,6 +17,7 @@
 package org.apache.camel.component.olingo4.springboot;
 
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.component.olingo4.internal.Olingo4ApiName;
 import org.apache.camel.util.jsse.SSLContextParameters;
 import org.apache.http.HttpHost;
@@ -30,6 +31,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.olingo4")
 public class Olingo4ComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-openshift-starter/src/main/java/org/apache/camel/component/openshift/springboot/OpenShiftComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-openshift-starter/src/main/java/org/apache/camel/component/openshift/springboot/OpenShiftComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-openshift-starter/src/main/java/org/apache/camel/component/openshift/springboot/OpenShiftComponentAutoConfiguration.java
index f86b79b..d08dda4 100644
--- a/platforms/spring-boot/components-starter/camel-openshift-starter/src/main/java/org/apache/camel/component/openshift/springboot/OpenShiftComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-openshift-starter/src/main/java/org/apache/camel/component/openshift/springboot/OpenShiftComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.openshift.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.openshift.OpenShiftComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(OpenShiftComponentAutoConfiguration.Condition.class)
@@ -84,6 +86,7 @@ public class OpenShiftComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-openshift-starter/src/main/java/org/apache/camel/component/openshift/springboot/OpenShiftComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-openshift-starter/src/main/java/org/apache/camel/component/openshift/springboot/OpenShiftComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-openshift-starter/src/main/java/org/apache/camel/component/openshift/springboot/OpenShiftComponentConfiguration.java
index b4ccb37..d0d7a95 100644
--- a/platforms/spring-boot/components-starter/camel-openshift-starter/src/main/java/org/apache/camel/component/openshift/springboot/OpenShiftComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-openshift-starter/src/main/java/org/apache/camel/component/openshift/springboot/OpenShiftComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.openshift.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -23,6 +24,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.openshift")
 public class OpenShiftComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-openstack-starter/src/main/java/org/apache/camel/component/openstack/cinder/springboot/CinderComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-openstack-starter/src/main/java/org/apache/camel/component/openstack/cinder/springboot/CinderComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-openstack-starter/src/main/java/org/apache/camel/component/openstack/cinder/springboot/CinderComponentAutoConfiguration.java
index 4defed1..4890d66 100644
--- a/platforms/spring-boot/components-starter/camel-openstack-starter/src/main/java/org/apache/camel/component/openstack/cinder/springboot/CinderComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-openstack-starter/src/main/java/org/apache/camel/component/openstack/cinder/springboot/CinderComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.openstack.cinder.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.openstack.cinder.CinderComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(CinderComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class CinderComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-openstack-starter/src/main/java/org/apache/camel/component/openstack/glance/springboot/GlanceComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-openstack-starter/src/main/java/org/apache/camel/component/openstack/glance/springboot/GlanceComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-openstack-starter/src/main/java/org/apache/camel/component/openstack/glance/springboot/GlanceComponentAutoConfiguration.java
index a404e64..5ea5b1b 100644
--- a/platforms/spring-boot/components-starter/camel-openstack-starter/src/main/java/org/apache/camel/component/openstack/glance/springboot/GlanceComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-openstack-starter/src/main/java/org/apache/camel/component/openstack/glance/springboot/GlanceComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.openstack.glance.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.openstack.glance.GlanceComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(GlanceComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class GlanceComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-openstack-starter/src/main/java/org/apache/camel/component/openstack/keystone/springboot/KeystoneComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-openstack-starter/src/main/java/org/apache/camel/component/openstack/keystone/springboot/KeystoneComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-openstack-starter/src/main/java/org/apache/camel/component/openstack/keystone/springboot/KeystoneComponentAutoConfiguration.java
index ac5053e..7816c7f 100644
--- a/platforms/spring-boot/components-starter/camel-openstack-starter/src/main/java/org/apache/camel/component/openstack/keystone/springboot/KeystoneComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-openstack-starter/src/main/java/org/apache/camel/component/openstack/keystone/springboot/KeystoneComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.openstack.keystone.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.openstack.keystone.KeystoneComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(KeystoneComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class KeystoneComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-openstack-starter/src/main/java/org/apache/camel/component/openstack/neutron/springboot/NeutronComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-openstack-starter/src/main/java/org/apache/camel/component/openstack/neutron/springboot/NeutronComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-openstack-starter/src/main/java/org/apache/camel/component/openstack/neutron/springboot/NeutronComponentAutoConfiguration.java
index 8d9d54c..69ca7d2 100644
--- a/platforms/spring-boot/components-starter/camel-openstack-starter/src/main/java/org/apache/camel/component/openstack/neutron/springboot/NeutronComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-openstack-starter/src/main/java/org/apache/camel/component/openstack/neutron/springboot/NeutronComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.openstack.neutron.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.openstack.neutron.NeutronComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(NeutronComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class NeutronComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-openstack-starter/src/main/java/org/apache/camel/component/openstack/nova/springboot/NovaComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-openstack-starter/src/main/java/org/apache/camel/component/openstack/nova/springboot/NovaComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-openstack-starter/src/main/java/org/apache/camel/component/openstack/nova/springboot/NovaComponentAutoConfiguration.java
index 59f6f9a..69a2033 100644
--- a/platforms/spring-boot/components-starter/camel-openstack-starter/src/main/java/org/apache/camel/component/openstack/nova/springboot/NovaComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-openstack-starter/src/main/java/org/apache/camel/component/openstack/nova/springboot/NovaComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.openstack.nova.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.openstack.nova.NovaComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(NovaComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class NovaComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-openstack-starter/src/main/java/org/apache/camel/component/openstack/swift/springboot/SwiftComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-openstack-starter/src/main/java/org/apache/camel/component/openstack/swift/springboot/SwiftComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-openstack-starter/src/main/java/org/apache/camel/component/openstack/swift/springboot/SwiftComponentAutoConfiguration.java
index 2a21ed9..49220ba 100644
--- a/platforms/spring-boot/components-starter/camel-openstack-starter/src/main/java/org/apache/camel/component/openstack/swift/springboot/SwiftComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-openstack-starter/src/main/java/org/apache/camel/component/openstack/swift/springboot/SwiftComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.openstack.swift.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.openstack.swift.SwiftComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(SwiftComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class SwiftComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-optaplanner-starter/src/main/java/org/apache/camel/component/optaplanner/springboot/OptaPlannerComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-optaplanner-starter/src/main/java/org/apache/camel/component/optaplanner/springboot/OptaPlannerComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-optaplanner-starter/src/main/java/org/apache/camel/component/optaplanner/springboot/OptaPlannerComponentAutoConfiguration.java
index 62047ab..06ecb5f 100644
--- a/platforms/spring-boot/components-starter/camel-optaplanner-starter/src/main/java/org/apache/camel/component/optaplanner/springboot/OptaPlannerComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-optaplanner-starter/src/main/java/org/apache/camel/component/optaplanner/springboot/OptaPlannerComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.optaplanner.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.optaplanner.OptaPlannerComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(OptaPlannerComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class OptaPlannerComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-paho-starter/src/main/java/org/apache/camel/component/paho/springboot/PahoComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-paho-starter/src/main/java/org/apache/camel/component/paho/springboot/PahoComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-paho-starter/src/main/java/org/apache/camel/component/paho/springboot/PahoComponentAutoConfiguration.java
index e156732..13c6342 100644
--- a/platforms/spring-boot/components-starter/camel-paho-starter/src/main/java/org/apache/camel/component/paho/springboot/PahoComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-paho-starter/src/main/java/org/apache/camel/component/paho/springboot/PahoComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.paho.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.paho.PahoComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(PahoComponentAutoConfiguration.Condition.class)
@@ -83,6 +85,7 @@ public class PahoComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-paho-starter/src/main/java/org/apache/camel/component/paho/springboot/PahoComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-paho-starter/src/main/java/org/apache/camel/component/paho/springboot/PahoComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-paho-starter/src/main/java/org/apache/camel/component/paho/springboot/PahoComponentConfiguration.java
index fcc757d..cf2b40b 100644
--- a/platforms/spring-boot/components-starter/camel-paho-starter/src/main/java/org/apache/camel/component/paho/springboot/PahoComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-paho-starter/src/main/java/org/apache/camel/component/paho/springboot/PahoComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.paho.springboot;
 
+import javax.annotation.Generated;
 import org.eclipse.paho.client.mqttv3.MqttConnectOptions;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 import org.springframework.boot.context.properties.NestedConfigurationProperty;
@@ -26,6 +27,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.paho")
 public class PahoComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-pdf-starter/src/main/java/org/apache/camel/component/pdf/springboot/PdfComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-pdf-starter/src/main/java/org/apache/camel/component/pdf/springboot/PdfComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-pdf-starter/src/main/java/org/apache/camel/component/pdf/springboot/PdfComponentAutoConfiguration.java
index 8076b67..c9098e9 100644
--- a/platforms/spring-boot/components-starter/camel-pdf-starter/src/main/java/org/apache/camel/component/pdf/springboot/PdfComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-pdf-starter/src/main/java/org/apache/camel/component/pdf/springboot/PdfComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.pdf.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.pdf.PdfComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(PdfComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class PdfComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-pgevent-starter/src/main/java/org/apache/camel/component/pgevent/springboot/PgEventComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-pgevent-starter/src/main/java/org/apache/camel/component/pgevent/springboot/PgEventComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-pgevent-starter/src/main/java/org/apache/camel/component/pgevent/springboot/PgEventComponentAutoConfiguration.java
index 7314c24..04998ad 100644
--- a/platforms/spring-boot/components-starter/camel-pgevent-starter/src/main/java/org/apache/camel/component/pgevent/springboot/PgEventComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-pgevent-starter/src/main/java/org/apache/camel/component/pgevent/springboot/PgEventComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.pgevent.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.pgevent.PgEventComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(PgEventComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class PgEventComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-printer-starter/src/main/java/org/apache/camel/component/printer/springboot/PrinterComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-printer-starter/src/main/java/org/apache/camel/component/printer/springboot/PrinterComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-printer-starter/src/main/java/org/apache/camel/component/printer/springboot/PrinterComponentAutoConfiguration.java
index a9db24a..281f1d1 100644
--- a/platforms/spring-boot/components-starter/camel-printer-starter/src/main/java/org/apache/camel/component/printer/springboot/PrinterComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-printer-starter/src/main/java/org/apache/camel/component/printer/springboot/PrinterComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.printer.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.printer.PrinterComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(PrinterComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class PrinterComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-protobuf-starter/src/main/java/org/apache/camel/dataformat/protobuf/springboot/ProtobufDataFormatAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-protobuf-starter/src/main/java/org/apache/camel/dataformat/protobuf/springboot/ProtobufDataFormatAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-protobuf-starter/src/main/java/org/apache/camel/dataformat/protobuf/springboot/ProtobufDataFormatAutoConfiguration.java
index 417d610..20ae50e 100644
--- a/platforms/spring-boot/components-starter/camel-protobuf-starter/src/main/java/org/apache/camel/dataformat/protobuf/springboot/ProtobufDataFormatAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-protobuf-starter/src/main/java/org/apache/camel/dataformat/protobuf/springboot/ProtobufDataFormatAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.dataformat.protobuf.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.CamelContextAware;
 import org.apache.camel.RuntimeCamelException;
@@ -43,6 +44,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(ProtobufDataFormatAutoConfiguration.Condition.class)
@@ -82,6 +84,7 @@ public class ProtobufDataFormatAutoConfiguration {
         };
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-protobuf-starter/src/main/java/org/apache/camel/dataformat/protobuf/springboot/ProtobufDataFormatConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-protobuf-starter/src/main/java/org/apache/camel/dataformat/protobuf/springboot/ProtobufDataFormatConfiguration.java b/platforms/spring-boot/components-starter/camel-protobuf-starter/src/main/java/org/apache/camel/dataformat/protobuf/springboot/ProtobufDataFormatConfiguration.java
index 85a6319..74ed36a 100644
--- a/platforms/spring-boot/components-starter/camel-protobuf-starter/src/main/java/org/apache/camel/dataformat/protobuf/springboot/ProtobufDataFormatConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-protobuf-starter/src/main/java/org/apache/camel/dataformat/protobuf/springboot/ProtobufDataFormatConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.dataformat.protobuf.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.dataformat.protobuf.ProtobufDataFormat;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
@@ -24,6 +25,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.dataformat.protobuf")
 public class ProtobufDataFormatConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-pubnub-starter/src/main/java/org/apache/camel/component/pubnub/springboot/PubNubComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-pubnub-starter/src/main/java/org/apache/camel/component/pubnub/springboot/PubNubComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-pubnub-starter/src/main/java/org/apache/camel/component/pubnub/springboot/PubNubComponentAutoConfiguration.java
index 897f9d4..671c1ce 100644
--- a/platforms/spring-boot/components-starter/camel-pubnub-starter/src/main/java/org/apache/camel/component/pubnub/springboot/PubNubComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-pubnub-starter/src/main/java/org/apache/camel/component/pubnub/springboot/PubNubComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.pubnub.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.pubnub.PubNubComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(PubNubComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class PubNubComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-quartz2-starter/src/main/java/org/apache/camel/component/quartz2/springboot/QuartzComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-quartz2-starter/src/main/java/org/apache/camel/component/quartz2/springboot/QuartzComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-quartz2-starter/src/main/java/org/apache/camel/component/quartz2/springboot/QuartzComponentAutoConfiguration.java
index 0714400..058162a 100644
--- a/platforms/spring-boot/components-starter/camel-quartz2-starter/src/main/java/org/apache/camel/component/quartz2/springboot/QuartzComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-quartz2-starter/src/main/java/org/apache/camel/component/quartz2/springboot/QuartzComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.quartz2.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.quartz2.QuartzComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(QuartzComponentAutoConfiguration.Condition.class)
@@ -83,6 +85,7 @@ public class QuartzComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-quartz2-starter/src/main/java/org/apache/camel/component/quartz2/springboot/QuartzComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-quartz2-starter/src/main/java/org/apache/camel/component/quartz2/springboot/QuartzComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-quartz2-starter/src/main/java/org/apache/camel/component/quartz2/springboot/QuartzComponentConfiguration.java
index 55ae924..b064f26 100644
--- a/platforms/spring-boot/components-starter/camel-quartz2-starter/src/main/java/org/apache/camel/component/quartz2/springboot/QuartzComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-quartz2-starter/src/main/java/org/apache/camel/component/quartz2/springboot/QuartzComponentConfiguration.java
@@ -17,6 +17,7 @@
 package org.apache.camel.component.quartz2.springboot;
 
 import java.util.Properties;
+import javax.annotation.Generated;
 import org.quartz.Scheduler;
 import org.quartz.SchedulerFactory;
 import org.springframework.boot.context.properties.ConfigurationProperties;
@@ -27,6 +28,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.quartz2")
 public class QuartzComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-quickfix-starter/src/main/java/org/apache/camel/component/quickfixj/springboot/QuickfixjComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-quickfix-starter/src/main/java/org/apache/camel/component/quickfixj/springboot/QuickfixjComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-quickfix-starter/src/main/java/org/apache/camel/component/quickfixj/springboot/QuickfixjComponentAutoConfiguration.java
index 5934230..1d6b54f 100644
--- a/platforms/spring-boot/components-starter/camel-quickfix-starter/src/main/java/org/apache/camel/component/quickfixj/springboot/QuickfixjComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-quickfix-starter/src/main/java/org/apache/camel/component/quickfixj/springboot/QuickfixjComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.quickfixj.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.quickfixj.QuickfixjComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(QuickfixjComponentAutoConfiguration.Condition.class)
@@ -84,6 +86,7 @@ public class QuickfixjComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-quickfix-starter/src/main/java/org/apache/camel/component/quickfixj/springboot/QuickfixjComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-quickfix-starter/src/main/java/org/apache/camel/component/quickfixj/springboot/QuickfixjComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-quickfix-starter/src/main/java/org/apache/camel/component/quickfixj/springboot/QuickfixjComponentConfiguration.java
index de88743..14aadb0 100644
--- a/platforms/spring-boot/components-starter/camel-quickfix-starter/src/main/java/org/apache/camel/component/quickfixj/springboot/QuickfixjComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-quickfix-starter/src/main/java/org/apache/camel/component/quickfixj/springboot/QuickfixjComponentConfiguration.java
@@ -17,6 +17,7 @@
 package org.apache.camel.component.quickfixj.springboot;
 
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.component.quickfixj.QuickfixjConfiguration;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 import org.springframework.boot.context.properties.NestedConfigurationProperty;
@@ -30,6 +31,7 @@ import quickfix.MessageStoreFactory;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.quickfix")
 public class QuickfixjComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-rabbitmq-starter/src/main/java/org/apache/camel/component/rabbitmq/springboot/RabbitMQComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-rabbitmq-starter/src/main/java/org/apache/camel/component/rabbitmq/springboot/RabbitMQComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-rabbitmq-starter/src/main/java/org/apache/camel/component/rabbitmq/springboot/RabbitMQComponentAutoConfiguration.java
index fa00891..fa5e7d9 100644
--- a/platforms/spring-boot/components-starter/camel-rabbitmq-starter/src/main/java/org/apache/camel/component/rabbitmq/springboot/RabbitMQComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-rabbitmq-starter/src/main/java/org/apache/camel/component/rabbitmq/springboot/RabbitMQComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.rabbitmq.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.rabbitmq.RabbitMQComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(RabbitMQComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class RabbitMQComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-reactive-streams-starter/src/main/java/org/apache/camel/component/reactive/streams/springboot/ReactiveStreamsComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-reactive-streams-starter/src/main/java/org/apache/camel/component/reactive/streams/springboot/ReactiveStreamsComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-reactive-streams-starter/src/main/java/org/apache/camel/component/reactive/streams/springboot/ReactiveStreamsComponentAutoConfiguration.java
index 10f6dad..2e26698 100644
--- a/platforms/spring-boot/components-starter/camel-reactive-streams-starter/src/main/java/org/apache/camel/component/reactive/streams/springboot/ReactiveStreamsComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-reactive-streams-starter/src/main/java/org/apache/camel/component/reactive/streams/springboot/ReactiveStreamsComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.reactive.streams.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.reactive.streams.ReactiveStreamsComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(ReactiveStreamsComponentAutoConfiguration.Condition.class)
@@ -85,6 +87,7 @@ public class ReactiveStreamsComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-reactive-streams-starter/src/main/java/org/apache/camel/component/reactive/streams/springboot/ReactiveStreamsComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-reactive-streams-starter/src/main/java/org/apache/camel/component/reactive/streams/springboot/ReactiveStreamsComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-reactive-streams-starter/src/main/java/org/apache/camel/component/reactive/streams/springboot/ReactiveStreamsComponentConfiguration.java
index 5fb6dd4..d75bcbd 100644
--- a/platforms/spring-boot/components-starter/camel-reactive-streams-starter/src/main/java/org/apache/camel/component/reactive/streams/springboot/ReactiveStreamsComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-reactive-streams-starter/src/main/java/org/apache/camel/component/reactive/streams/springboot/ReactiveStreamsComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.reactive.streams.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.component.reactive.streams.ReactiveStreamsBackpressureStrategy;
 import org.apache.camel.component.reactive.streams.ReactiveStreamsComponent;
 import org.springframework.boot.context.properties.ConfigurationProperties;
@@ -25,6 +26,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.reactive-streams")
 public class ReactiveStreamsComponentConfiguration {
 


[09/13] camel git commit: CAMEL-11165 Add @Generated annotation to code g...

Posted by zr...@apache.org.
http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/simple/springboot/SimpleLanguageAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/simple/springboot/SimpleLanguageAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/simple/springboot/SimpleLanguageAutoConfiguration.java
index e793c92..dadfb85 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/simple/springboot/SimpleLanguageAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/simple/springboot/SimpleLanguageAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.language.simple.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.CamelContextAware;
 import org.apache.camel.language.simple.SimpleLanguage;
@@ -41,6 +42,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(SimpleLanguageAutoConfiguration.Condition.class)
@@ -70,6 +72,7 @@ public class SimpleLanguageAutoConfiguration {
         return language;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/simple/springboot/SimpleLanguageConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/simple/springboot/SimpleLanguageConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/simple/springboot/SimpleLanguageConfiguration.java
index 4c1e2e9..f987583 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/simple/springboot/SimpleLanguageConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/simple/springboot/SimpleLanguageConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.language.simple.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -23,6 +24,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.language.simple")
 public class SimpleLanguageConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/tokenizer/springboot/TokenizeLanguageAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/tokenizer/springboot/TokenizeLanguageAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/tokenizer/springboot/TokenizeLanguageAutoConfiguration.java
index 1dbb098..41c56f6 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/tokenizer/springboot/TokenizeLanguageAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/tokenizer/springboot/TokenizeLanguageAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.language.tokenizer.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.CamelContextAware;
 import org.apache.camel.language.tokenizer.TokenizeLanguage;
@@ -41,6 +42,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(TokenizeLanguageAutoConfiguration.Condition.class)
@@ -71,6 +73,7 @@ public class TokenizeLanguageAutoConfiguration {
         return language;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/tokenizer/springboot/TokenizeLanguageConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/tokenizer/springboot/TokenizeLanguageConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/tokenizer/springboot/TokenizeLanguageConfiguration.java
index 9a30c9b..e74795d 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/tokenizer/springboot/TokenizeLanguageConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/tokenizer/springboot/TokenizeLanguageConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.language.tokenizer.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -23,6 +24,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.language.tokenize")
 public class TokenizeLanguageConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/tokenizer/springboot/XMLTokenizeLanguageAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/tokenizer/springboot/XMLTokenizeLanguageAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/tokenizer/springboot/XMLTokenizeLanguageAutoConfiguration.java
index d346612..52ca01e 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/tokenizer/springboot/XMLTokenizeLanguageAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/tokenizer/springboot/XMLTokenizeLanguageAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.language.tokenizer.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.CamelContextAware;
 import org.apache.camel.language.tokenizer.XMLTokenizeLanguage;
@@ -41,6 +42,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(XMLTokenizeLanguageAutoConfiguration.Condition.class)
@@ -71,6 +73,7 @@ public class XMLTokenizeLanguageAutoConfiguration {
         return language;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/tokenizer/springboot/XMLTokenizeLanguageConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/tokenizer/springboot/XMLTokenizeLanguageConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/tokenizer/springboot/XMLTokenizeLanguageConfiguration.java
index 10f37c7..0c00c48 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/tokenizer/springboot/XMLTokenizeLanguageConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/tokenizer/springboot/XMLTokenizeLanguageConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.language.tokenizer.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -23,6 +24,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.language.xtokenize")
 public class XMLTokenizeLanguageConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/xpath/springboot/XPathLanguageAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/xpath/springboot/XPathLanguageAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/xpath/springboot/XPathLanguageAutoConfiguration.java
index dc8526d..30b2c06 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/xpath/springboot/XPathLanguageAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/xpath/springboot/XPathLanguageAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.language.xpath.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.CamelContextAware;
 import org.apache.camel.language.xpath.XPathLanguage;
@@ -41,6 +42,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(XPathLanguageAutoConfiguration.Condition.class)
@@ -70,6 +72,7 @@ public class XPathLanguageAutoConfiguration {
         return language;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/xpath/springboot/XPathLanguageConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/xpath/springboot/XPathLanguageConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/xpath/springboot/XPathLanguageConfiguration.java
index efa0046..ae8e690 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/xpath/springboot/XPathLanguageConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/language/xpath/springboot/XPathLanguageConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.language.xpath.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -23,6 +24,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.language.xpath")
 public class XPathLanguageConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/model/cloud/springboot/ConsulServiceCallServiceDiscoveryConfigurationCommon.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/model/cloud/springboot/ConsulServiceCallServiceDiscoveryConfigurationCommon.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/model/cloud/springboot/ConsulServiceCallServiceDiscoveryConfigurationCommon.java
index cc8ae52..f0212f7 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/model/cloud/springboot/ConsulServiceCallServiceDiscoveryConfigurationCommon.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/model/cloud/springboot/ConsulServiceCallServiceDiscoveryConfigurationCommon.java
@@ -17,10 +17,12 @@
 package org.apache.camel.model.cloud.springboot;
 
 import java.util.Map;
+import javax.annotation.Generated;
 
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 public class ConsulServiceCallServiceDiscoveryConfigurationCommon {
 
     /**

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/model/cloud/springboot/ConsulServiceCallServiceDiscoveryConfigurationProperties.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/model/cloud/springboot/ConsulServiceCallServiceDiscoveryConfigurationProperties.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/model/cloud/springboot/ConsulServiceCallServiceDiscoveryConfigurationProperties.java
index 57d2588..3df09fb 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/model/cloud/springboot/ConsulServiceCallServiceDiscoveryConfigurationProperties.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/model/cloud/springboot/ConsulServiceCallServiceDiscoveryConfigurationProperties.java
@@ -18,8 +18,10 @@ package org.apache.camel.model.cloud.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.cloud.consul.service-discovery")
 public class ConsulServiceCallServiceDiscoveryConfigurationProperties
         extends

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/model/cloud/springboot/DnsServiceCallServiceDiscoveryConfigurationCommon.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/model/cloud/springboot/DnsServiceCallServiceDiscoveryConfigurationCommon.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/model/cloud/springboot/DnsServiceCallServiceDiscoveryConfigurationCommon.java
index 42fe393..8a9bc7a 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/model/cloud/springboot/DnsServiceCallServiceDiscoveryConfigurationCommon.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/model/cloud/springboot/DnsServiceCallServiceDiscoveryConfigurationCommon.java
@@ -17,10 +17,12 @@
 package org.apache.camel.model.cloud.springboot;
 
 import java.util.Map;
+import javax.annotation.Generated;
 
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 public class DnsServiceCallServiceDiscoveryConfigurationCommon {
 
     /**

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/model/cloud/springboot/DnsServiceCallServiceDiscoveryConfigurationProperties.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/model/cloud/springboot/DnsServiceCallServiceDiscoveryConfigurationProperties.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/model/cloud/springboot/DnsServiceCallServiceDiscoveryConfigurationProperties.java
index 76f9c7a..1d83f91 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/model/cloud/springboot/DnsServiceCallServiceDiscoveryConfigurationProperties.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/model/cloud/springboot/DnsServiceCallServiceDiscoveryConfigurationProperties.java
@@ -18,8 +18,10 @@ package org.apache.camel.model.cloud.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.cloud.dns.service-discovery")
 public class DnsServiceCallServiceDiscoveryConfigurationProperties
         extends

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/model/cloud/springboot/EtcdServiceCallServiceDiscoveryConfigurationCommon.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/model/cloud/springboot/EtcdServiceCallServiceDiscoveryConfigurationCommon.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/model/cloud/springboot/EtcdServiceCallServiceDiscoveryConfigurationCommon.java
index 0109284..4f7f946 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/model/cloud/springboot/EtcdServiceCallServiceDiscoveryConfigurationCommon.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/model/cloud/springboot/EtcdServiceCallServiceDiscoveryConfigurationCommon.java
@@ -17,10 +17,12 @@
 package org.apache.camel.model.cloud.springboot;
 
 import java.util.Map;
+import javax.annotation.Generated;
 
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 public class EtcdServiceCallServiceDiscoveryConfigurationCommon {
 
     /**

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/model/cloud/springboot/EtcdServiceCallServiceDiscoveryConfigurationProperties.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/model/cloud/springboot/EtcdServiceCallServiceDiscoveryConfigurationProperties.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/model/cloud/springboot/EtcdServiceCallServiceDiscoveryConfigurationProperties.java
index 9d6353d..357863d 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/model/cloud/springboot/EtcdServiceCallServiceDiscoveryConfigurationProperties.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/model/cloud/springboot/EtcdServiceCallServiceDiscoveryConfigurationProperties.java
@@ -18,8 +18,10 @@ package org.apache.camel.model.cloud.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.cloud.etcd.service-discovery")
 public class EtcdServiceCallServiceDiscoveryConfigurationProperties
         extends

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/model/cloud/springboot/KubernetesServiceCallServiceDiscoveryConfigurationCommon.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/model/cloud/springboot/KubernetesServiceCallServiceDiscoveryConfigurationCommon.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/model/cloud/springboot/KubernetesServiceCallServiceDiscoveryConfigurationCommon.java
index 5ffac09..cdfd5a9 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/model/cloud/springboot/KubernetesServiceCallServiceDiscoveryConfigurationCommon.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/model/cloud/springboot/KubernetesServiceCallServiceDiscoveryConfigurationCommon.java
@@ -17,10 +17,12 @@
 package org.apache.camel.model.cloud.springboot;
 
 import java.util.Map;
+import javax.annotation.Generated;
 
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 public class KubernetesServiceCallServiceDiscoveryConfigurationCommon {
 
     /**

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/model/cloud/springboot/KubernetesServiceCallServiceDiscoveryConfigurationProperties.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/model/cloud/springboot/KubernetesServiceCallServiceDiscoveryConfigurationProperties.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/model/cloud/springboot/KubernetesServiceCallServiceDiscoveryConfigurationProperties.java
index 4807d33..76db8f9 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/model/cloud/springboot/KubernetesServiceCallServiceDiscoveryConfigurationProperties.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/model/cloud/springboot/KubernetesServiceCallServiceDiscoveryConfigurationProperties.java
@@ -18,8 +18,10 @@ package org.apache.camel.model.cloud.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.cloud.kubernetes.service-discovery")
 public class KubernetesServiceCallServiceDiscoveryConfigurationProperties
         extends

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/model/cloud/springboot/RibbonServiceCallLoadBalancerConfigurationCommon.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/model/cloud/springboot/RibbonServiceCallLoadBalancerConfigurationCommon.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/model/cloud/springboot/RibbonServiceCallLoadBalancerConfigurationCommon.java
index d45c3cc..d25dc3d 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/model/cloud/springboot/RibbonServiceCallLoadBalancerConfigurationCommon.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/model/cloud/springboot/RibbonServiceCallLoadBalancerConfigurationCommon.java
@@ -17,10 +17,12 @@
 package org.apache.camel.model.cloud.springboot;
 
 import java.util.Map;
+import javax.annotation.Generated;
 
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 public class RibbonServiceCallLoadBalancerConfigurationCommon {
 
     /**

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/model/cloud/springboot/RibbonServiceCallLoadBalancerConfigurationProperties.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/model/cloud/springboot/RibbonServiceCallLoadBalancerConfigurationProperties.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/model/cloud/springboot/RibbonServiceCallLoadBalancerConfigurationProperties.java
index a826984..d0f230a 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/model/cloud/springboot/RibbonServiceCallLoadBalancerConfigurationProperties.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/model/cloud/springboot/RibbonServiceCallLoadBalancerConfigurationProperties.java
@@ -18,8 +18,10 @@ package org.apache.camel.model.cloud.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.cloud.ribbon.load-balancer")
 public class RibbonServiceCallLoadBalancerConfigurationProperties
         extends

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/model/rest/springboot/RestConfigurationDefinitionAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/model/rest/springboot/RestConfigurationDefinitionAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/model/rest/springboot/RestConfigurationDefinitionAutoConfiguration.java
index 3ea9cbe..067858c 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/model/rest/springboot/RestConfigurationDefinitionAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/model/rest/springboot/RestConfigurationDefinitionAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.model.rest.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.model.rest.RestConstants;
 import org.apache.camel.spi.RestConfiguration;
@@ -36,6 +37,7 @@ import org.springframework.context.annotation.Lazy;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @ConditionalOnProperty(name = "camel.rest.enabled", matchIfMissing = true)

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/model/rest/springboot/RestConfigurationDefinitionProperties.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/model/rest/springboot/RestConfigurationDefinitionProperties.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/model/rest/springboot/RestConfigurationDefinitionProperties.java
index ec134c2..174134e 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/model/rest/springboot/RestConfigurationDefinitionProperties.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/model/rest/springboot/RestConfigurationDefinitionProperties.java
@@ -17,6 +17,7 @@
 package org.apache.camel.model.rest.springboot;
 
 import java.util.List;
+import javax.annotation.Generated;
 import org.apache.camel.model.rest.RestBindingMode;
 import org.apache.camel.model.rest.RestHostNameResolver;
 import org.apache.camel.model.rest.RestPropertyDefinition;
@@ -27,6 +28,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.rest")
 public class RestConfigurationDefinitionProperties {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/model/springboot/HystrixConfigurationDefinitionCommon.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/model/springboot/HystrixConfigurationDefinitionCommon.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/model/springboot/HystrixConfigurationDefinitionCommon.java
index 7947788..acf095b 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/model/springboot/HystrixConfigurationDefinitionCommon.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/model/springboot/HystrixConfigurationDefinitionCommon.java
@@ -15,11 +15,15 @@
  * limitations under the License.
  */
 package org.apache.camel.model.springboot;
+
+import javax.annotation.Generated;
+
 /**
  * Hystrix Circuit Breaker EIP configuration
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 public class HystrixConfigurationDefinitionCommon {
 
     /**

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/model/springboot/HystrixConfigurationDefinitionProperties.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/model/springboot/HystrixConfigurationDefinitionProperties.java b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/model/springboot/HystrixConfigurationDefinitionProperties.java
index 5cf7c99..706b8a7 100644
--- a/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/model/springboot/HystrixConfigurationDefinitionProperties.java
+++ b/platforms/spring-boot/components-starter/camel-core-starter/src/main/java/org/apache/camel/model/springboot/HystrixConfigurationDefinitionProperties.java
@@ -18,8 +18,10 @@ package org.apache.camel.model.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.hystrix")
 public class HystrixConfigurationDefinitionProperties
         extends

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-couchbase-starter/src/main/java/org/apache/camel/component/couchbase/springboot/CouchbaseComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-couchbase-starter/src/main/java/org/apache/camel/component/couchbase/springboot/CouchbaseComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-couchbase-starter/src/main/java/org/apache/camel/component/couchbase/springboot/CouchbaseComponentAutoConfiguration.java
index e9bdd3b..2c5f4c8 100644
--- a/platforms/spring-boot/components-starter/camel-couchbase-starter/src/main/java/org/apache/camel/component/couchbase/springboot/CouchbaseComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-couchbase-starter/src/main/java/org/apache/camel/component/couchbase/springboot/CouchbaseComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.couchbase.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.couchbase.CouchbaseComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(CouchbaseComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class CouchbaseComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-couchdb-starter/src/main/java/org/apache/camel/component/couchdb/springboot/CouchDbComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-couchdb-starter/src/main/java/org/apache/camel/component/couchdb/springboot/CouchDbComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-couchdb-starter/src/main/java/org/apache/camel/component/couchdb/springboot/CouchDbComponentAutoConfiguration.java
index e5ebbc6..dbd2332 100644
--- a/platforms/spring-boot/components-starter/camel-couchdb-starter/src/main/java/org/apache/camel/component/couchdb/springboot/CouchDbComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-couchdb-starter/src/main/java/org/apache/camel/component/couchdb/springboot/CouchDbComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.couchdb.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.couchdb.CouchDbComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(CouchDbComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class CouchDbComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-crypto-starter/src/main/java/org/apache/camel/component/crypto/springboot/DigitalSignatureComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-crypto-starter/src/main/java/org/apache/camel/component/crypto/springboot/DigitalSignatureComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-crypto-starter/src/main/java/org/apache/camel/component/crypto/springboot/DigitalSignatureComponentAutoConfiguration.java
index 59a7117..403dbeb 100644
--- a/platforms/spring-boot/components-starter/camel-crypto-starter/src/main/java/org/apache/camel/component/crypto/springboot/DigitalSignatureComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-crypto-starter/src/main/java/org/apache/camel/component/crypto/springboot/DigitalSignatureComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.crypto.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.crypto.DigitalSignatureComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(DigitalSignatureComponentAutoConfiguration.Condition.class)
@@ -85,6 +87,7 @@ public class DigitalSignatureComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-crypto-starter/src/main/java/org/apache/camel/component/crypto/springboot/DigitalSignatureComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-crypto-starter/src/main/java/org/apache/camel/component/crypto/springboot/DigitalSignatureComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-crypto-starter/src/main/java/org/apache/camel/component/crypto/springboot/DigitalSignatureComponentConfiguration.java
index 34a0e4c..8c314a6 100644
--- a/platforms/spring-boot/components-starter/camel-crypto-starter/src/main/java/org/apache/camel/component/crypto/springboot/DigitalSignatureComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-crypto-starter/src/main/java/org/apache/camel/component/crypto/springboot/DigitalSignatureComponentConfiguration.java
@@ -21,6 +21,7 @@ import java.security.PrivateKey;
 import java.security.PublicKey;
 import java.security.SecureRandom;
 import java.security.cert.Certificate;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.crypto.CryptoOperation;
 import org.apache.camel.util.jsse.KeyStoreParameters;
@@ -33,6 +34,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.crypto")
 public class DigitalSignatureComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-crypto-starter/src/main/java/org/apache/camel/converter/crypto/springboot/CryptoDataFormatAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-crypto-starter/src/main/java/org/apache/camel/converter/crypto/springboot/CryptoDataFormatAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-crypto-starter/src/main/java/org/apache/camel/converter/crypto/springboot/CryptoDataFormatAutoConfiguration.java
index 4b13322..62d9a5f 100644
--- a/platforms/spring-boot/components-starter/camel-crypto-starter/src/main/java/org/apache/camel/converter/crypto/springboot/CryptoDataFormatAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-crypto-starter/src/main/java/org/apache/camel/converter/crypto/springboot/CryptoDataFormatAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.converter.crypto.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.CamelContextAware;
 import org.apache.camel.RuntimeCamelException;
@@ -43,6 +44,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(CryptoDataFormatAutoConfiguration.Condition.class)
@@ -82,6 +84,7 @@ public class CryptoDataFormatAutoConfiguration {
         };
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-crypto-starter/src/main/java/org/apache/camel/converter/crypto/springboot/CryptoDataFormatConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-crypto-starter/src/main/java/org/apache/camel/converter/crypto/springboot/CryptoDataFormatConfiguration.java b/platforms/spring-boot/components-starter/camel-crypto-starter/src/main/java/org/apache/camel/converter/crypto/springboot/CryptoDataFormatConfiguration.java
index 867db4b..855c3dd 100644
--- a/platforms/spring-boot/components-starter/camel-crypto-starter/src/main/java/org/apache/camel/converter/crypto/springboot/CryptoDataFormatConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-crypto-starter/src/main/java/org/apache/camel/converter/crypto/springboot/CryptoDataFormatConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.converter.crypto.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -23,6 +24,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.dataformat.crypto")
 public class CryptoDataFormatConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-crypto-starter/src/main/java/org/apache/camel/converter/crypto/springboot/PGPDataFormatAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-crypto-starter/src/main/java/org/apache/camel/converter/crypto/springboot/PGPDataFormatAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-crypto-starter/src/main/java/org/apache/camel/converter/crypto/springboot/PGPDataFormatAutoConfiguration.java
index 8dd787a..7b0d209 100644
--- a/platforms/spring-boot/components-starter/camel-crypto-starter/src/main/java/org/apache/camel/converter/crypto/springboot/PGPDataFormatAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-crypto-starter/src/main/java/org/apache/camel/converter/crypto/springboot/PGPDataFormatAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.converter.crypto.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.CamelContextAware;
 import org.apache.camel.RuntimeCamelException;
@@ -43,6 +44,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(PGPDataFormatAutoConfiguration.Condition.class)
@@ -82,6 +84,7 @@ public class PGPDataFormatAutoConfiguration {
         };
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-crypto-starter/src/main/java/org/apache/camel/converter/crypto/springboot/PGPDataFormatConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-crypto-starter/src/main/java/org/apache/camel/converter/crypto/springboot/PGPDataFormatConfiguration.java b/platforms/spring-boot/components-starter/camel-crypto-starter/src/main/java/org/apache/camel/converter/crypto/springboot/PGPDataFormatConfiguration.java
index 4e39f7f..5f55ec7 100644
--- a/platforms/spring-boot/components-starter/camel-crypto-starter/src/main/java/org/apache/camel/converter/crypto/springboot/PGPDataFormatConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-crypto-starter/src/main/java/org/apache/camel/converter/crypto/springboot/PGPDataFormatConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.converter.crypto.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -23,6 +24,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.dataformat.pgp")
 public class PGPDataFormatConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-csv-starter/src/main/java/org/apache/camel/dataformat/csv/springboot/CsvDataFormatAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-csv-starter/src/main/java/org/apache/camel/dataformat/csv/springboot/CsvDataFormatAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-csv-starter/src/main/java/org/apache/camel/dataformat/csv/springboot/CsvDataFormatAutoConfiguration.java
index 0eccf24..6845752 100644
--- a/platforms/spring-boot/components-starter/camel-csv-starter/src/main/java/org/apache/camel/dataformat/csv/springboot/CsvDataFormatAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-csv-starter/src/main/java/org/apache/camel/dataformat/csv/springboot/CsvDataFormatAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.dataformat.csv.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.CamelContextAware;
 import org.apache.camel.RuntimeCamelException;
@@ -43,6 +44,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(CsvDataFormatAutoConfiguration.Condition.class)
@@ -82,6 +84,7 @@ public class CsvDataFormatAutoConfiguration {
         };
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-csv-starter/src/main/java/org/apache/camel/dataformat/csv/springboot/CsvDataFormatConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-csv-starter/src/main/java/org/apache/camel/dataformat/csv/springboot/CsvDataFormatConfiguration.java b/platforms/spring-boot/components-starter/camel-csv-starter/src/main/java/org/apache/camel/dataformat/csv/springboot/CsvDataFormatConfiguration.java
index bf5f8c4..0d08c6f 100644
--- a/platforms/spring-boot/components-starter/camel-csv-starter/src/main/java/org/apache/camel/dataformat/csv/springboot/CsvDataFormatConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-csv-starter/src/main/java/org/apache/camel/dataformat/csv/springboot/CsvDataFormatConfiguration.java
@@ -17,6 +17,7 @@
 package org.apache.camel.dataformat.csv.springboot;
 
 import java.util.List;
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -24,6 +25,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.dataformat.csv")
 public class CsvDataFormatConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-cxf-starter/src/main/java/org/apache/camel/component/cxf/jaxrs/springboot/CxfRsComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-cxf-starter/src/main/java/org/apache/camel/component/cxf/jaxrs/springboot/CxfRsComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-cxf-starter/src/main/java/org/apache/camel/component/cxf/jaxrs/springboot/CxfRsComponentAutoConfiguration.java
index 370db9a..395254b 100644
--- a/platforms/spring-boot/components-starter/camel-cxf-starter/src/main/java/org/apache/camel/component/cxf/jaxrs/springboot/CxfRsComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-cxf-starter/src/main/java/org/apache/camel/component/cxf/jaxrs/springboot/CxfRsComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.cxf.jaxrs.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.cxf.jaxrs.CxfRsComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(CxfRsComponentAutoConfiguration.Condition.class)
@@ -83,6 +85,7 @@ public class CxfRsComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-cxf-starter/src/main/java/org/apache/camel/component/cxf/jaxrs/springboot/CxfRsComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-cxf-starter/src/main/java/org/apache/camel/component/cxf/jaxrs/springboot/CxfRsComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-cxf-starter/src/main/java/org/apache/camel/component/cxf/jaxrs/springboot/CxfRsComponentConfiguration.java
index 3667f87..8f2d390 100644
--- a/platforms/spring-boot/components-starter/camel-cxf-starter/src/main/java/org/apache/camel/component/cxf/jaxrs/springboot/CxfRsComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-cxf-starter/src/main/java/org/apache/camel/component/cxf/jaxrs/springboot/CxfRsComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.cxf.jaxrs.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.spi.HeaderFilterStrategy;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 import org.springframework.boot.context.properties.NestedConfigurationProperty;
@@ -25,6 +26,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.cxfrs")
 public class CxfRsComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-cxf-starter/src/main/java/org/apache/camel/component/cxf/springboot/CxfComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-cxf-starter/src/main/java/org/apache/camel/component/cxf/springboot/CxfComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-cxf-starter/src/main/java/org/apache/camel/component/cxf/springboot/CxfComponentAutoConfiguration.java
index 1a569d1..f0d939a 100644
--- a/platforms/spring-boot/components-starter/camel-cxf-starter/src/main/java/org/apache/camel/component/cxf/springboot/CxfComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-cxf-starter/src/main/java/org/apache/camel/component/cxf/springboot/CxfComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.cxf.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.cxf.CxfComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(CxfComponentAutoConfiguration.Condition.class)
@@ -83,6 +85,7 @@ public class CxfComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-cxf-starter/src/main/java/org/apache/camel/component/cxf/springboot/CxfComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-cxf-starter/src/main/java/org/apache/camel/component/cxf/springboot/CxfComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-cxf-starter/src/main/java/org/apache/camel/component/cxf/springboot/CxfComponentConfiguration.java
index 740acf0..7d7d474 100644
--- a/platforms/spring-boot/components-starter/camel-cxf-starter/src/main/java/org/apache/camel/component/cxf/springboot/CxfComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-cxf-starter/src/main/java/org/apache/camel/component/cxf/springboot/CxfComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.cxf.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.spi.HeaderFilterStrategy;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 import org.springframework.boot.context.properties.NestedConfigurationProperty;
@@ -25,6 +26,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.cxf")
 public class CxfComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-digitalocean-starter/src/main/java/org/apache/camel/component/digitalocean/springboot/DigitalOceanComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-digitalocean-starter/src/main/java/org/apache/camel/component/digitalocean/springboot/DigitalOceanComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-digitalocean-starter/src/main/java/org/apache/camel/component/digitalocean/springboot/DigitalOceanComponentAutoConfiguration.java
index c095a33..d9995b3 100644
--- a/platforms/spring-boot/components-starter/camel-digitalocean-starter/src/main/java/org/apache/camel/component/digitalocean/springboot/DigitalOceanComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-digitalocean-starter/src/main/java/org/apache/camel/component/digitalocean/springboot/DigitalOceanComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.digitalocean.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.digitalocean.DigitalOceanComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(DigitalOceanComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class DigitalOceanComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-disruptor-starter/src/main/java/org/apache/camel/component/disruptor/springboot/DisruptorComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-disruptor-starter/src/main/java/org/apache/camel/component/disruptor/springboot/DisruptorComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-disruptor-starter/src/main/java/org/apache/camel/component/disruptor/springboot/DisruptorComponentAutoConfiguration.java
index 2ede6c8..9e25274 100644
--- a/platforms/spring-boot/components-starter/camel-disruptor-starter/src/main/java/org/apache/camel/component/disruptor/springboot/DisruptorComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-disruptor-starter/src/main/java/org/apache/camel/component/disruptor/springboot/DisruptorComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.disruptor.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.disruptor.DisruptorComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(DisruptorComponentAutoConfiguration.Condition.class)
@@ -84,6 +86,7 @@ public class DisruptorComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-disruptor-starter/src/main/java/org/apache/camel/component/disruptor/springboot/DisruptorComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-disruptor-starter/src/main/java/org/apache/camel/component/disruptor/springboot/DisruptorComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-disruptor-starter/src/main/java/org/apache/camel/component/disruptor/springboot/DisruptorComponentConfiguration.java
index cea8f0c..4456cf0 100644
--- a/platforms/spring-boot/components-starter/camel-disruptor-starter/src/main/java/org/apache/camel/component/disruptor/springboot/DisruptorComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-disruptor-starter/src/main/java/org/apache/camel/component/disruptor/springboot/DisruptorComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.disruptor.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.component.disruptor.DisruptorComponent;
 import org.apache.camel.component.disruptor.DisruptorProducerType;
 import org.apache.camel.component.disruptor.DisruptorWaitStrategy;
@@ -28,6 +29,7 @@ import org.springframework.boot.context.properties.DeprecatedConfigurationProper
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.disruptor")
 public class DisruptorComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-disruptor-starter/src/main/java/org/apache/camel/component/disruptor/vm/springboot/DisruptorVmComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-disruptor-starter/src/main/java/org/apache/camel/component/disruptor/vm/springboot/DisruptorVmComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-disruptor-starter/src/main/java/org/apache/camel/component/disruptor/vm/springboot/DisruptorVmComponentAutoConfiguration.java
index 6b9fc29..bd68968 100644
--- a/platforms/spring-boot/components-starter/camel-disruptor-starter/src/main/java/org/apache/camel/component/disruptor/vm/springboot/DisruptorVmComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-disruptor-starter/src/main/java/org/apache/camel/component/disruptor/vm/springboot/DisruptorVmComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.disruptor.vm.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.disruptor.vm.DisruptorVmComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(DisruptorVmComponentAutoConfiguration.Condition.class)
@@ -84,6 +86,7 @@ public class DisruptorVmComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-disruptor-starter/src/main/java/org/apache/camel/component/disruptor/vm/springboot/DisruptorVmComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-disruptor-starter/src/main/java/org/apache/camel/component/disruptor/vm/springboot/DisruptorVmComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-disruptor-starter/src/main/java/org/apache/camel/component/disruptor/vm/springboot/DisruptorVmComponentConfiguration.java
index 3c025af..ca9bac0 100644
--- a/platforms/spring-boot/components-starter/camel-disruptor-starter/src/main/java/org/apache/camel/component/disruptor/vm/springboot/DisruptorVmComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-disruptor-starter/src/main/java/org/apache/camel/component/disruptor/vm/springboot/DisruptorVmComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.disruptor.vm.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.component.disruptor.DisruptorProducerType;
 import org.apache.camel.component.disruptor.DisruptorWaitStrategy;
 import org.apache.camel.component.disruptor.vm.DisruptorVmComponent;
@@ -28,6 +29,7 @@ import org.springframework.boot.context.properties.DeprecatedConfigurationProper
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.disruptor-vm")
 public class DisruptorVmComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-dns-starter/src/main/java/org/apache/camel/component/dns/springboot/DnsComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-dns-starter/src/main/java/org/apache/camel/component/dns/springboot/DnsComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-dns-starter/src/main/java/org/apache/camel/component/dns/springboot/DnsComponentAutoConfiguration.java
index 5925f5e..c5006a3 100644
--- a/platforms/spring-boot/components-starter/camel-dns-starter/src/main/java/org/apache/camel/component/dns/springboot/DnsComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-dns-starter/src/main/java/org/apache/camel/component/dns/springboot/DnsComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.dns.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.dns.DnsComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(DnsComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class DnsComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-docker-starter/src/main/java/org/apache/camel/component/docker/springboot/DockerComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-docker-starter/src/main/java/org/apache/camel/component/docker/springboot/DockerComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-docker-starter/src/main/java/org/apache/camel/component/docker/springboot/DockerComponentAutoConfiguration.java
index 4412ce2..29c7f7a 100644
--- a/platforms/spring-boot/components-starter/camel-docker-starter/src/main/java/org/apache/camel/component/docker/springboot/DockerComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-docker-starter/src/main/java/org/apache/camel/component/docker/springboot/DockerComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.docker.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.docker.DockerComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(DockerComponentAutoConfiguration.Condition.class)
@@ -83,6 +85,7 @@ public class DockerComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-docker-starter/src/main/java/org/apache/camel/component/docker/springboot/DockerComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-docker-starter/src/main/java/org/apache/camel/component/docker/springboot/DockerComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-docker-starter/src/main/java/org/apache/camel/component/docker/springboot/DockerComponentConfiguration.java
index b788091..5c55879 100644
--- a/platforms/spring-boot/components-starter/camel-docker-starter/src/main/java/org/apache/camel/component/docker/springboot/DockerComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-docker-starter/src/main/java/org/apache/camel/component/docker/springboot/DockerComponentConfiguration.java
@@ -17,6 +17,7 @@
 package org.apache.camel.component.docker.springboot;
 
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.component.docker.DockerOperation;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
@@ -25,6 +26,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.docker")
 public class DockerComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-dozer-starter/src/main/java/org/apache/camel/component/dozer/springboot/DozerComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-dozer-starter/src/main/java/org/apache/camel/component/dozer/springboot/DozerComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-dozer-starter/src/main/java/org/apache/camel/component/dozer/springboot/DozerComponentAutoConfiguration.java
index df0348d..21d94c0 100644
--- a/platforms/spring-boot/components-starter/camel-dozer-starter/src/main/java/org/apache/camel/component/dozer/springboot/DozerComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-dozer-starter/src/main/java/org/apache/camel/component/dozer/springboot/DozerComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.dozer.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.dozer.DozerComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(DozerComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class DozerComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-drill-starter/src/main/java/org/apache/camel/component/drill/springboot/DrillComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-drill-starter/src/main/java/org/apache/camel/component/drill/springboot/DrillComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-drill-starter/src/main/java/org/apache/camel/component/drill/springboot/DrillComponentAutoConfiguration.java
index fdfdc09..e0c8b63 100644
--- a/platforms/spring-boot/components-starter/camel-drill-starter/src/main/java/org/apache/camel/component/drill/springboot/DrillComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-drill-starter/src/main/java/org/apache/camel/component/drill/springboot/DrillComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.drill.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.drill.DrillComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(DrillComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class DrillComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-dropbox-starter/src/main/java/org/apache/camel/component/dropbox/springboot/DropboxComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-dropbox-starter/src/main/java/org/apache/camel/component/dropbox/springboot/DropboxComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-dropbox-starter/src/main/java/org/apache/camel/component/dropbox/springboot/DropboxComponentAutoConfiguration.java
index 53b7c8a..9d498f0 100644
--- a/platforms/spring-boot/components-starter/camel-dropbox-starter/src/main/java/org/apache/camel/component/dropbox/springboot/DropboxComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-dropbox-starter/src/main/java/org/apache/camel/component/dropbox/springboot/DropboxComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.dropbox.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.dropbox.DropboxComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(DropboxComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class DropboxComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-ehcache-starter/src/main/java/org/apache/camel/component/ehcache/springboot/EhcacheComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-ehcache-starter/src/main/java/org/apache/camel/component/ehcache/springboot/EhcacheComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-ehcache-starter/src/main/java/org/apache/camel/component/ehcache/springboot/EhcacheComponentAutoConfiguration.java
index 00e8355..ece5cf2 100644
--- a/platforms/spring-boot/components-starter/camel-ehcache-starter/src/main/java/org/apache/camel/component/ehcache/springboot/EhcacheComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-ehcache-starter/src/main/java/org/apache/camel/component/ehcache/springboot/EhcacheComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.ehcache.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.ehcache.EhcacheComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(EhcacheComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class EhcacheComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-elasticsearch-starter/src/main/java/org/apache/camel/component/elasticsearch/springboot/ElasticsearchComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-elasticsearch-starter/src/main/java/org/apache/camel/component/elasticsearch/springboot/ElasticsearchComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-elasticsearch-starter/src/main/java/org/apache/camel/component/elasticsearch/springboot/ElasticsearchComponentAutoConfiguration.java
index 3d1cade..d8cf1b7 100644
--- a/platforms/spring-boot/components-starter/camel-elasticsearch-starter/src/main/java/org/apache/camel/component/elasticsearch/springboot/ElasticsearchComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-elasticsearch-starter/src/main/java/org/apache/camel/component/elasticsearch/springboot/ElasticsearchComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.elasticsearch.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.elasticsearch.ElasticsearchComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(ElasticsearchComponentAutoConfiguration.Condition.class)
@@ -84,6 +86,7 @@ public class ElasticsearchComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-elasticsearch-starter/src/main/java/org/apache/camel/component/elasticsearch/springboot/ElasticsearchComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-elasticsearch-starter/src/main/java/org/apache/camel/component/elasticsearch/springboot/ElasticsearchComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-elasticsearch-starter/src/main/java/org/apache/camel/component/elasticsearch/springboot/ElasticsearchComponentConfiguration.java
index 50fb329..830b97e 100644
--- a/platforms/spring-boot/components-starter/camel-elasticsearch-starter/src/main/java/org/apache/camel/component/elasticsearch/springboot/ElasticsearchComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-elasticsearch-starter/src/main/java/org/apache/camel/component/elasticsearch/springboot/ElasticsearchComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.elasticsearch.springboot;
 
+import javax.annotation.Generated;
 import org.elasticsearch.client.Client;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 import org.springframework.boot.context.properties.NestedConfigurationProperty;
@@ -26,6 +27,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.elasticsearch")
 public class ElasticsearchComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-elasticsearch5-starter/src/main/java/org/apache/camel/component/elasticsearch5/springboot/ElasticsearchComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-elasticsearch5-starter/src/main/java/org/apache/camel/component/elasticsearch5/springboot/ElasticsearchComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-elasticsearch5-starter/src/main/java/org/apache/camel/component/elasticsearch5/springboot/ElasticsearchComponentAutoConfiguration.java
index 3e9a70b..34cfc66 100644
--- a/platforms/spring-boot/components-starter/camel-elasticsearch5-starter/src/main/java/org/apache/camel/component/elasticsearch5/springboot/ElasticsearchComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-elasticsearch5-starter/src/main/java/org/apache/camel/component/elasticsearch5/springboot/ElasticsearchComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.elasticsearch5.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.elasticsearch5.ElasticsearchComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(ElasticsearchComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class ElasticsearchComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(


[03/13] camel git commit: CAMEL-11165 Add @Generated annotation to code g...

Posted by zr...@apache.org.
http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-splunk-starter/src/main/java/org/apache/camel/component/splunk/springboot/SplunkComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-splunk-starter/src/main/java/org/apache/camel/component/splunk/springboot/SplunkComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-splunk-starter/src/main/java/org/apache/camel/component/splunk/springboot/SplunkComponentConfiguration.java
index 8e1d97b..ede27fc 100644
--- a/platforms/spring-boot/components-starter/camel-splunk-starter/src/main/java/org/apache/camel/component/splunk/springboot/SplunkComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-splunk-starter/src/main/java/org/apache/camel/component/splunk/springboot/SplunkComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.splunk.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.component.splunk.SplunkConfigurationFactory;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 import org.springframework.boot.context.properties.NestedConfigurationProperty;
@@ -25,6 +26,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.splunk")
 public class SplunkComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-spring-batch-starter/src/main/java/org/apache/camel/component/spring/batch/springboot/SpringBatchComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-spring-batch-starter/src/main/java/org/apache/camel/component/spring/batch/springboot/SpringBatchComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-spring-batch-starter/src/main/java/org/apache/camel/component/spring/batch/springboot/SpringBatchComponentAutoConfiguration.java
index 380c1fe..fb3fad0 100644
--- a/platforms/spring-boot/components-starter/camel-spring-batch-starter/src/main/java/org/apache/camel/component/spring/batch/springboot/SpringBatchComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-spring-batch-starter/src/main/java/org/apache/camel/component/spring/batch/springboot/SpringBatchComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.spring.batch.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.spring.batch.SpringBatchComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(SpringBatchComponentAutoConfiguration.Condition.class)
@@ -84,6 +86,7 @@ public class SpringBatchComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-spring-batch-starter/src/main/java/org/apache/camel/component/spring/batch/springboot/SpringBatchComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-spring-batch-starter/src/main/java/org/apache/camel/component/spring/batch/springboot/SpringBatchComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-spring-batch-starter/src/main/java/org/apache/camel/component/spring/batch/springboot/SpringBatchComponentConfiguration.java
index 4aff6a2..85fb173 100644
--- a/platforms/spring-boot/components-starter/camel-spring-batch-starter/src/main/java/org/apache/camel/component/spring/batch/springboot/SpringBatchComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-spring-batch-starter/src/main/java/org/apache/camel/component/spring/batch/springboot/SpringBatchComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.spring.batch.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.batch.core.configuration.JobRegistry;
 import org.springframework.batch.core.launch.JobLauncher;
 import org.springframework.boot.context.properties.ConfigurationProperties;
@@ -27,6 +28,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.spring-batch")
 public class SpringBatchComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-spring-integration-starter/src/main/java/org/apache/camel/component/spring/integration/springboot/SpringIntegrationComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-spring-integration-starter/src/main/java/org/apache/camel/component/spring/integration/springboot/SpringIntegrationComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-spring-integration-starter/src/main/java/org/apache/camel/component/spring/integration/springboot/SpringIntegrationComponentAutoConfiguration.java
index e0bf058..c0cc013 100644
--- a/platforms/spring-boot/components-starter/camel-spring-integration-starter/src/main/java/org/apache/camel/component/spring/integration/springboot/SpringIntegrationComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-spring-integration-starter/src/main/java/org/apache/camel/component/spring/integration/springboot/SpringIntegrationComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.spring.integration.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.spring.integration.SpringIntegrationComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(SpringIntegrationComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class SpringIntegrationComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-spring-ldap-starter/src/main/java/org/apache/camel/component/springldap/springboot/SpringLdapComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-spring-ldap-starter/src/main/java/org/apache/camel/component/springldap/springboot/SpringLdapComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-spring-ldap-starter/src/main/java/org/apache/camel/component/springldap/springboot/SpringLdapComponentAutoConfiguration.java
index fef476d..1a032a4 100644
--- a/platforms/spring-boot/components-starter/camel-spring-ldap-starter/src/main/java/org/apache/camel/component/springldap/springboot/SpringLdapComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-spring-ldap-starter/src/main/java/org/apache/camel/component/springldap/springboot/SpringLdapComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.springldap.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.springldap.SpringLdapComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(SpringLdapComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class SpringLdapComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-spring-redis-starter/src/main/java/org/apache/camel/component/redis/springboot/RedisComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-spring-redis-starter/src/main/java/org/apache/camel/component/redis/springboot/RedisComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-spring-redis-starter/src/main/java/org/apache/camel/component/redis/springboot/RedisComponentAutoConfiguration.java
index 66bd1be..adcdd1c 100644
--- a/platforms/spring-boot/components-starter/camel-spring-redis-starter/src/main/java/org/apache/camel/component/redis/springboot/RedisComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-spring-redis-starter/src/main/java/org/apache/camel/component/redis/springboot/RedisComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.redis.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.redis.RedisComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(RedisComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class RedisComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-spring-starter/src/main/java/org/apache/camel/component/event/springboot/EventComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-spring-starter/src/main/java/org/apache/camel/component/event/springboot/EventComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-spring-starter/src/main/java/org/apache/camel/component/event/springboot/EventComponentAutoConfiguration.java
index 62b26a0..6fea192 100644
--- a/platforms/spring-boot/components-starter/camel-spring-starter/src/main/java/org/apache/camel/component/event/springboot/EventComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-spring-starter/src/main/java/org/apache/camel/component/event/springboot/EventComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.event.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.event.EventComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(EventComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class EventComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-spring-starter/src/main/java/org/apache/camel/language/spel/springboot/SpelLanguageAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-spring-starter/src/main/java/org/apache/camel/language/spel/springboot/SpelLanguageAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-spring-starter/src/main/java/org/apache/camel/language/spel/springboot/SpelLanguageAutoConfiguration.java
index c41a22c..eb7e21f 100644
--- a/platforms/spring-boot/components-starter/camel-spring-starter/src/main/java/org/apache/camel/language/spel/springboot/SpelLanguageAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-spring-starter/src/main/java/org/apache/camel/language/spel/springboot/SpelLanguageAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.language.spel.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.CamelContextAware;
 import org.apache.camel.language.spel.SpelLanguage;
@@ -41,6 +42,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(SpelLanguageAutoConfiguration.Condition.class)
@@ -70,6 +72,7 @@ public class SpelLanguageAutoConfiguration {
         return language;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-spring-starter/src/main/java/org/apache/camel/language/spel/springboot/SpelLanguageConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-spring-starter/src/main/java/org/apache/camel/language/spel/springboot/SpelLanguageConfiguration.java b/platforms/spring-boot/components-starter/camel-spring-starter/src/main/java/org/apache/camel/language/spel/springboot/SpelLanguageConfiguration.java
index b8dddfd..37968ae 100644
--- a/platforms/spring-boot/components-starter/camel-spring-starter/src/main/java/org/apache/camel/language/spel/springboot/SpelLanguageConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-spring-starter/src/main/java/org/apache/camel/language/spel/springboot/SpelLanguageConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.language.spel.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -23,6 +24,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.language.spel")
 public class SpelLanguageConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-spring-ws-starter/src/main/java/org/apache/camel/component/spring/ws/springboot/SpringWebserviceComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-spring-ws-starter/src/main/java/org/apache/camel/component/spring/ws/springboot/SpringWebserviceComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-spring-ws-starter/src/main/java/org/apache/camel/component/spring/ws/springboot/SpringWebserviceComponentAutoConfiguration.java
index 42c56db..d64e3b0 100644
--- a/platforms/spring-boot/components-starter/camel-spring-ws-starter/src/main/java/org/apache/camel/component/spring/ws/springboot/SpringWebserviceComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-spring-ws-starter/src/main/java/org/apache/camel/component/spring/ws/springboot/SpringWebserviceComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.spring.ws.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.spring.ws.SpringWebserviceComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(SpringWebserviceComponentAutoConfiguration.Condition.class)
@@ -85,6 +87,7 @@ public class SpringWebserviceComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-spring-ws-starter/src/main/java/org/apache/camel/component/spring/ws/springboot/SpringWebserviceComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-spring-ws-starter/src/main/java/org/apache/camel/component/spring/ws/springboot/SpringWebserviceComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-spring-ws-starter/src/main/java/org/apache/camel/component/spring/ws/springboot/SpringWebserviceComponentConfiguration.java
index a24699a..4d7bf1c 100644
--- a/platforms/spring-boot/components-starter/camel-spring-ws-starter/src/main/java/org/apache/camel/component/spring/ws/springboot/SpringWebserviceComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-spring-ws-starter/src/main/java/org/apache/camel/component/spring/ws/springboot/SpringWebserviceComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.spring.ws.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -24,6 +25,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.spring-ws")
 public class SpringWebserviceComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-sql-starter/src/main/java/org/apache/camel/component/sql/springboot/SqlComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-sql-starter/src/main/java/org/apache/camel/component/sql/springboot/SqlComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-sql-starter/src/main/java/org/apache/camel/component/sql/springboot/SqlComponentAutoConfiguration.java
index facfb76..0783c16 100644
--- a/platforms/spring-boot/components-starter/camel-sql-starter/src/main/java/org/apache/camel/component/sql/springboot/SqlComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-sql-starter/src/main/java/org/apache/camel/component/sql/springboot/SqlComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.sql.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.sql.SqlComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(SqlComponentAutoConfiguration.Condition.class)
@@ -83,6 +85,7 @@ public class SqlComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-sql-starter/src/main/java/org/apache/camel/component/sql/springboot/SqlComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-sql-starter/src/main/java/org/apache/camel/component/sql/springboot/SqlComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-sql-starter/src/main/java/org/apache/camel/component/sql/springboot/SqlComponentConfiguration.java
index 99df47c..41b913a 100644
--- a/platforms/spring-boot/components-starter/camel-sql-starter/src/main/java/org/apache/camel/component/sql/springboot/SqlComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-sql-starter/src/main/java/org/apache/camel/component/sql/springboot/SqlComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.sql.springboot;
 
+import javax.annotation.Generated;
 import javax.sql.DataSource;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
@@ -24,6 +25,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.sql")
 public class SqlComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-sql-starter/src/main/java/org/apache/camel/component/sql/stored/springboot/SqlStoredComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-sql-starter/src/main/java/org/apache/camel/component/sql/stored/springboot/SqlStoredComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-sql-starter/src/main/java/org/apache/camel/component/sql/stored/springboot/SqlStoredComponentAutoConfiguration.java
index 68190dc..c9ef4e5 100644
--- a/platforms/spring-boot/components-starter/camel-sql-starter/src/main/java/org/apache/camel/component/sql/stored/springboot/SqlStoredComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-sql-starter/src/main/java/org/apache/camel/component/sql/stored/springboot/SqlStoredComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.sql.stored.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.sql.stored.SqlStoredComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(SqlStoredComponentAutoConfiguration.Condition.class)
@@ -84,6 +86,7 @@ public class SqlStoredComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-sql-starter/src/main/java/org/apache/camel/component/sql/stored/springboot/SqlStoredComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-sql-starter/src/main/java/org/apache/camel/component/sql/stored/springboot/SqlStoredComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-sql-starter/src/main/java/org/apache/camel/component/sql/stored/springboot/SqlStoredComponentConfiguration.java
index 310d2d3..234b800 100644
--- a/platforms/spring-boot/components-starter/camel-sql-starter/src/main/java/org/apache/camel/component/sql/stored/springboot/SqlStoredComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-sql-starter/src/main/java/org/apache/camel/component/sql/stored/springboot/SqlStoredComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.sql.stored.springboot;
 
+import javax.annotation.Generated;
 import javax.sql.DataSource;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
@@ -25,6 +26,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.sql-stored")
 public class SqlStoredComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-ssh-starter/src/main/java/org/apache/camel/component/ssh/springboot/SshComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-ssh-starter/src/main/java/org/apache/camel/component/ssh/springboot/SshComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-ssh-starter/src/main/java/org/apache/camel/component/ssh/springboot/SshComponentAutoConfiguration.java
index e9f3ced..87750a7 100644
--- a/platforms/spring-boot/components-starter/camel-ssh-starter/src/main/java/org/apache/camel/component/ssh/springboot/SshComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-ssh-starter/src/main/java/org/apache/camel/component/ssh/springboot/SshComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.ssh.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.ssh.SshComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(SshComponentAutoConfiguration.Condition.class)
@@ -83,6 +85,7 @@ public class SshComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-ssh-starter/src/main/java/org/apache/camel/component/ssh/springboot/SshComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-ssh-starter/src/main/java/org/apache/camel/component/ssh/springboot/SshComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-ssh-starter/src/main/java/org/apache/camel/component/ssh/springboot/SshComponentConfiguration.java
index 4befc2f..2f31426 100644
--- a/platforms/spring-boot/components-starter/camel-ssh-starter/src/main/java/org/apache/camel/component/ssh/springboot/SshComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-ssh-starter/src/main/java/org/apache/camel/component/ssh/springboot/SshComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.ssh.springboot;
 
+import javax.annotation.Generated;
 import org.apache.sshd.common.KeyPairProvider;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 import org.springframework.boot.context.properties.DeprecatedConfigurationProperty;
@@ -27,6 +28,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.ssh")
 public class SshComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-stax-starter/src/main/java/org/apache/camel/component/stax/springboot/StAXComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-stax-starter/src/main/java/org/apache/camel/component/stax/springboot/StAXComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-stax-starter/src/main/java/org/apache/camel/component/stax/springboot/StAXComponentAutoConfiguration.java
index bee7380..fa6e299 100644
--- a/platforms/spring-boot/components-starter/camel-stax-starter/src/main/java/org/apache/camel/component/stax/springboot/StAXComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-stax-starter/src/main/java/org/apache/camel/component/stax/springboot/StAXComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.stax.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.stax.StAXComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(StAXComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class StAXComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-stomp-starter/src/main/java/org/apache/camel/component/stomp/springboot/StompComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-stomp-starter/src/main/java/org/apache/camel/component/stomp/springboot/StompComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-stomp-starter/src/main/java/org/apache/camel/component/stomp/springboot/StompComponentAutoConfiguration.java
index c46611e..08f7262 100644
--- a/platforms/spring-boot/components-starter/camel-stomp-starter/src/main/java/org/apache/camel/component/stomp/springboot/StompComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-stomp-starter/src/main/java/org/apache/camel/component/stomp/springboot/StompComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.stomp.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.stomp.StompComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(StompComponentAutoConfiguration.Condition.class)
@@ -83,6 +85,7 @@ public class StompComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-stomp-starter/src/main/java/org/apache/camel/component/stomp/springboot/StompComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-stomp-starter/src/main/java/org/apache/camel/component/stomp/springboot/StompComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-stomp-starter/src/main/java/org/apache/camel/component/stomp/springboot/StompComponentConfiguration.java
index f2be104..2671bd5 100644
--- a/platforms/spring-boot/components-starter/camel-stomp-starter/src/main/java/org/apache/camel/component/stomp/springboot/StompComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-stomp-starter/src/main/java/org/apache/camel/component/stomp/springboot/StompComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.stomp.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.util.jsse.SSLContextParameters;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 import org.springframework.boot.context.properties.NestedConfigurationProperty;
@@ -26,6 +27,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.stomp")
 public class StompComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-stream-starter/src/main/java/org/apache/camel/component/stream/springboot/StreamComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-stream-starter/src/main/java/org/apache/camel/component/stream/springboot/StreamComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-stream-starter/src/main/java/org/apache/camel/component/stream/springboot/StreamComponentAutoConfiguration.java
index 8f72be2..8b5177d 100644
--- a/platforms/spring-boot/components-starter/camel-stream-starter/src/main/java/org/apache/camel/component/stream/springboot/StreamComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-stream-starter/src/main/java/org/apache/camel/component/stream/springboot/StreamComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.stream.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.stream.StreamComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(StreamComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class StreamComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-stringtemplate-starter/src/main/java/org/apache/camel/component/stringtemplate/springboot/StringTemplateComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-stringtemplate-starter/src/main/java/org/apache/camel/component/stringtemplate/springboot/StringTemplateComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-stringtemplate-starter/src/main/java/org/apache/camel/component/stringtemplate/springboot/StringTemplateComponentAutoConfiguration.java
index 098d350..9409ab2 100644
--- a/platforms/spring-boot/components-starter/camel-stringtemplate-starter/src/main/java/org/apache/camel/component/stringtemplate/springboot/StringTemplateComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-stringtemplate-starter/src/main/java/org/apache/camel/component/stringtemplate/springboot/StringTemplateComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.stringtemplate.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.stringtemplate.StringTemplateComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(StringTemplateComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class StringTemplateComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-syslog-starter/src/main/java/org/apache/camel/component/syslog/springboot/SyslogDataFormatAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-syslog-starter/src/main/java/org/apache/camel/component/syslog/springboot/SyslogDataFormatAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-syslog-starter/src/main/java/org/apache/camel/component/syslog/springboot/SyslogDataFormatAutoConfiguration.java
index 6c96a3f..0645a74 100644
--- a/platforms/spring-boot/components-starter/camel-syslog-starter/src/main/java/org/apache/camel/component/syslog/springboot/SyslogDataFormatAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-syslog-starter/src/main/java/org/apache/camel/component/syslog/springboot/SyslogDataFormatAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.syslog.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.CamelContextAware;
 import org.apache.camel.RuntimeCamelException;
@@ -43,6 +44,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(SyslogDataFormatAutoConfiguration.Condition.class)
@@ -82,6 +84,7 @@ public class SyslogDataFormatAutoConfiguration {
         };
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-syslog-starter/src/main/java/org/apache/camel/component/syslog/springboot/SyslogDataFormatConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-syslog-starter/src/main/java/org/apache/camel/component/syslog/springboot/SyslogDataFormatConfiguration.java b/platforms/spring-boot/components-starter/camel-syslog-starter/src/main/java/org/apache/camel/component/syslog/springboot/SyslogDataFormatConfiguration.java
index afdc18f..3ef518f 100644
--- a/platforms/spring-boot/components-starter/camel-syslog-starter/src/main/java/org/apache/camel/component/syslog/springboot/SyslogDataFormatConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-syslog-starter/src/main/java/org/apache/camel/component/syslog/springboot/SyslogDataFormatConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.syslog.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -23,6 +24,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.dataformat.syslog")
 public class SyslogDataFormatConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-tagsoup-starter/src/main/java/org/apache/camel/dataformat/tagsoup/springboot/TidyMarkupDataFormatAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-tagsoup-starter/src/main/java/org/apache/camel/dataformat/tagsoup/springboot/TidyMarkupDataFormatAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-tagsoup-starter/src/main/java/org/apache/camel/dataformat/tagsoup/springboot/TidyMarkupDataFormatAutoConfiguration.java
index b9f2ed8..6ee00da 100644
--- a/platforms/spring-boot/components-starter/camel-tagsoup-starter/src/main/java/org/apache/camel/dataformat/tagsoup/springboot/TidyMarkupDataFormatAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-tagsoup-starter/src/main/java/org/apache/camel/dataformat/tagsoup/springboot/TidyMarkupDataFormatAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.dataformat.tagsoup.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.CamelContextAware;
 import org.apache.camel.RuntimeCamelException;
@@ -43,6 +44,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(TidyMarkupDataFormatAutoConfiguration.Condition.class)
@@ -82,6 +84,7 @@ public class TidyMarkupDataFormatAutoConfiguration {
         };
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-tagsoup-starter/src/main/java/org/apache/camel/dataformat/tagsoup/springboot/TidyMarkupDataFormatConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-tagsoup-starter/src/main/java/org/apache/camel/dataformat/tagsoup/springboot/TidyMarkupDataFormatConfiguration.java b/platforms/spring-boot/components-starter/camel-tagsoup-starter/src/main/java/org/apache/camel/dataformat/tagsoup/springboot/TidyMarkupDataFormatConfiguration.java
index 0e45ec6..a7fb06a 100644
--- a/platforms/spring-boot/components-starter/camel-tagsoup-starter/src/main/java/org/apache/camel/dataformat/tagsoup/springboot/TidyMarkupDataFormatConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-tagsoup-starter/src/main/java/org/apache/camel/dataformat/tagsoup/springboot/TidyMarkupDataFormatConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.dataformat.tagsoup.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -23,6 +24,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.dataformat.tidymarkup")
 public class TidyMarkupDataFormatConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-tarfile-starter/src/main/java/org/apache/camel/dataformat/tarfile/springboot/TarFileDataFormatAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-tarfile-starter/src/main/java/org/apache/camel/dataformat/tarfile/springboot/TarFileDataFormatAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-tarfile-starter/src/main/java/org/apache/camel/dataformat/tarfile/springboot/TarFileDataFormatAutoConfiguration.java
index 24b34f7..2427e92 100644
--- a/platforms/spring-boot/components-starter/camel-tarfile-starter/src/main/java/org/apache/camel/dataformat/tarfile/springboot/TarFileDataFormatAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-tarfile-starter/src/main/java/org/apache/camel/dataformat/tarfile/springboot/TarFileDataFormatAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.dataformat.tarfile.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.CamelContextAware;
 import org.apache.camel.RuntimeCamelException;
@@ -43,6 +44,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(TarFileDataFormatAutoConfiguration.Condition.class)
@@ -82,6 +84,7 @@ public class TarFileDataFormatAutoConfiguration {
         };
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-tarfile-starter/src/main/java/org/apache/camel/dataformat/tarfile/springboot/TarFileDataFormatConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-tarfile-starter/src/main/java/org/apache/camel/dataformat/tarfile/springboot/TarFileDataFormatConfiguration.java b/platforms/spring-boot/components-starter/camel-tarfile-starter/src/main/java/org/apache/camel/dataformat/tarfile/springboot/TarFileDataFormatConfiguration.java
index 6d96c3b..ab7836b 100644
--- a/platforms/spring-boot/components-starter/camel-tarfile-starter/src/main/java/org/apache/camel/dataformat/tarfile/springboot/TarFileDataFormatConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-tarfile-starter/src/main/java/org/apache/camel/dataformat/tarfile/springboot/TarFileDataFormatConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.dataformat.tarfile.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -23,6 +24,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.dataformat.tarfile")
 public class TarFileDataFormatConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-telegram-starter/src/main/java/org/apache/camel/component/telegram/springboot/TelegramComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-telegram-starter/src/main/java/org/apache/camel/component/telegram/springboot/TelegramComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-telegram-starter/src/main/java/org/apache/camel/component/telegram/springboot/TelegramComponentAutoConfiguration.java
index ef588b197..0dfd831 100644
--- a/platforms/spring-boot/components-starter/camel-telegram-starter/src/main/java/org/apache/camel/component/telegram/springboot/TelegramComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-telegram-starter/src/main/java/org/apache/camel/component/telegram/springboot/TelegramComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.telegram.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.telegram.TelegramComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(TelegramComponentAutoConfiguration.Condition.class)
@@ -84,6 +86,7 @@ public class TelegramComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-telegram-starter/src/main/java/org/apache/camel/component/telegram/springboot/TelegramComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-telegram-starter/src/main/java/org/apache/camel/component/telegram/springboot/TelegramComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-telegram-starter/src/main/java/org/apache/camel/component/telegram/springboot/TelegramComponentConfiguration.java
index b4b53fd..b27d2c9 100644
--- a/platforms/spring-boot/components-starter/camel-telegram-starter/src/main/java/org/apache/camel/component/telegram/springboot/TelegramComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-telegram-starter/src/main/java/org/apache/camel/component/telegram/springboot/TelegramComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.telegram.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -23,6 +24,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.telegram")
 public class TelegramComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-tika-starter/src/main/java/org/apache/camel/component/tika/springboot/TikaComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-tika-starter/src/main/java/org/apache/camel/component/tika/springboot/TikaComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-tika-starter/src/main/java/org/apache/camel/component/tika/springboot/TikaComponentAutoConfiguration.java
index 72c4d56..c6ab08c 100644
--- a/platforms/spring-boot/components-starter/camel-tika-starter/src/main/java/org/apache/camel/component/tika/springboot/TikaComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-tika-starter/src/main/java/org/apache/camel/component/tika/springboot/TikaComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.tika.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.tika.TikaComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(TikaComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class TikaComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-twitter-starter/src/main/java/org/apache/camel/component/twitter/springboot/TwitterComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-twitter-starter/src/main/java/org/apache/camel/component/twitter/springboot/TwitterComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-twitter-starter/src/main/java/org/apache/camel/component/twitter/springboot/TwitterComponentAutoConfiguration.java
index b31610b..985ec37 100644
--- a/platforms/spring-boot/components-starter/camel-twitter-starter/src/main/java/org/apache/camel/component/twitter/springboot/TwitterComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-twitter-starter/src/main/java/org/apache/camel/component/twitter/springboot/TwitterComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.twitter.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.twitter.TwitterComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(TwitterComponentAutoConfiguration.Condition.class)
@@ -84,6 +86,7 @@ public class TwitterComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-twitter-starter/src/main/java/org/apache/camel/component/twitter/springboot/TwitterComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-twitter-starter/src/main/java/org/apache/camel/component/twitter/springboot/TwitterComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-twitter-starter/src/main/java/org/apache/camel/component/twitter/springboot/TwitterComponentConfiguration.java
index 21cd925..624f274 100644
--- a/platforms/spring-boot/components-starter/camel-twitter-starter/src/main/java/org/apache/camel/component/twitter/springboot/TwitterComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-twitter-starter/src/main/java/org/apache/camel/component/twitter/springboot/TwitterComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.twitter.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -24,6 +25,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.twitter")
 public class TwitterComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-undertow-starter/src/main/java/org/apache/camel/component/undertow/springboot/UndertowComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-undertow-starter/src/main/java/org/apache/camel/component/undertow/springboot/UndertowComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-undertow-starter/src/main/java/org/apache/camel/component/undertow/springboot/UndertowComponentAutoConfiguration.java
index 8676805..554bd17 100644
--- a/platforms/spring-boot/components-starter/camel-undertow-starter/src/main/java/org/apache/camel/component/undertow/springboot/UndertowComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-undertow-starter/src/main/java/org/apache/camel/component/undertow/springboot/UndertowComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.undertow.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.undertow.UndertowComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(UndertowComponentAutoConfiguration.Condition.class)
@@ -84,6 +86,7 @@ public class UndertowComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-undertow-starter/src/main/java/org/apache/camel/component/undertow/springboot/UndertowComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-undertow-starter/src/main/java/org/apache/camel/component/undertow/springboot/UndertowComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-undertow-starter/src/main/java/org/apache/camel/component/undertow/springboot/UndertowComponentConfiguration.java
index ba44c7f..0548f3f 100644
--- a/platforms/spring-boot/components-starter/camel-undertow-starter/src/main/java/org/apache/camel/component/undertow/springboot/UndertowComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-undertow-starter/src/main/java/org/apache/camel/component/undertow/springboot/UndertowComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.undertow.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.component.undertow.UndertowHttpBinding;
 import org.apache.camel.util.jsse.SSLContextParameters;
 import org.springframework.boot.context.properties.ConfigurationProperties;
@@ -27,6 +28,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.undertow")
 public class UndertowComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-univocity-parsers-starter/src/main/java/org/apache/camel/dataformat/univocity/springboot/UniVocityCsvDataFormatAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-univocity-parsers-starter/src/main/java/org/apache/camel/dataformat/univocity/springboot/UniVocityCsvDataFormatAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-univocity-parsers-starter/src/main/java/org/apache/camel/dataformat/univocity/springboot/UniVocityCsvDataFormatAutoConfiguration.java
index 9430915..fc798a6 100644
--- a/platforms/spring-boot/components-starter/camel-univocity-parsers-starter/src/main/java/org/apache/camel/dataformat/univocity/springboot/UniVocityCsvDataFormatAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-univocity-parsers-starter/src/main/java/org/apache/camel/dataformat/univocity/springboot/UniVocityCsvDataFormatAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.dataformat.univocity.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.CamelContextAware;
 import org.apache.camel.RuntimeCamelException;
@@ -43,6 +44,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(UniVocityCsvDataFormatAutoConfiguration.Condition.class)
@@ -82,6 +84,7 @@ public class UniVocityCsvDataFormatAutoConfiguration {
         };
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-univocity-parsers-starter/src/main/java/org/apache/camel/dataformat/univocity/springboot/UniVocityCsvDataFormatConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-univocity-parsers-starter/src/main/java/org/apache/camel/dataformat/univocity/springboot/UniVocityCsvDataFormatConfiguration.java b/platforms/spring-boot/components-starter/camel-univocity-parsers-starter/src/main/java/org/apache/camel/dataformat/univocity/springboot/UniVocityCsvDataFormatConfiguration.java
index 6b4bb84..7c826b0 100644
--- a/platforms/spring-boot/components-starter/camel-univocity-parsers-starter/src/main/java/org/apache/camel/dataformat/univocity/springboot/UniVocityCsvDataFormatConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-univocity-parsers-starter/src/main/java/org/apache/camel/dataformat/univocity/springboot/UniVocityCsvDataFormatConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.dataformat.univocity.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -23,6 +24,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.dataformat.univocity-csv")
 public class UniVocityCsvDataFormatConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-univocity-parsers-starter/src/main/java/org/apache/camel/dataformat/univocity/springboot/UniVocityFixedWidthDataFormatAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-univocity-parsers-starter/src/main/java/org/apache/camel/dataformat/univocity/springboot/UniVocityFixedWidthDataFormatAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-univocity-parsers-starter/src/main/java/org/apache/camel/dataformat/univocity/springboot/UniVocityFixedWidthDataFormatAutoConfiguration.java
index b7e50b3..44313ec 100644
--- a/platforms/spring-boot/components-starter/camel-univocity-parsers-starter/src/main/java/org/apache/camel/dataformat/univocity/springboot/UniVocityFixedWidthDataFormatAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-univocity-parsers-starter/src/main/java/org/apache/camel/dataformat/univocity/springboot/UniVocityFixedWidthDataFormatAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.dataformat.univocity.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.CamelContextAware;
 import org.apache.camel.RuntimeCamelException;
@@ -43,6 +44,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(UniVocityFixedWidthDataFormatAutoConfiguration.Condition.class)
@@ -82,6 +84,7 @@ public class UniVocityFixedWidthDataFormatAutoConfiguration {
         };
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-univocity-parsers-starter/src/main/java/org/apache/camel/dataformat/univocity/springboot/UniVocityFixedWidthDataFormatConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-univocity-parsers-starter/src/main/java/org/apache/camel/dataformat/univocity/springboot/UniVocityFixedWidthDataFormatConfiguration.java b/platforms/spring-boot/components-starter/camel-univocity-parsers-starter/src/main/java/org/apache/camel/dataformat/univocity/springboot/UniVocityFixedWidthDataFormatConfiguration.java
index 6fada79..4ac1cf8 100644
--- a/platforms/spring-boot/components-starter/camel-univocity-parsers-starter/src/main/java/org/apache/camel/dataformat/univocity/springboot/UniVocityFixedWidthDataFormatConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-univocity-parsers-starter/src/main/java/org/apache/camel/dataformat/univocity/springboot/UniVocityFixedWidthDataFormatConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.dataformat.univocity.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -23,6 +24,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.dataformat.univocity-fixed")
 public class UniVocityFixedWidthDataFormatConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-univocity-parsers-starter/src/main/java/org/apache/camel/dataformat/univocity/springboot/UniVocityTsvDataFormatAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-univocity-parsers-starter/src/main/java/org/apache/camel/dataformat/univocity/springboot/UniVocityTsvDataFormatAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-univocity-parsers-starter/src/main/java/org/apache/camel/dataformat/univocity/springboot/UniVocityTsvDataFormatAutoConfiguration.java
index aaaff6c..d4e5513 100644
--- a/platforms/spring-boot/components-starter/camel-univocity-parsers-starter/src/main/java/org/apache/camel/dataformat/univocity/springboot/UniVocityTsvDataFormatAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-univocity-parsers-starter/src/main/java/org/apache/camel/dataformat/univocity/springboot/UniVocityTsvDataFormatAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.dataformat.univocity.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.CamelContextAware;
 import org.apache.camel.RuntimeCamelException;
@@ -43,6 +44,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(UniVocityTsvDataFormatAutoConfiguration.Condition.class)
@@ -82,6 +84,7 @@ public class UniVocityTsvDataFormatAutoConfiguration {
         };
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-univocity-parsers-starter/src/main/java/org/apache/camel/dataformat/univocity/springboot/UniVocityTsvDataFormatConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-univocity-parsers-starter/src/main/java/org/apache/camel/dataformat/univocity/springboot/UniVocityTsvDataFormatConfiguration.java b/platforms/spring-boot/components-starter/camel-univocity-parsers-starter/src/main/java/org/apache/camel/dataformat/univocity/springboot/UniVocityTsvDataFormatConfiguration.java
index 110369f..a04fa0c 100644
--- a/platforms/spring-boot/components-starter/camel-univocity-parsers-starter/src/main/java/org/apache/camel/dataformat/univocity/springboot/UniVocityTsvDataFormatConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-univocity-parsers-starter/src/main/java/org/apache/camel/dataformat/univocity/springboot/UniVocityTsvDataFormatConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.dataformat.univocity.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -23,6 +24,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.dataformat.univocity-tsv")
 public class UniVocityTsvDataFormatConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-velocity-starter/src/main/java/org/apache/camel/component/velocity/springboot/VelocityComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-velocity-starter/src/main/java/org/apache/camel/component/velocity/springboot/VelocityComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-velocity-starter/src/main/java/org/apache/camel/component/velocity/springboot/VelocityComponentAutoConfiguration.java
index 77c26bb..34f7d3c 100644
--- a/platforms/spring-boot/components-starter/camel-velocity-starter/src/main/java/org/apache/camel/component/velocity/springboot/VelocityComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-velocity-starter/src/main/java/org/apache/camel/component/velocity/springboot/VelocityComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.velocity.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.velocity.VelocityComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(VelocityComponentAutoConfiguration.Condition.class)
@@ -84,6 +86,7 @@ public class VelocityComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-velocity-starter/src/main/java/org/apache/camel/component/velocity/springboot/VelocityComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-velocity-starter/src/main/java/org/apache/camel/component/velocity/springboot/VelocityComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-velocity-starter/src/main/java/org/apache/camel/component/velocity/springboot/VelocityComponentConfiguration.java
index 365d4af..ab13c27 100644
--- a/platforms/spring-boot/components-starter/camel-velocity-starter/src/main/java/org/apache/camel/component/velocity/springboot/VelocityComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-velocity-starter/src/main/java/org/apache/camel/component/velocity/springboot/VelocityComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.velocity.springboot;
 
+import javax.annotation.Generated;
 import org.apache.velocity.app.VelocityEngine;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 import org.springframework.boot.context.properties.NestedConfigurationProperty;
@@ -25,6 +26,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.velocity")
 public class VelocityComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-vertx-starter/src/main/java/org/apache/camel/component/vertx/springboot/VertxComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-vertx-starter/src/main/java/org/apache/camel/component/vertx/springboot/VertxComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-vertx-starter/src/main/java/org/apache/camel/component/vertx/springboot/VertxComponentAutoConfiguration.java
index 5677d99..d5c6724 100644
--- a/platforms/spring-boot/components-starter/camel-vertx-starter/src/main/java/org/apache/camel/component/vertx/springboot/VertxComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-vertx-starter/src/main/java/org/apache/camel/component/vertx/springboot/VertxComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.vertx.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.vertx.VertxComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(VertxComponentAutoConfiguration.Condition.class)
@@ -83,6 +85,7 @@ public class VertxComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-vertx-starter/src/main/java/org/apache/camel/component/vertx/springboot/VertxComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-vertx-starter/src/main/java/org/apache/camel/component/vertx/springboot/VertxComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-vertx-starter/src/main/java/org/apache/camel/component/vertx/springboot/VertxComponentConfiguration.java
index 0a44bdf..12d6417 100644
--- a/platforms/spring-boot/components-starter/camel-vertx-starter/src/main/java/org/apache/camel/component/vertx/springboot/VertxComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-vertx-starter/src/main/java/org/apache/camel/component/vertx/springboot/VertxComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.vertx.springboot;
 
+import javax.annotation.Generated;
 import io.vertx.core.Vertx;
 import io.vertx.core.VertxOptions;
 import io.vertx.core.spi.VertxFactory;
@@ -28,6 +29,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.vertx")
 public class VertxComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-weather-starter/src/main/java/org/apache/camel/component/weather/springboot/WeatherComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-weather-starter/src/main/java/org/apache/camel/component/weather/springboot/WeatherComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-weather-starter/src/main/java/org/apache/camel/component/weather/springboot/WeatherComponentAutoConfiguration.java
index be36aaa..6e09f0d 100644
--- a/platforms/spring-boot/components-starter/camel-weather-starter/src/main/java/org/apache/camel/component/weather/springboot/WeatherComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-weather-starter/src/main/java/org/apache/camel/component/weather/springboot/WeatherComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.weather.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.weather.WeatherComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(WeatherComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class WeatherComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-websocket-starter/src/main/java/org/apache/camel/component/websocket/springboot/WebsocketComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-websocket-starter/src/main/java/org/apache/camel/component/websocket/springboot/WebsocketComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-websocket-starter/src/main/java/org/apache/camel/component/websocket/springboot/WebsocketComponentAutoConfiguration.java
index 9e2ad4b..864d4f3 100644
--- a/platforms/spring-boot/components-starter/camel-websocket-starter/src/main/java/org/apache/camel/component/websocket/springboot/WebsocketComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-websocket-starter/src/main/java/org/apache/camel/component/websocket/springboot/WebsocketComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.websocket.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.websocket.WebsocketComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(WebsocketComponentAutoConfiguration.Condition.class)
@@ -84,6 +86,7 @@ public class WebsocketComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-websocket-starter/src/main/java/org/apache/camel/component/websocket/springboot/WebsocketComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-websocket-starter/src/main/java/org/apache/camel/component/websocket/springboot/WebsocketComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-websocket-starter/src/main/java/org/apache/camel/component/websocket/springboot/WebsocketComponentConfiguration.java
index ec61ac0..27331a6 100644
--- a/platforms/spring-boot/components-starter/camel-websocket-starter/src/main/java/org/apache/camel/component/websocket/springboot/WebsocketComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-websocket-starter/src/main/java/org/apache/camel/component/websocket/springboot/WebsocketComponentConfiguration.java
@@ -17,6 +17,7 @@
 package org.apache.camel.component.websocket.springboot;
 
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.component.websocket.WebSocketFactory;
 import org.apache.camel.util.jsse.SSLContextParameters;
 import org.eclipse.jetty.util.thread.ThreadPool;
@@ -29,6 +30,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.websocket")
 public class WebsocketComponentConfiguration {
 


[08/13] camel git commit: CAMEL-11165 Add @Generated annotation to code g...

Posted by zr...@apache.org.
http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-elsql-starter/src/main/java/org/apache/camel/component/elsql/springboot/ElsqlComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-elsql-starter/src/main/java/org/apache/camel/component/elsql/springboot/ElsqlComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-elsql-starter/src/main/java/org/apache/camel/component/elsql/springboot/ElsqlComponentAutoConfiguration.java
index cb4bf49..344a03a 100644
--- a/platforms/spring-boot/components-starter/camel-elsql-starter/src/main/java/org/apache/camel/component/elsql/springboot/ElsqlComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-elsql-starter/src/main/java/org/apache/camel/component/elsql/springboot/ElsqlComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.elsql.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.elsql.ElsqlComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(ElsqlComponentAutoConfiguration.Condition.class)
@@ -83,6 +85,7 @@ public class ElsqlComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-elsql-starter/src/main/java/org/apache/camel/component/elsql/springboot/ElsqlComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-elsql-starter/src/main/java/org/apache/camel/component/elsql/springboot/ElsqlComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-elsql-starter/src/main/java/org/apache/camel/component/elsql/springboot/ElsqlComponentConfiguration.java
index c6a1577..da283bd 100644
--- a/platforms/spring-boot/components-starter/camel-elsql-starter/src/main/java/org/apache/camel/component/elsql/springboot/ElsqlComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-elsql-starter/src/main/java/org/apache/camel/component/elsql/springboot/ElsqlComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.elsql.springboot;
 
+import javax.annotation.Generated;
 import javax.sql.DataSource;
 import com.opengamma.elsql.ElSqlConfig;
 import org.apache.camel.component.elsql.ElSqlDatabaseVendor;
@@ -28,6 +29,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.elsql")
 public class ElsqlComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-etcd-starter/src/main/java/org/apache/camel/component/etcd/springboot/EtcdComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-etcd-starter/src/main/java/org/apache/camel/component/etcd/springboot/EtcdComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-etcd-starter/src/main/java/org/apache/camel/component/etcd/springboot/EtcdComponentAutoConfiguration.java
index 26290f1..c48f095 100644
--- a/platforms/spring-boot/components-starter/camel-etcd-starter/src/main/java/org/apache/camel/component/etcd/springboot/EtcdComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-etcd-starter/src/main/java/org/apache/camel/component/etcd/springboot/EtcdComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.etcd.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.etcd.EtcdComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(EtcdComponentAutoConfiguration.Condition.class)
@@ -83,6 +85,7 @@ public class EtcdComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-etcd-starter/src/main/java/org/apache/camel/component/etcd/springboot/EtcdComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-etcd-starter/src/main/java/org/apache/camel/component/etcd/springboot/EtcdComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-etcd-starter/src/main/java/org/apache/camel/component/etcd/springboot/EtcdComponentConfiguration.java
index 0e2cbdb..a7168a6 100644
--- a/platforms/spring-boot/components-starter/camel-etcd-starter/src/main/java/org/apache/camel/component/etcd/springboot/EtcdComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-etcd-starter/src/main/java/org/apache/camel/component/etcd/springboot/EtcdComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.etcd.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.util.jsse.SSLContextParameters;
 import org.springframework.boot.context.properties.ConfigurationProperties;
@@ -27,6 +28,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.etcd")
 public class EtcdComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-exec-starter/src/main/java/org/apache/camel/component/exec/springboot/ExecComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-exec-starter/src/main/java/org/apache/camel/component/exec/springboot/ExecComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-exec-starter/src/main/java/org/apache/camel/component/exec/springboot/ExecComponentAutoConfiguration.java
index 0b3c115..8337190 100644
--- a/platforms/spring-boot/components-starter/camel-exec-starter/src/main/java/org/apache/camel/component/exec/springboot/ExecComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-exec-starter/src/main/java/org/apache/camel/component/exec/springboot/ExecComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.exec.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.exec.ExecComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(ExecComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class ExecComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-facebook-starter/src/main/java/org/apache/camel/component/facebook/springboot/FacebookComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-facebook-starter/src/main/java/org/apache/camel/component/facebook/springboot/FacebookComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-facebook-starter/src/main/java/org/apache/camel/component/facebook/springboot/FacebookComponentAutoConfiguration.java
index baa8e05..9bfa887 100644
--- a/platforms/spring-boot/components-starter/camel-facebook-starter/src/main/java/org/apache/camel/component/facebook/springboot/FacebookComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-facebook-starter/src/main/java/org/apache/camel/component/facebook/springboot/FacebookComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.facebook.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.facebook.FacebookComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(FacebookComponentAutoConfiguration.Condition.class)
@@ -84,6 +86,7 @@ public class FacebookComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-facebook-starter/src/main/java/org/apache/camel/component/facebook/springboot/FacebookComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-facebook-starter/src/main/java/org/apache/camel/component/facebook/springboot/FacebookComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-facebook-starter/src/main/java/org/apache/camel/component/facebook/springboot/FacebookComponentConfiguration.java
index 28b2963..e164fe7 100644
--- a/platforms/spring-boot/components-starter/camel-facebook-starter/src/main/java/org/apache/camel/component/facebook/springboot/FacebookComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-facebook-starter/src/main/java/org/apache/camel/component/facebook/springboot/FacebookComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.facebook.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -24,6 +25,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.facebook")
 public class FacebookComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-flatpack-starter/src/main/java/org/apache/camel/component/flatpack/springboot/FlatpackComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-flatpack-starter/src/main/java/org/apache/camel/component/flatpack/springboot/FlatpackComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-flatpack-starter/src/main/java/org/apache/camel/component/flatpack/springboot/FlatpackComponentAutoConfiguration.java
index 2a9c2f1..19e04d4 100644
--- a/platforms/spring-boot/components-starter/camel-flatpack-starter/src/main/java/org/apache/camel/component/flatpack/springboot/FlatpackComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-flatpack-starter/src/main/java/org/apache/camel/component/flatpack/springboot/FlatpackComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.flatpack.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.flatpack.FlatpackComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(FlatpackComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class FlatpackComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-flatpack-starter/src/main/java/org/apache/camel/dataformat/flatpack/springboot/FlatpackDataFormatAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-flatpack-starter/src/main/java/org/apache/camel/dataformat/flatpack/springboot/FlatpackDataFormatAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-flatpack-starter/src/main/java/org/apache/camel/dataformat/flatpack/springboot/FlatpackDataFormatAutoConfiguration.java
index ce9a747..553ccb6 100644
--- a/platforms/spring-boot/components-starter/camel-flatpack-starter/src/main/java/org/apache/camel/dataformat/flatpack/springboot/FlatpackDataFormatAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-flatpack-starter/src/main/java/org/apache/camel/dataformat/flatpack/springboot/FlatpackDataFormatAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.dataformat.flatpack.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.CamelContextAware;
 import org.apache.camel.RuntimeCamelException;
@@ -43,6 +44,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(FlatpackDataFormatAutoConfiguration.Condition.class)
@@ -82,6 +84,7 @@ public class FlatpackDataFormatAutoConfiguration {
         };
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-flatpack-starter/src/main/java/org/apache/camel/dataformat/flatpack/springboot/FlatpackDataFormatConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-flatpack-starter/src/main/java/org/apache/camel/dataformat/flatpack/springboot/FlatpackDataFormatConfiguration.java b/platforms/spring-boot/components-starter/camel-flatpack-starter/src/main/java/org/apache/camel/dataformat/flatpack/springboot/FlatpackDataFormatConfiguration.java
index 4d81857..0f07c9a 100644
--- a/platforms/spring-boot/components-starter/camel-flatpack-starter/src/main/java/org/apache/camel/dataformat/flatpack/springboot/FlatpackDataFormatConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-flatpack-starter/src/main/java/org/apache/camel/dataformat/flatpack/springboot/FlatpackDataFormatConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.dataformat.flatpack.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -23,6 +24,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.dataformat.flatpack")
 public class FlatpackDataFormatConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-flink-starter/src/main/java/org/apache/camel/component/flink/springboot/FlinkComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-flink-starter/src/main/java/org/apache/camel/component/flink/springboot/FlinkComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-flink-starter/src/main/java/org/apache/camel/component/flink/springboot/FlinkComponentAutoConfiguration.java
index d505ab5..31cd17c 100644
--- a/platforms/spring-boot/components-starter/camel-flink-starter/src/main/java/org/apache/camel/component/flink/springboot/FlinkComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-flink-starter/src/main/java/org/apache/camel/component/flink/springboot/FlinkComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.flink.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.flink.FlinkComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(FlinkComponentAutoConfiguration.Condition.class)
@@ -83,6 +85,7 @@ public class FlinkComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-flink-starter/src/main/java/org/apache/camel/component/flink/springboot/FlinkComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-flink-starter/src/main/java/org/apache/camel/component/flink/springboot/FlinkComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-flink-starter/src/main/java/org/apache/camel/component/flink/springboot/FlinkComponentConfiguration.java
index c6ebc59..5387af1 100644
--- a/platforms/spring-boot/components-starter/camel-flink-starter/src/main/java/org/apache/camel/component/flink/springboot/FlinkComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-flink-starter/src/main/java/org/apache/camel/component/flink/springboot/FlinkComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.flink.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.component.flink.DataSetCallback;
 import org.apache.camel.component.flink.DataStreamCallback;
 import org.apache.flink.api.java.DataSet;
@@ -28,6 +29,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.flink")
 public class FlinkComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-fop-starter/src/main/java/org/apache/camel/component/fop/springboot/FopComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-fop-starter/src/main/java/org/apache/camel/component/fop/springboot/FopComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-fop-starter/src/main/java/org/apache/camel/component/fop/springboot/FopComponentAutoConfiguration.java
index b5afd94..d2c0108 100644
--- a/platforms/spring-boot/components-starter/camel-fop-starter/src/main/java/org/apache/camel/component/fop/springboot/FopComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-fop-starter/src/main/java/org/apache/camel/component/fop/springboot/FopComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.fop.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.fop.FopComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(FopComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class FopComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-freemarker-starter/src/main/java/org/apache/camel/component/freemarker/springboot/FreemarkerComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-freemarker-starter/src/main/java/org/apache/camel/component/freemarker/springboot/FreemarkerComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-freemarker-starter/src/main/java/org/apache/camel/component/freemarker/springboot/FreemarkerComponentAutoConfiguration.java
index d0c68ae..4b57873 100644
--- a/platforms/spring-boot/components-starter/camel-freemarker-starter/src/main/java/org/apache/camel/component/freemarker/springboot/FreemarkerComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-freemarker-starter/src/main/java/org/apache/camel/component/freemarker/springboot/FreemarkerComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.freemarker.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.freemarker.FreemarkerComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(FreemarkerComponentAutoConfiguration.Condition.class)
@@ -84,6 +86,7 @@ public class FreemarkerComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-freemarker-starter/src/main/java/org/apache/camel/component/freemarker/springboot/FreemarkerComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-freemarker-starter/src/main/java/org/apache/camel/component/freemarker/springboot/FreemarkerComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-freemarker-starter/src/main/java/org/apache/camel/component/freemarker/springboot/FreemarkerComponentConfiguration.java
index 25d1d83..2ccdfaa 100644
--- a/platforms/spring-boot/components-starter/camel-freemarker-starter/src/main/java/org/apache/camel/component/freemarker/springboot/FreemarkerComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-freemarker-starter/src/main/java/org/apache/camel/component/freemarker/springboot/FreemarkerComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.freemarker.springboot;
 
+import javax.annotation.Generated;
 import freemarker.template.Configuration;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
@@ -24,6 +25,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.freemarker")
 public class FreemarkerComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-ftp-starter/src/main/java/org/apache/camel/component/file/remote/springboot/FtpComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-ftp-starter/src/main/java/org/apache/camel/component/file/remote/springboot/FtpComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-ftp-starter/src/main/java/org/apache/camel/component/file/remote/springboot/FtpComponentAutoConfiguration.java
index 80427e3..756a65b 100644
--- a/platforms/spring-boot/components-starter/camel-ftp-starter/src/main/java/org/apache/camel/component/file/remote/springboot/FtpComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-ftp-starter/src/main/java/org/apache/camel/component/file/remote/springboot/FtpComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.file.remote.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.file.remote.FtpComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(FtpComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class FtpComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-ftp-starter/src/main/java/org/apache/camel/component/file/remote/springboot/FtpsComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-ftp-starter/src/main/java/org/apache/camel/component/file/remote/springboot/FtpsComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-ftp-starter/src/main/java/org/apache/camel/component/file/remote/springboot/FtpsComponentAutoConfiguration.java
index 731b91b..db13a00 100644
--- a/platforms/spring-boot/components-starter/camel-ftp-starter/src/main/java/org/apache/camel/component/file/remote/springboot/FtpsComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-ftp-starter/src/main/java/org/apache/camel/component/file/remote/springboot/FtpsComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.file.remote.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.file.remote.FtpsComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(FtpsComponentAutoConfiguration.Condition.class)
@@ -83,6 +85,7 @@ public class FtpsComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-ftp-starter/src/main/java/org/apache/camel/component/file/remote/springboot/FtpsComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-ftp-starter/src/main/java/org/apache/camel/component/file/remote/springboot/FtpsComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-ftp-starter/src/main/java/org/apache/camel/component/file/remote/springboot/FtpsComponentConfiguration.java
index 45a36e2..667f643 100644
--- a/platforms/spring-boot/components-starter/camel-ftp-starter/src/main/java/org/apache/camel/component/file/remote/springboot/FtpsComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-ftp-starter/src/main/java/org/apache/camel/component/file/remote/springboot/FtpsComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.file.remote.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -24,6 +25,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.ftps")
 public class FtpsComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-ftp-starter/src/main/java/org/apache/camel/component/file/remote/springboot/SftpComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-ftp-starter/src/main/java/org/apache/camel/component/file/remote/springboot/SftpComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-ftp-starter/src/main/java/org/apache/camel/component/file/remote/springboot/SftpComponentAutoConfiguration.java
index 1c728ea..883e8f2 100644
--- a/platforms/spring-boot/components-starter/camel-ftp-starter/src/main/java/org/apache/camel/component/file/remote/springboot/SftpComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-ftp-starter/src/main/java/org/apache/camel/component/file/remote/springboot/SftpComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.file.remote.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.file.remote.SftpComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(SftpComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class SftpComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-ganglia-starter/src/main/java/org/apache/camel/component/ganglia/springboot/GangliaComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-ganglia-starter/src/main/java/org/apache/camel/component/ganglia/springboot/GangliaComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-ganglia-starter/src/main/java/org/apache/camel/component/ganglia/springboot/GangliaComponentAutoConfiguration.java
index a325c6b..3d2fa32 100644
--- a/platforms/spring-boot/components-starter/camel-ganglia-starter/src/main/java/org/apache/camel/component/ganglia/springboot/GangliaComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-ganglia-starter/src/main/java/org/apache/camel/component/ganglia/springboot/GangliaComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.ganglia.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.ganglia.GangliaComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(GangliaComponentAutoConfiguration.Condition.class)
@@ -84,6 +86,7 @@ public class GangliaComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-ganglia-starter/src/main/java/org/apache/camel/component/ganglia/springboot/GangliaComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-ganglia-starter/src/main/java/org/apache/camel/component/ganglia/springboot/GangliaComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-ganglia-starter/src/main/java/org/apache/camel/component/ganglia/springboot/GangliaComponentConfiguration.java
index 7763525..6f82f77 100644
--- a/platforms/spring-boot/components-starter/camel-ganglia-starter/src/main/java/org/apache/camel/component/ganglia/springboot/GangliaComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-ganglia-starter/src/main/java/org/apache/camel/component/ganglia/springboot/GangliaComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.ganglia.springboot;
 
+import javax.annotation.Generated;
 import info.ganglia.gmetric4j.gmetric.GMetric.UDPAddressingMode;
 import info.ganglia.gmetric4j.gmetric.GMetricSlope;
 import info.ganglia.gmetric4j.gmetric.GMetricType;
@@ -28,6 +29,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.ganglia")
 public class GangliaComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-geocoder-starter/src/main/java/org/apache/camel/component/geocoder/springboot/GeoCoderComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-geocoder-starter/src/main/java/org/apache/camel/component/geocoder/springboot/GeoCoderComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-geocoder-starter/src/main/java/org/apache/camel/component/geocoder/springboot/GeoCoderComponentAutoConfiguration.java
index f3f4725..a0291e0 100644
--- a/platforms/spring-boot/components-starter/camel-geocoder-starter/src/main/java/org/apache/camel/component/geocoder/springboot/GeoCoderComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-geocoder-starter/src/main/java/org/apache/camel/component/geocoder/springboot/GeoCoderComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.geocoder.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.geocoder.GeoCoderComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(GeoCoderComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class GeoCoderComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-git-starter/src/main/java/org/apache/camel/component/git/springboot/GitComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-git-starter/src/main/java/org/apache/camel/component/git/springboot/GitComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-git-starter/src/main/java/org/apache/camel/component/git/springboot/GitComponentAutoConfiguration.java
index f63c61e..886a699 100644
--- a/platforms/spring-boot/components-starter/camel-git-starter/src/main/java/org/apache/camel/component/git/springboot/GitComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-git-starter/src/main/java/org/apache/camel/component/git/springboot/GitComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.git.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.git.GitComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(GitComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class GitComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-github-starter/src/main/java/org/apache/camel/component/github/springboot/GitHubComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-github-starter/src/main/java/org/apache/camel/component/github/springboot/GitHubComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-github-starter/src/main/java/org/apache/camel/component/github/springboot/GitHubComponentAutoConfiguration.java
index 69f7757..82ffa4a 100644
--- a/platforms/spring-boot/components-starter/camel-github-starter/src/main/java/org/apache/camel/component/github/springboot/GitHubComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-github-starter/src/main/java/org/apache/camel/component/github/springboot/GitHubComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.github.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.github.GitHubComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(GitHubComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class GitHubComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-google-calendar-starter/src/main/java/org/apache/camel/component/google/calendar/springboot/GoogleCalendarComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-google-calendar-starter/src/main/java/org/apache/camel/component/google/calendar/springboot/GoogleCalendarComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-google-calendar-starter/src/main/java/org/apache/camel/component/google/calendar/springboot/GoogleCalendarComponentAutoConfiguration.java
index 771dad5..ee870b5 100644
--- a/platforms/spring-boot/components-starter/camel-google-calendar-starter/src/main/java/org/apache/camel/component/google/calendar/springboot/GoogleCalendarComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-google-calendar-starter/src/main/java/org/apache/camel/component/google/calendar/springboot/GoogleCalendarComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.google.calendar.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.google.calendar.GoogleCalendarComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(GoogleCalendarComponentAutoConfiguration.Condition.class)
@@ -85,6 +87,7 @@ public class GoogleCalendarComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-google-calendar-starter/src/main/java/org/apache/camel/component/google/calendar/springboot/GoogleCalendarComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-google-calendar-starter/src/main/java/org/apache/camel/component/google/calendar/springboot/GoogleCalendarComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-google-calendar-starter/src/main/java/org/apache/camel/component/google/calendar/springboot/GoogleCalendarComponentConfiguration.java
index 68c5683..600fab6 100644
--- a/platforms/spring-boot/components-starter/camel-google-calendar-starter/src/main/java/org/apache/camel/component/google/calendar/springboot/GoogleCalendarComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-google-calendar-starter/src/main/java/org/apache/camel/component/google/calendar/springboot/GoogleCalendarComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.google.calendar.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.component.google.calendar.GoogleCalendarClientFactory;
 import org.apache.camel.component.google.calendar.internal.GoogleCalendarApiName;
 import org.springframework.boot.context.properties.ConfigurationProperties;
@@ -26,6 +27,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.google-calendar")
 public class GoogleCalendarComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-google-drive-starter/src/main/java/org/apache/camel/component/google/drive/springboot/GoogleDriveComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-google-drive-starter/src/main/java/org/apache/camel/component/google/drive/springboot/GoogleDriveComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-google-drive-starter/src/main/java/org/apache/camel/component/google/drive/springboot/GoogleDriveComponentAutoConfiguration.java
index 4fd6229..d643326 100644
--- a/platforms/spring-boot/components-starter/camel-google-drive-starter/src/main/java/org/apache/camel/component/google/drive/springboot/GoogleDriveComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-google-drive-starter/src/main/java/org/apache/camel/component/google/drive/springboot/GoogleDriveComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.google.drive.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.google.drive.GoogleDriveComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(GoogleDriveComponentAutoConfiguration.Condition.class)
@@ -84,6 +86,7 @@ public class GoogleDriveComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-google-drive-starter/src/main/java/org/apache/camel/component/google/drive/springboot/GoogleDriveComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-google-drive-starter/src/main/java/org/apache/camel/component/google/drive/springboot/GoogleDriveComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-google-drive-starter/src/main/java/org/apache/camel/component/google/drive/springboot/GoogleDriveComponentConfiguration.java
index 3aee8f5..31d46dd 100644
--- a/platforms/spring-boot/components-starter/camel-google-drive-starter/src/main/java/org/apache/camel/component/google/drive/springboot/GoogleDriveComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-google-drive-starter/src/main/java/org/apache/camel/component/google/drive/springboot/GoogleDriveComponentConfiguration.java
@@ -17,6 +17,7 @@
 package org.apache.camel.component.google.drive.springboot;
 
 import java.util.List;
+import javax.annotation.Generated;
 import org.apache.camel.component.google.drive.GoogleDriveClientFactory;
 import org.apache.camel.component.google.drive.internal.GoogleDriveApiName;
 import org.springframework.boot.context.properties.ConfigurationProperties;
@@ -28,6 +29,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.google-drive")
 public class GoogleDriveComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-google-mail-starter/src/main/java/org/apache/camel/component/google/mail/springboot/GoogleMailComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-google-mail-starter/src/main/java/org/apache/camel/component/google/mail/springboot/GoogleMailComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-google-mail-starter/src/main/java/org/apache/camel/component/google/mail/springboot/GoogleMailComponentAutoConfiguration.java
index 6c7b5b5..69b8493 100644
--- a/platforms/spring-boot/components-starter/camel-google-mail-starter/src/main/java/org/apache/camel/component/google/mail/springboot/GoogleMailComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-google-mail-starter/src/main/java/org/apache/camel/component/google/mail/springboot/GoogleMailComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.google.mail.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.google.mail.GoogleMailComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(GoogleMailComponentAutoConfiguration.Condition.class)
@@ -84,6 +86,7 @@ public class GoogleMailComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-google-mail-starter/src/main/java/org/apache/camel/component/google/mail/springboot/GoogleMailComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-google-mail-starter/src/main/java/org/apache/camel/component/google/mail/springboot/GoogleMailComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-google-mail-starter/src/main/java/org/apache/camel/component/google/mail/springboot/GoogleMailComponentConfiguration.java
index 13cf940..de05160 100644
--- a/platforms/spring-boot/components-starter/camel-google-mail-starter/src/main/java/org/apache/camel/component/google/mail/springboot/GoogleMailComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-google-mail-starter/src/main/java/org/apache/camel/component/google/mail/springboot/GoogleMailComponentConfiguration.java
@@ -17,6 +17,7 @@
 package org.apache.camel.component.google.mail.springboot;
 
 import java.util.List;
+import javax.annotation.Generated;
 import org.apache.camel.component.google.mail.GoogleMailClientFactory;
 import org.apache.camel.component.google.mail.internal.GoogleMailApiName;
 import org.springframework.boot.context.properties.ConfigurationProperties;
@@ -27,6 +28,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.google-mail")
 public class GoogleMailComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-google-pubsub-starter/src/main/java/org/apache/camel/component/google/pubsub/springboot/GooglePubsubComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-google-pubsub-starter/src/main/java/org/apache/camel/component/google/pubsub/springboot/GooglePubsubComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-google-pubsub-starter/src/main/java/org/apache/camel/component/google/pubsub/springboot/GooglePubsubComponentAutoConfiguration.java
index 31f14b9..f018f70 100644
--- a/platforms/spring-boot/components-starter/camel-google-pubsub-starter/src/main/java/org/apache/camel/component/google/pubsub/springboot/GooglePubsubComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-google-pubsub-starter/src/main/java/org/apache/camel/component/google/pubsub/springboot/GooglePubsubComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.google.pubsub.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.google.pubsub.GooglePubsubComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(GooglePubsubComponentAutoConfiguration.Condition.class)
@@ -84,6 +86,7 @@ public class GooglePubsubComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-google-pubsub-starter/src/main/java/org/apache/camel/component/google/pubsub/springboot/GooglePubsubComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-google-pubsub-starter/src/main/java/org/apache/camel/component/google/pubsub/springboot/GooglePubsubComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-google-pubsub-starter/src/main/java/org/apache/camel/component/google/pubsub/springboot/GooglePubsubComponentConfiguration.java
index 1c3116c..80e22f8 100644
--- a/platforms/spring-boot/components-starter/camel-google-pubsub-starter/src/main/java/org/apache/camel/component/google/pubsub/springboot/GooglePubsubComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-google-pubsub-starter/src/main/java/org/apache/camel/component/google/pubsub/springboot/GooglePubsubComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.google.pubsub.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -24,6 +25,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.google-pubsub")
 public class GooglePubsubComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-gora-starter/src/main/java/org/apache/camel/component/gora/springboot/GoraComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-gora-starter/src/main/java/org/apache/camel/component/gora/springboot/GoraComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-gora-starter/src/main/java/org/apache/camel/component/gora/springboot/GoraComponentAutoConfiguration.java
index 8bc3294..431f241 100644
--- a/platforms/spring-boot/components-starter/camel-gora-starter/src/main/java/org/apache/camel/component/gora/springboot/GoraComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-gora-starter/src/main/java/org/apache/camel/component/gora/springboot/GoraComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.gora.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.gora.GoraComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(GoraComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class GoraComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-groovy-starter/src/main/java/org/apache/camel/language/groovy/springboot/GroovyLanguageAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-groovy-starter/src/main/java/org/apache/camel/language/groovy/springboot/GroovyLanguageAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-groovy-starter/src/main/java/org/apache/camel/language/groovy/springboot/GroovyLanguageAutoConfiguration.java
index 31ae769..f1d4da7 100644
--- a/platforms/spring-boot/components-starter/camel-groovy-starter/src/main/java/org/apache/camel/language/groovy/springboot/GroovyLanguageAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-groovy-starter/src/main/java/org/apache/camel/language/groovy/springboot/GroovyLanguageAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.language.groovy.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.CamelContextAware;
 import org.apache.camel.language.groovy.GroovyLanguage;
@@ -41,6 +42,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(GroovyLanguageAutoConfiguration.Condition.class)
@@ -70,6 +72,7 @@ public class GroovyLanguageAutoConfiguration {
         return language;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-groovy-starter/src/main/java/org/apache/camel/language/groovy/springboot/GroovyLanguageConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-groovy-starter/src/main/java/org/apache/camel/language/groovy/springboot/GroovyLanguageConfiguration.java b/platforms/spring-boot/components-starter/camel-groovy-starter/src/main/java/org/apache/camel/language/groovy/springboot/GroovyLanguageConfiguration.java
index 8b34501..a10a018 100644
--- a/platforms/spring-boot/components-starter/camel-groovy-starter/src/main/java/org/apache/camel/language/groovy/springboot/GroovyLanguageConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-groovy-starter/src/main/java/org/apache/camel/language/groovy/springboot/GroovyLanguageConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.language.groovy.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -23,6 +24,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.language.groovy")
 public class GroovyLanguageConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-grpc-starter/src/main/java/org/apache/camel/component/grpc/springboot/GrpcComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-grpc-starter/src/main/java/org/apache/camel/component/grpc/springboot/GrpcComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-grpc-starter/src/main/java/org/apache/camel/component/grpc/springboot/GrpcComponentAutoConfiguration.java
index f511eb0..2b584d5 100644
--- a/platforms/spring-boot/components-starter/camel-grpc-starter/src/main/java/org/apache/camel/component/grpc/springboot/GrpcComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-grpc-starter/src/main/java/org/apache/camel/component/grpc/springboot/GrpcComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.grpc.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.grpc.GrpcComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(GrpcComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class GrpcComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-gson-starter/src/main/java/org/apache/camel/component/gson/springboot/GsonDataFormatAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-gson-starter/src/main/java/org/apache/camel/component/gson/springboot/GsonDataFormatAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-gson-starter/src/main/java/org/apache/camel/component/gson/springboot/GsonDataFormatAutoConfiguration.java
index 97122f2..09db4a2 100644
--- a/platforms/spring-boot/components-starter/camel-gson-starter/src/main/java/org/apache/camel/component/gson/springboot/GsonDataFormatAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-gson-starter/src/main/java/org/apache/camel/component/gson/springboot/GsonDataFormatAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.gson.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.CamelContextAware;
 import org.apache.camel.RuntimeCamelException;
@@ -43,6 +44,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(GsonDataFormatAutoConfiguration.Condition.class)
@@ -82,6 +84,7 @@ public class GsonDataFormatAutoConfiguration {
         };
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-gson-starter/src/main/java/org/apache/camel/component/gson/springboot/GsonDataFormatConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-gson-starter/src/main/java/org/apache/camel/component/gson/springboot/GsonDataFormatConfiguration.java b/platforms/spring-boot/components-starter/camel-gson-starter/src/main/java/org/apache/camel/component/gson/springboot/GsonDataFormatConfiguration.java
index cf25b31..4897562 100644
--- a/platforms/spring-boot/components-starter/camel-gson-starter/src/main/java/org/apache/camel/component/gson/springboot/GsonDataFormatConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-gson-starter/src/main/java/org/apache/camel/component/gson/springboot/GsonDataFormatConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.gson.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.component.gson.GsonDataFormat;
 import org.apache.camel.model.dataformat.JsonLibrary;
 import org.springframework.boot.context.properties.ConfigurationProperties;
@@ -25,6 +26,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.dataformat.json-gson")
 public class GsonDataFormatConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-guava-eventbus-starter/src/main/java/org/apache/camel/component/guava/eventbus/springboot/GuavaEventBusComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-guava-eventbus-starter/src/main/java/org/apache/camel/component/guava/eventbus/springboot/GuavaEventBusComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-guava-eventbus-starter/src/main/java/org/apache/camel/component/guava/eventbus/springboot/GuavaEventBusComponentAutoConfiguration.java
index 23aa142..cf23c1e 100644
--- a/platforms/spring-boot/components-starter/camel-guava-eventbus-starter/src/main/java/org/apache/camel/component/guava/eventbus/springboot/GuavaEventBusComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-guava-eventbus-starter/src/main/java/org/apache/camel/component/guava/eventbus/springboot/GuavaEventBusComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.guava.eventbus.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.guava.eventbus.GuavaEventBusComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(GuavaEventBusComponentAutoConfiguration.Condition.class)
@@ -84,6 +86,7 @@ public class GuavaEventBusComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-guava-eventbus-starter/src/main/java/org/apache/camel/component/guava/eventbus/springboot/GuavaEventBusComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-guava-eventbus-starter/src/main/java/org/apache/camel/component/guava/eventbus/springboot/GuavaEventBusComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-guava-eventbus-starter/src/main/java/org/apache/camel/component/guava/eventbus/springboot/GuavaEventBusComponentConfiguration.java
index 6dbcc5c..1b13339 100644
--- a/platforms/spring-boot/components-starter/camel-guava-eventbus-starter/src/main/java/org/apache/camel/component/guava/eventbus/springboot/GuavaEventBusComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-guava-eventbus-starter/src/main/java/org/apache/camel/component/guava/eventbus/springboot/GuavaEventBusComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.guava.eventbus.springboot;
 
+import javax.annotation.Generated;
 import com.google.common.eventbus.EventBus;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 import org.springframework.boot.context.properties.NestedConfigurationProperty;
@@ -26,6 +27,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.guava-eventbus")
 public class GuavaEventBusComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-hazelcast-starter/src/main/java/org/apache/camel/component/hazelcast/springboot/HazelcastComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-hazelcast-starter/src/main/java/org/apache/camel/component/hazelcast/springboot/HazelcastComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-hazelcast-starter/src/main/java/org/apache/camel/component/hazelcast/springboot/HazelcastComponentAutoConfiguration.java
index 182007c..f779771 100644
--- a/platforms/spring-boot/components-starter/camel-hazelcast-starter/src/main/java/org/apache/camel/component/hazelcast/springboot/HazelcastComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-hazelcast-starter/src/main/java/org/apache/camel/component/hazelcast/springboot/HazelcastComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.hazelcast.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.hazelcast.HazelcastComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(HazelcastComponentAutoConfiguration.Condition.class)
@@ -84,6 +86,7 @@ public class HazelcastComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-hazelcast-starter/src/main/java/org/apache/camel/component/hazelcast/springboot/HazelcastComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-hazelcast-starter/src/main/java/org/apache/camel/component/hazelcast/springboot/HazelcastComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-hazelcast-starter/src/main/java/org/apache/camel/component/hazelcast/springboot/HazelcastComponentConfiguration.java
index a6a8fec..abda166 100644
--- a/platforms/spring-boot/components-starter/camel-hazelcast-starter/src/main/java/org/apache/camel/component/hazelcast/springboot/HazelcastComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-hazelcast-starter/src/main/java/org/apache/camel/component/hazelcast/springboot/HazelcastComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.hazelcast.springboot;
 
+import javax.annotation.Generated;
 import com.hazelcast.core.HazelcastInstance;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 import org.springframework.boot.context.properties.NestedConfigurationProperty;
@@ -26,6 +27,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.hazelcast")
 public class HazelcastComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-hbase-starter/src/main/java/org/apache/camel/component/hbase/springboot/HBaseComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-hbase-starter/src/main/java/org/apache/camel/component/hbase/springboot/HBaseComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-hbase-starter/src/main/java/org/apache/camel/component/hbase/springboot/HBaseComponentAutoConfiguration.java
index 6118483..3ce6fae 100644
--- a/platforms/spring-boot/components-starter/camel-hbase-starter/src/main/java/org/apache/camel/component/hbase/springboot/HBaseComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-hbase-starter/src/main/java/org/apache/camel/component/hbase/springboot/HBaseComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.hbase.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.hbase.HBaseComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(HBaseComponentAutoConfiguration.Condition.class)
@@ -83,6 +85,7 @@ public class HBaseComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-hbase-starter/src/main/java/org/apache/camel/component/hbase/springboot/HBaseComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-hbase-starter/src/main/java/org/apache/camel/component/hbase/springboot/HBaseComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-hbase-starter/src/main/java/org/apache/camel/component/hbase/springboot/HBaseComponentConfiguration.java
index 74eff3f..a9540d4 100644
--- a/platforms/spring-boot/components-starter/camel-hbase-starter/src/main/java/org/apache/camel/component/hbase/springboot/HBaseComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-hbase-starter/src/main/java/org/apache/camel/component/hbase/springboot/HBaseComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.hbase.springboot;
 
+import javax.annotation.Generated;
 import org.apache.hadoop.conf.Configuration;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 import org.springframework.boot.context.properties.NestedConfigurationProperty;
@@ -25,6 +26,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.hbase")
 public class HBaseComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-hdfs-starter/src/main/java/org/apache/camel/component/hdfs/springboot/HdfsComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-hdfs-starter/src/main/java/org/apache/camel/component/hdfs/springboot/HdfsComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-hdfs-starter/src/main/java/org/apache/camel/component/hdfs/springboot/HdfsComponentAutoConfiguration.java
index d128b0f..2da832e 100644
--- a/platforms/spring-boot/components-starter/camel-hdfs-starter/src/main/java/org/apache/camel/component/hdfs/springboot/HdfsComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-hdfs-starter/src/main/java/org/apache/camel/component/hdfs/springboot/HdfsComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.hdfs.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.hdfs.HdfsComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(HdfsComponentAutoConfiguration.Condition.class)
@@ -83,6 +85,7 @@ public class HdfsComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-hdfs-starter/src/main/java/org/apache/camel/component/hdfs/springboot/HdfsComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-hdfs-starter/src/main/java/org/apache/camel/component/hdfs/springboot/HdfsComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-hdfs-starter/src/main/java/org/apache/camel/component/hdfs/springboot/HdfsComponentConfiguration.java
index 324f869..83f62eb 100644
--- a/platforms/spring-boot/components-starter/camel-hdfs-starter/src/main/java/org/apache/camel/component/hdfs/springboot/HdfsComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-hdfs-starter/src/main/java/org/apache/camel/component/hdfs/springboot/HdfsComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.hdfs.springboot;
 
+import javax.annotation.Generated;
 import javax.security.auth.login.Configuration;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
@@ -24,6 +25,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.hdfs")
 public class HdfsComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-hdfs2-starter/src/main/java/org/apache/camel/component/hdfs2/springboot/HdfsComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-hdfs2-starter/src/main/java/org/apache/camel/component/hdfs2/springboot/HdfsComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-hdfs2-starter/src/main/java/org/apache/camel/component/hdfs2/springboot/HdfsComponentAutoConfiguration.java
index 88b86d2..5e7cc06 100644
--- a/platforms/spring-boot/components-starter/camel-hdfs2-starter/src/main/java/org/apache/camel/component/hdfs2/springboot/HdfsComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-hdfs2-starter/src/main/java/org/apache/camel/component/hdfs2/springboot/HdfsComponentAutoConfiguration.java
@@ -41,7 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
-@Generated(value = "org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo", date = "2017-04-19T08:03:41.690Z")
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(HdfsComponentAutoConfiguration.Condition.class)
@@ -85,7 +85,7 @@ public class HdfsComponentAutoConfiguration {
         return component;
     }
 
-    @Generated(value = "org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo", date = "2017-04-19T08:03:41.738Z")
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-hdfs2-starter/src/main/java/org/apache/camel/component/hdfs2/springboot/HdfsComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-hdfs2-starter/src/main/java/org/apache/camel/component/hdfs2/springboot/HdfsComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-hdfs2-starter/src/main/java/org/apache/camel/component/hdfs2/springboot/HdfsComponentConfiguration.java
index 29d8a56..4c45bf1 100644
--- a/platforms/spring-boot/components-starter/camel-hdfs2-starter/src/main/java/org/apache/camel/component/hdfs2/springboot/HdfsComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-hdfs2-starter/src/main/java/org/apache/camel/component/hdfs2/springboot/HdfsComponentConfiguration.java
@@ -25,7 +25,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
-@Generated(value = "org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo", date = "2017-04-19T08:03:41.545Z")
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.hdfs2")
 public class HdfsComponentConfiguration {
 


[06/13] camel git commit: CAMEL-11165 Add @Generated annotation to code g...

Posted by zr...@apache.org.
http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-jpa-starter/src/main/java/org/apache/camel/component/jpa/springboot/JpaComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-jpa-starter/src/main/java/org/apache/camel/component/jpa/springboot/JpaComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-jpa-starter/src/main/java/org/apache/camel/component/jpa/springboot/JpaComponentAutoConfiguration.java
index 3aa6b0e..e8c56a7 100644
--- a/platforms/spring-boot/components-starter/camel-jpa-starter/src/main/java/org/apache/camel/component/jpa/springboot/JpaComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-jpa-starter/src/main/java/org/apache/camel/component/jpa/springboot/JpaComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.jpa.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.jpa.JpaComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(JpaComponentAutoConfiguration.Condition.class)
@@ -83,6 +85,7 @@ public class JpaComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-jpa-starter/src/main/java/org/apache/camel/component/jpa/springboot/JpaComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-jpa-starter/src/main/java/org/apache/camel/component/jpa/springboot/JpaComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-jpa-starter/src/main/java/org/apache/camel/component/jpa/springboot/JpaComponentConfiguration.java
index ed73738..93064c1 100644
--- a/platforms/spring-boot/components-starter/camel-jpa-starter/src/main/java/org/apache/camel/component/jpa/springboot/JpaComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-jpa-starter/src/main/java/org/apache/camel/component/jpa/springboot/JpaComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.jpa.springboot;
 
+import javax.annotation.Generated;
 import javax.persistence.EntityManagerFactory;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 import org.springframework.boot.context.properties.NestedConfigurationProperty;
@@ -27,6 +28,7 @@ import org.springframework.transaction.PlatformTransactionManager;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.jpa")
 public class JpaComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-jsch-starter/src/main/java/org/apache/camel/component/scp/springboot/ScpComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-jsch-starter/src/main/java/org/apache/camel/component/scp/springboot/ScpComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-jsch-starter/src/main/java/org/apache/camel/component/scp/springboot/ScpComponentAutoConfiguration.java
index fcff156..d626d83 100644
--- a/platforms/spring-boot/components-starter/camel-jsch-starter/src/main/java/org/apache/camel/component/scp/springboot/ScpComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-jsch-starter/src/main/java/org/apache/camel/component/scp/springboot/ScpComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.scp.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.scp.ScpComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(ScpComponentAutoConfiguration.Condition.class)
@@ -83,6 +85,7 @@ public class ScpComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-jsch-starter/src/main/java/org/apache/camel/component/scp/springboot/ScpComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-jsch-starter/src/main/java/org/apache/camel/component/scp/springboot/ScpComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-jsch-starter/src/main/java/org/apache/camel/component/scp/springboot/ScpComponentConfiguration.java
index 5ec146c..3423184 100644
--- a/platforms/spring-boot/components-starter/camel-jsch-starter/src/main/java/org/apache/camel/component/scp/springboot/ScpComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-jsch-starter/src/main/java/org/apache/camel/component/scp/springboot/ScpComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.scp.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -23,6 +24,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.scp")
 public class ScpComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-jsonpath-starter/src/main/java/org/apache/camel/jsonpath/springboot/JsonPathLanguageAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-jsonpath-starter/src/main/java/org/apache/camel/jsonpath/springboot/JsonPathLanguageAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-jsonpath-starter/src/main/java/org/apache/camel/jsonpath/springboot/JsonPathLanguageAutoConfiguration.java
index 86e337e..654c8c8 100644
--- a/platforms/spring-boot/components-starter/camel-jsonpath-starter/src/main/java/org/apache/camel/jsonpath/springboot/JsonPathLanguageAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-jsonpath-starter/src/main/java/org/apache/camel/jsonpath/springboot/JsonPathLanguageAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.jsonpath.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.CamelContextAware;
 import org.apache.camel.jsonpath.JsonPathLanguage;
@@ -41,6 +42,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(JsonPathLanguageAutoConfiguration.Condition.class)
@@ -71,6 +73,7 @@ public class JsonPathLanguageAutoConfiguration {
         return language;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-jsonpath-starter/src/main/java/org/apache/camel/jsonpath/springboot/JsonPathLanguageConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-jsonpath-starter/src/main/java/org/apache/camel/jsonpath/springboot/JsonPathLanguageConfiguration.java b/platforms/spring-boot/components-starter/camel-jsonpath-starter/src/main/java/org/apache/camel/jsonpath/springboot/JsonPathLanguageConfiguration.java
index 616362d..e812a7f 100644
--- a/platforms/spring-boot/components-starter/camel-jsonpath-starter/src/main/java/org/apache/camel/jsonpath/springboot/JsonPathLanguageConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-jsonpath-starter/src/main/java/org/apache/camel/jsonpath/springboot/JsonPathLanguageConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.jsonpath.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -23,6 +24,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.language.jsonpath")
 public class JsonPathLanguageConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-jt400-starter/src/main/java/org/apache/camel/component/jt400/springboot/Jt400ComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-jt400-starter/src/main/java/org/apache/camel/component/jt400/springboot/Jt400ComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-jt400-starter/src/main/java/org/apache/camel/component/jt400/springboot/Jt400ComponentAutoConfiguration.java
index d7e1d1d..28e9128 100644
--- a/platforms/spring-boot/components-starter/camel-jt400-starter/src/main/java/org/apache/camel/component/jt400/springboot/Jt400ComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-jt400-starter/src/main/java/org/apache/camel/component/jt400/springboot/Jt400ComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.jt400.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.jt400.Jt400Component;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(Jt400ComponentAutoConfiguration.Condition.class)
@@ -83,6 +85,7 @@ public class Jt400ComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-jt400-starter/src/main/java/org/apache/camel/component/jt400/springboot/Jt400ComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-jt400-starter/src/main/java/org/apache/camel/component/jt400/springboot/Jt400ComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-jt400-starter/src/main/java/org/apache/camel/component/jt400/springboot/Jt400ComponentConfiguration.java
index 1da21d4..7fa9c36 100644
--- a/platforms/spring-boot/components-starter/camel-jt400-starter/src/main/java/org/apache/camel/component/jt400/springboot/Jt400ComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-jt400-starter/src/main/java/org/apache/camel/component/jt400/springboot/Jt400ComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.jt400.springboot;
 
+import javax.annotation.Generated;
 import com.ibm.as400.access.AS400ConnectionPool;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 import org.springframework.boot.context.properties.NestedConfigurationProperty;
@@ -26,6 +27,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.jt400")
 public class Jt400ComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-juel-starter/src/main/java/org/apache/camel/language/juel/springboot/JuelLanguageAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-juel-starter/src/main/java/org/apache/camel/language/juel/springboot/JuelLanguageAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-juel-starter/src/main/java/org/apache/camel/language/juel/springboot/JuelLanguageAutoConfiguration.java
index b419281..0ec2827 100644
--- a/platforms/spring-boot/components-starter/camel-juel-starter/src/main/java/org/apache/camel/language/juel/springboot/JuelLanguageAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-juel-starter/src/main/java/org/apache/camel/language/juel/springboot/JuelLanguageAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.language.juel.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.CamelContextAware;
 import org.apache.camel.language.juel.JuelLanguage;
@@ -41,6 +42,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(JuelLanguageAutoConfiguration.Condition.class)
@@ -70,6 +72,7 @@ public class JuelLanguageAutoConfiguration {
         return language;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-juel-starter/src/main/java/org/apache/camel/language/juel/springboot/JuelLanguageConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-juel-starter/src/main/java/org/apache/camel/language/juel/springboot/JuelLanguageConfiguration.java b/platforms/spring-boot/components-starter/camel-juel-starter/src/main/java/org/apache/camel/language/juel/springboot/JuelLanguageConfiguration.java
index 08ae2da..87b9baf 100644
--- a/platforms/spring-boot/components-starter/camel-juel-starter/src/main/java/org/apache/camel/language/juel/springboot/JuelLanguageConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-juel-starter/src/main/java/org/apache/camel/language/juel/springboot/JuelLanguageConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.language.juel.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -23,6 +24,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.language.el")
 public class JuelLanguageConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-jxpath-starter/src/main/java/org/apache/camel/language/jxpath/springboot/JXPathLanguageAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-jxpath-starter/src/main/java/org/apache/camel/language/jxpath/springboot/JXPathLanguageAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-jxpath-starter/src/main/java/org/apache/camel/language/jxpath/springboot/JXPathLanguageAutoConfiguration.java
index 928aba9..3816ffd 100644
--- a/platforms/spring-boot/components-starter/camel-jxpath-starter/src/main/java/org/apache/camel/language/jxpath/springboot/JXPathLanguageAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-jxpath-starter/src/main/java/org/apache/camel/language/jxpath/springboot/JXPathLanguageAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.language.jxpath.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.CamelContextAware;
 import org.apache.camel.language.jxpath.JXPathLanguage;
@@ -41,6 +42,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(JXPathLanguageAutoConfiguration.Condition.class)
@@ -70,6 +72,7 @@ public class JXPathLanguageAutoConfiguration {
         return language;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-jxpath-starter/src/main/java/org/apache/camel/language/jxpath/springboot/JXPathLanguageConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-jxpath-starter/src/main/java/org/apache/camel/language/jxpath/springboot/JXPathLanguageConfiguration.java b/platforms/spring-boot/components-starter/camel-jxpath-starter/src/main/java/org/apache/camel/language/jxpath/springboot/JXPathLanguageConfiguration.java
index ca46049..5fc6add 100644
--- a/platforms/spring-boot/components-starter/camel-jxpath-starter/src/main/java/org/apache/camel/language/jxpath/springboot/JXPathLanguageConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-jxpath-starter/src/main/java/org/apache/camel/language/jxpath/springboot/JXPathLanguageConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.language.jxpath.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -23,6 +24,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.language.jxpath")
 public class JXPathLanguageConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-kafka-starter/src/main/java/org/apache/camel/component/kafka/springboot/KafkaComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-kafka-starter/src/main/java/org/apache/camel/component/kafka/springboot/KafkaComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-kafka-starter/src/main/java/org/apache/camel/component/kafka/springboot/KafkaComponentAutoConfiguration.java
index a3022ee..0c8d81a 100644
--- a/platforms/spring-boot/components-starter/camel-kafka-starter/src/main/java/org/apache/camel/component/kafka/springboot/KafkaComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-kafka-starter/src/main/java/org/apache/camel/component/kafka/springboot/KafkaComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.kafka.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.kafka.KafkaComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(KafkaComponentAutoConfiguration.Condition.class)
@@ -83,6 +85,7 @@ public class KafkaComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-kafka-starter/src/main/java/org/apache/camel/component/kafka/springboot/KafkaComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-kafka-starter/src/main/java/org/apache/camel/component/kafka/springboot/KafkaComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-kafka-starter/src/main/java/org/apache/camel/component/kafka/springboot/KafkaComponentConfiguration.java
index 3843e8a..160c552 100644
--- a/platforms/spring-boot/components-starter/camel-kafka-starter/src/main/java/org/apache/camel/component/kafka/springboot/KafkaComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-kafka-starter/src/main/java/org/apache/camel/component/kafka/springboot/KafkaComponentConfiguration.java
@@ -17,6 +17,7 @@
 package org.apache.camel.component.kafka.springboot;
 
 import java.util.concurrent.ExecutorService;
+import javax.annotation.Generated;
 import org.apache.camel.spi.StateRepository;
 import org.apache.camel.util.jsse.SSLContextParameters;
 import org.springframework.boot.context.properties.ConfigurationProperties;
@@ -28,6 +29,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.kafka")
 public class KafkaComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-kestrel-starter/src/main/java/org/apache/camel/component/kestrel/springboot/KestrelComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-kestrel-starter/src/main/java/org/apache/camel/component/kestrel/springboot/KestrelComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-kestrel-starter/src/main/java/org/apache/camel/component/kestrel/springboot/KestrelComponentAutoConfiguration.java
index d6be15e..c1e238c 100644
--- a/platforms/spring-boot/components-starter/camel-kestrel-starter/src/main/java/org/apache/camel/component/kestrel/springboot/KestrelComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-kestrel-starter/src/main/java/org/apache/camel/component/kestrel/springboot/KestrelComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.kestrel.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.kestrel.KestrelComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(KestrelComponentAutoConfiguration.Condition.class)
@@ -84,6 +86,7 @@ public class KestrelComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-kestrel-starter/src/main/java/org/apache/camel/component/kestrel/springboot/KestrelComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-kestrel-starter/src/main/java/org/apache/camel/component/kestrel/springboot/KestrelComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-kestrel-starter/src/main/java/org/apache/camel/component/kestrel/springboot/KestrelComponentConfiguration.java
index 9d62010..2f04772 100644
--- a/platforms/spring-boot/components-starter/camel-kestrel-starter/src/main/java/org/apache/camel/component/kestrel/springboot/KestrelComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-kestrel-starter/src/main/java/org/apache/camel/component/kestrel/springboot/KestrelComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.kestrel.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -24,6 +25,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.kestrel")
 public class KestrelComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-krati-starter/src/main/java/org/apache/camel/component/krati/springboot/KratiComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-krati-starter/src/main/java/org/apache/camel/component/krati/springboot/KratiComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-krati-starter/src/main/java/org/apache/camel/component/krati/springboot/KratiComponentAutoConfiguration.java
index 9930712..8147c37 100644
--- a/platforms/spring-boot/components-starter/camel-krati-starter/src/main/java/org/apache/camel/component/krati/springboot/KratiComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-krati-starter/src/main/java/org/apache/camel/component/krati/springboot/KratiComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.krati.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.krati.KratiComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(KratiComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class KratiComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-kubernetes-starter/src/main/java/org/apache/camel/component/kubernetes/springboot/KubernetesComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-kubernetes-starter/src/main/java/org/apache/camel/component/kubernetes/springboot/KubernetesComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-kubernetes-starter/src/main/java/org/apache/camel/component/kubernetes/springboot/KubernetesComponentAutoConfiguration.java
index c3b5545..5bcd127 100644
--- a/platforms/spring-boot/components-starter/camel-kubernetes-starter/src/main/java/org/apache/camel/component/kubernetes/springboot/KubernetesComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-kubernetes-starter/src/main/java/org/apache/camel/component/kubernetes/springboot/KubernetesComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.kubernetes.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.kubernetes.KubernetesComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(KubernetesComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class KubernetesComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-ldap-starter/src/main/java/org/apache/camel/component/ldap/springboot/LdapComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-ldap-starter/src/main/java/org/apache/camel/component/ldap/springboot/LdapComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-ldap-starter/src/main/java/org/apache/camel/component/ldap/springboot/LdapComponentAutoConfiguration.java
index 9a541be..7f4bc3e 100644
--- a/platforms/spring-boot/components-starter/camel-ldap-starter/src/main/java/org/apache/camel/component/ldap/springboot/LdapComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-ldap-starter/src/main/java/org/apache/camel/component/ldap/springboot/LdapComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.ldap.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.ldap.LdapComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(LdapComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class LdapComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-linkedin-starter/src/main/java/org/apache/camel/component/linkedin/springboot/LinkedInComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-linkedin-starter/src/main/java/org/apache/camel/component/linkedin/springboot/LinkedInComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-linkedin-starter/src/main/java/org/apache/camel/component/linkedin/springboot/LinkedInComponentAutoConfiguration.java
index c183aba..4bc8079 100644
--- a/platforms/spring-boot/components-starter/camel-linkedin-starter/src/main/java/org/apache/camel/component/linkedin/springboot/LinkedInComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-linkedin-starter/src/main/java/org/apache/camel/component/linkedin/springboot/LinkedInComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.linkedin.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.linkedin.LinkedInComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(LinkedInComponentAutoConfiguration.Condition.class)
@@ -84,6 +86,7 @@ public class LinkedInComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-linkedin-starter/src/main/java/org/apache/camel/component/linkedin/springboot/LinkedInComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-linkedin-starter/src/main/java/org/apache/camel/component/linkedin/springboot/LinkedInComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-linkedin-starter/src/main/java/org/apache/camel/component/linkedin/springboot/LinkedInComponentConfiguration.java
index 86ab776..d7b753a 100644
--- a/platforms/spring-boot/components-starter/camel-linkedin-starter/src/main/java/org/apache/camel/component/linkedin/springboot/LinkedInComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-linkedin-starter/src/main/java/org/apache/camel/component/linkedin/springboot/LinkedInComponentConfiguration.java
@@ -17,6 +17,7 @@
 package org.apache.camel.component.linkedin.springboot;
 
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.component.linkedin.api.OAuthScope;
 import org.apache.camel.component.linkedin.api.OAuthSecureStorage;
 import org.apache.camel.component.linkedin.internal.LinkedInApiName;
@@ -28,6 +29,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.linkedin")
 public class LinkedInComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-lucene-starter/src/main/java/org/apache/camel/component/lucene/springboot/LuceneComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-lucene-starter/src/main/java/org/apache/camel/component/lucene/springboot/LuceneComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-lucene-starter/src/main/java/org/apache/camel/component/lucene/springboot/LuceneComponentAutoConfiguration.java
index 358005c..64eec42 100644
--- a/platforms/spring-boot/components-starter/camel-lucene-starter/src/main/java/org/apache/camel/component/lucene/springboot/LuceneComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-lucene-starter/src/main/java/org/apache/camel/component/lucene/springboot/LuceneComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.lucene.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.lucene.LuceneComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(LuceneComponentAutoConfiguration.Condition.class)
@@ -83,6 +85,7 @@ public class LuceneComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-lucene-starter/src/main/java/org/apache/camel/component/lucene/springboot/LuceneComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-lucene-starter/src/main/java/org/apache/camel/component/lucene/springboot/LuceneComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-lucene-starter/src/main/java/org/apache/camel/component/lucene/springboot/LuceneComponentConfiguration.java
index 25aaf95..6513191 100644
--- a/platforms/spring-boot/components-starter/camel-lucene-starter/src/main/java/org/apache/camel/component/lucene/springboot/LuceneComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-lucene-starter/src/main/java/org/apache/camel/component/lucene/springboot/LuceneComponentConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.lucene.springboot;
 
 import java.io.File;
 import java.net.URI;
+import javax.annotation.Generated;
 import org.apache.camel.component.lucene.LuceneOperation;
 import org.apache.lucene.analysis.Analyzer;
 import org.apache.lucene.util.Version;
@@ -29,6 +30,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.lucene")
 public class LuceneComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-lumberjack-starter/src/main/java/org/apache/camel/component/lumberjack/springboot/LumberjackComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-lumberjack-starter/src/main/java/org/apache/camel/component/lumberjack/springboot/LumberjackComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-lumberjack-starter/src/main/java/org/apache/camel/component/lumberjack/springboot/LumberjackComponentAutoConfiguration.java
index 070766e..df79781 100644
--- a/platforms/spring-boot/components-starter/camel-lumberjack-starter/src/main/java/org/apache/camel/component/lumberjack/springboot/LumberjackComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-lumberjack-starter/src/main/java/org/apache/camel/component/lumberjack/springboot/LumberjackComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.lumberjack.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.lumberjack.LumberjackComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(LumberjackComponentAutoConfiguration.Condition.class)
@@ -84,6 +86,7 @@ public class LumberjackComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-lumberjack-starter/src/main/java/org/apache/camel/component/lumberjack/springboot/LumberjackComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-lumberjack-starter/src/main/java/org/apache/camel/component/lumberjack/springboot/LumberjackComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-lumberjack-starter/src/main/java/org/apache/camel/component/lumberjack/springboot/LumberjackComponentConfiguration.java
index 6836fb6..611df02 100644
--- a/platforms/spring-boot/components-starter/camel-lumberjack-starter/src/main/java/org/apache/camel/component/lumberjack/springboot/LumberjackComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-lumberjack-starter/src/main/java/org/apache/camel/component/lumberjack/springboot/LumberjackComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.lumberjack.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.util.jsse.SSLContextParameters;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 import org.springframework.boot.context.properties.NestedConfigurationProperty;
@@ -26,6 +27,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.lumberjack")
 public class LumberjackComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-lzf-starter/src/main/java/org/apache/camel/dataformat/lzf/springboot/LZFDataFormatAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-lzf-starter/src/main/java/org/apache/camel/dataformat/lzf/springboot/LZFDataFormatAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-lzf-starter/src/main/java/org/apache/camel/dataformat/lzf/springboot/LZFDataFormatAutoConfiguration.java
index fdffdef..cd137da 100644
--- a/platforms/spring-boot/components-starter/camel-lzf-starter/src/main/java/org/apache/camel/dataformat/lzf/springboot/LZFDataFormatAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-lzf-starter/src/main/java/org/apache/camel/dataformat/lzf/springboot/LZFDataFormatAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.dataformat.lzf.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.CamelContextAware;
 import org.apache.camel.RuntimeCamelException;
@@ -43,6 +44,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(LZFDataFormatAutoConfiguration.Condition.class)
@@ -82,6 +84,7 @@ public class LZFDataFormatAutoConfiguration {
         };
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-lzf-starter/src/main/java/org/apache/camel/dataformat/lzf/springboot/LZFDataFormatConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-lzf-starter/src/main/java/org/apache/camel/dataformat/lzf/springboot/LZFDataFormatConfiguration.java b/platforms/spring-boot/components-starter/camel-lzf-starter/src/main/java/org/apache/camel/dataformat/lzf/springboot/LZFDataFormatConfiguration.java
index 9a716b6..f04ab15 100644
--- a/platforms/spring-boot/components-starter/camel-lzf-starter/src/main/java/org/apache/camel/dataformat/lzf/springboot/LZFDataFormatConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-lzf-starter/src/main/java/org/apache/camel/dataformat/lzf/springboot/LZFDataFormatConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.dataformat.lzf.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -23,6 +24,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.dataformat.lzf")
 public class LZFDataFormatConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-mail-starter/src/main/java/org/apache/camel/component/mail/springboot/MailComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-mail-starter/src/main/java/org/apache/camel/component/mail/springboot/MailComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-mail-starter/src/main/java/org/apache/camel/component/mail/springboot/MailComponentAutoConfiguration.java
index 9e6e7b3..fcd9d5e 100644
--- a/platforms/spring-boot/components-starter/camel-mail-starter/src/main/java/org/apache/camel/component/mail/springboot/MailComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-mail-starter/src/main/java/org/apache/camel/component/mail/springboot/MailComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.mail.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.mail.MailComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(MailComponentAutoConfiguration.Condition.class)
@@ -84,6 +86,7 @@ public class MailComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-mail-starter/src/main/java/org/apache/camel/component/mail/springboot/MailComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-mail-starter/src/main/java/org/apache/camel/component/mail/springboot/MailComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-mail-starter/src/main/java/org/apache/camel/component/mail/springboot/MailComponentConfiguration.java
index fb45260..3439866 100644
--- a/platforms/spring-boot/components-starter/camel-mail-starter/src/main/java/org/apache/camel/component/mail/springboot/MailComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-mail-starter/src/main/java/org/apache/camel/component/mail/springboot/MailComponentConfiguration.java
@@ -17,6 +17,7 @@
 package org.apache.camel.component.mail.springboot;
 
 import java.util.Properties;
+import javax.annotation.Generated;
 import javax.mail.Session;
 import org.apache.camel.component.mail.AttachmentsContentTransferEncodingResolver;
 import org.apache.camel.component.mail.ContentTypeResolver;
@@ -30,6 +31,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.mail")
 public class MailComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-mail-starter/src/main/java/org/apache/camel/dataformat/mime/multipart/springboot/MimeMultipartDataFormatAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-mail-starter/src/main/java/org/apache/camel/dataformat/mime/multipart/springboot/MimeMultipartDataFormatAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-mail-starter/src/main/java/org/apache/camel/dataformat/mime/multipart/springboot/MimeMultipartDataFormatAutoConfiguration.java
index 3e97726..d95972e 100644
--- a/platforms/spring-boot/components-starter/camel-mail-starter/src/main/java/org/apache/camel/dataformat/mime/multipart/springboot/MimeMultipartDataFormatAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-mail-starter/src/main/java/org/apache/camel/dataformat/mime/multipart/springboot/MimeMultipartDataFormatAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.dataformat.mime.multipart.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.CamelContextAware;
 import org.apache.camel.RuntimeCamelException;
@@ -43,6 +44,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(MimeMultipartDataFormatAutoConfiguration.Condition.class)
@@ -82,6 +84,7 @@ public class MimeMultipartDataFormatAutoConfiguration {
         };
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-mail-starter/src/main/java/org/apache/camel/dataformat/mime/multipart/springboot/MimeMultipartDataFormatConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-mail-starter/src/main/java/org/apache/camel/dataformat/mime/multipart/springboot/MimeMultipartDataFormatConfiguration.java b/platforms/spring-boot/components-starter/camel-mail-starter/src/main/java/org/apache/camel/dataformat/mime/multipart/springboot/MimeMultipartDataFormatConfiguration.java
index 9c2202a..c88a4a1 100644
--- a/platforms/spring-boot/components-starter/camel-mail-starter/src/main/java/org/apache/camel/dataformat/mime/multipart/springboot/MimeMultipartDataFormatConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-mail-starter/src/main/java/org/apache/camel/dataformat/mime/multipart/springboot/MimeMultipartDataFormatConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.dataformat.mime.multipart.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -23,6 +24,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.dataformat.mime-multipart")
 public class MimeMultipartDataFormatConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-metrics-starter/src/main/java/org/apache/camel/component/metrics/springboot/MetricsComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-metrics-starter/src/main/java/org/apache/camel/component/metrics/springboot/MetricsComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-metrics-starter/src/main/java/org/apache/camel/component/metrics/springboot/MetricsComponentAutoConfiguration.java
index e3f2e87..6f000b7 100644
--- a/platforms/spring-boot/components-starter/camel-metrics-starter/src/main/java/org/apache/camel/component/metrics/springboot/MetricsComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-metrics-starter/src/main/java/org/apache/camel/component/metrics/springboot/MetricsComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.metrics.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.metrics.MetricsComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(MetricsComponentAutoConfiguration.Condition.class)
@@ -84,6 +86,7 @@ public class MetricsComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-metrics-starter/src/main/java/org/apache/camel/component/metrics/springboot/MetricsComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-metrics-starter/src/main/java/org/apache/camel/component/metrics/springboot/MetricsComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-metrics-starter/src/main/java/org/apache/camel/component/metrics/springboot/MetricsComponentConfiguration.java
index 6c2306b..1f6e350 100644
--- a/platforms/spring-boot/components-starter/camel-metrics-starter/src/main/java/org/apache/camel/component/metrics/springboot/MetricsComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-metrics-starter/src/main/java/org/apache/camel/component/metrics/springboot/MetricsComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.metrics.springboot;
 
+import javax.annotation.Generated;
 import com.codahale.metrics.MetricRegistry;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 import org.springframework.boot.context.properties.NestedConfigurationProperty;
@@ -26,6 +27,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.metrics")
 public class MetricsComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-milo-starter/src/main/java/org/apache/camel/component/milo/client/springboot/MiloClientComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-milo-starter/src/main/java/org/apache/camel/component/milo/client/springboot/MiloClientComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-milo-starter/src/main/java/org/apache/camel/component/milo/client/springboot/MiloClientComponentAutoConfiguration.java
index 36e6961..245a1e6 100644
--- a/platforms/spring-boot/components-starter/camel-milo-starter/src/main/java/org/apache/camel/component/milo/client/springboot/MiloClientComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-milo-starter/src/main/java/org/apache/camel/component/milo/client/springboot/MiloClientComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.milo.client.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.milo.client.MiloClientComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(MiloClientComponentAutoConfiguration.Condition.class)
@@ -84,6 +86,7 @@ public class MiloClientComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-milo-starter/src/main/java/org/apache/camel/component/milo/client/springboot/MiloClientComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-milo-starter/src/main/java/org/apache/camel/component/milo/client/springboot/MiloClientComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-milo-starter/src/main/java/org/apache/camel/component/milo/client/springboot/MiloClientComponentConfiguration.java
index ad0ebed..0760771 100644
--- a/platforms/spring-boot/components-starter/camel-milo-starter/src/main/java/org/apache/camel/component/milo/client/springboot/MiloClientComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-milo-starter/src/main/java/org/apache/camel/component/milo/client/springboot/MiloClientComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.milo.client.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -24,6 +25,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.milo-client")
 public class MiloClientComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-milo-starter/src/main/java/org/apache/camel/component/milo/server/springboot/MiloServerComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-milo-starter/src/main/java/org/apache/camel/component/milo/server/springboot/MiloServerComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-milo-starter/src/main/java/org/apache/camel/component/milo/server/springboot/MiloServerComponentAutoConfiguration.java
index 46d80a9..620cacd 100644
--- a/platforms/spring-boot/components-starter/camel-milo-starter/src/main/java/org/apache/camel/component/milo/server/springboot/MiloServerComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-milo-starter/src/main/java/org/apache/camel/component/milo/server/springboot/MiloServerComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.milo.server.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.milo.server.MiloServerComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(MiloServerComponentAutoConfiguration.Condition.class)
@@ -84,6 +86,7 @@ public class MiloServerComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-milo-starter/src/main/java/org/apache/camel/component/milo/server/springboot/MiloServerComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-milo-starter/src/main/java/org/apache/camel/component/milo/server/springboot/MiloServerComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-milo-starter/src/main/java/org/apache/camel/component/milo/server/springboot/MiloServerComponentConfiguration.java
index 14745d8..4a368e0 100644
--- a/platforms/spring-boot/components-starter/camel-milo-starter/src/main/java/org/apache/camel/component/milo/server/springboot/MiloServerComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-milo-starter/src/main/java/org/apache/camel/component/milo/server/springboot/MiloServerComponentConfiguration.java
@@ -20,6 +20,7 @@ import java.io.File;
 import java.util.Collection;
 import java.util.Set;
 import java.util.function.Supplier;
+import javax.annotation.Generated;
 import org.apache.camel.component.milo.KeyStoreLoader.Result;
 import org.eclipse.milo.opcua.stack.core.application.CertificateManager;
 import org.eclipse.milo.opcua.stack.core.application.CertificateValidator;
@@ -33,6 +34,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.milo-server")
 public class MiloServerComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-mina2-starter/src/main/java/org/apache/camel/component/mina2/springboot/Mina2ComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-mina2-starter/src/main/java/org/apache/camel/component/mina2/springboot/Mina2ComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-mina2-starter/src/main/java/org/apache/camel/component/mina2/springboot/Mina2ComponentAutoConfiguration.java
index d8a22a2..5b919b5 100644
--- a/platforms/spring-boot/components-starter/camel-mina2-starter/src/main/java/org/apache/camel/component/mina2/springboot/Mina2ComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-mina2-starter/src/main/java/org/apache/camel/component/mina2/springboot/Mina2ComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.mina2.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.mina2.Mina2Component;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(Mina2ComponentAutoConfiguration.Condition.class)
@@ -83,6 +85,7 @@ public class Mina2ComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-mina2-starter/src/main/java/org/apache/camel/component/mina2/springboot/Mina2ComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-mina2-starter/src/main/java/org/apache/camel/component/mina2/springboot/Mina2ComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-mina2-starter/src/main/java/org/apache/camel/component/mina2/springboot/Mina2ComponentConfiguration.java
index 5fee68f..1448d76 100644
--- a/platforms/spring-boot/components-starter/camel-mina2-starter/src/main/java/org/apache/camel/component/mina2/springboot/Mina2ComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-mina2-starter/src/main/java/org/apache/camel/component/mina2/springboot/Mina2ComponentConfiguration.java
@@ -17,6 +17,7 @@
 package org.apache.camel.component.mina2.springboot;
 
 import java.util.List;
+import javax.annotation.Generated;
 import org.apache.camel.LoggingLevel;
 import org.apache.camel.component.mina2.Mina2Component;
 import org.apache.camel.component.mina2.Mina2TextLineDelimiter;
@@ -30,6 +31,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.mina2")
 public class Mina2ComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-mllp-starter/src/main/java/org/apache/camel/component/mllp/springboot/MllpComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-mllp-starter/src/main/java/org/apache/camel/component/mllp/springboot/MllpComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-mllp-starter/src/main/java/org/apache/camel/component/mllp/springboot/MllpComponentAutoConfiguration.java
index 1386dd4..aa05c12 100644
--- a/platforms/spring-boot/components-starter/camel-mllp-starter/src/main/java/org/apache/camel/component/mllp/springboot/MllpComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-mllp-starter/src/main/java/org/apache/camel/component/mllp/springboot/MllpComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.mllp.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.mllp.MllpComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(MllpComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class MllpComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-mongodb-gridfs-starter/src/main/java/org/apache/camel/component/mongodb/gridfs/springboot/GridFsComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-mongodb-gridfs-starter/src/main/java/org/apache/camel/component/mongodb/gridfs/springboot/GridFsComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-mongodb-gridfs-starter/src/main/java/org/apache/camel/component/mongodb/gridfs/springboot/GridFsComponentAutoConfiguration.java
index 4ee9881..3306a78 100644
--- a/platforms/spring-boot/components-starter/camel-mongodb-gridfs-starter/src/main/java/org/apache/camel/component/mongodb/gridfs/springboot/GridFsComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-mongodb-gridfs-starter/src/main/java/org/apache/camel/component/mongodb/gridfs/springboot/GridFsComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.mongodb.gridfs.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.mongodb.gridfs.GridFsComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(GridFsComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class GridFsComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-mongodb-starter/src/main/java/org/apache/camel/component/mongodb/springboot/MongoDbComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-mongodb-starter/src/main/java/org/apache/camel/component/mongodb/springboot/MongoDbComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-mongodb-starter/src/main/java/org/apache/camel/component/mongodb/springboot/MongoDbComponentAutoConfiguration.java
index aa68ff1..6c0bace 100644
--- a/platforms/spring-boot/components-starter/camel-mongodb-starter/src/main/java/org/apache/camel/component/mongodb/springboot/MongoDbComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-mongodb-starter/src/main/java/org/apache/camel/component/mongodb/springboot/MongoDbComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.mongodb.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.mongodb.MongoDbComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(MongoDbComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class MongoDbComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-mongodb3-starter/src/main/java/org/apache/camel/component/mongodb3/springboot/MongoDbComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-mongodb3-starter/src/main/java/org/apache/camel/component/mongodb3/springboot/MongoDbComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-mongodb3-starter/src/main/java/org/apache/camel/component/mongodb3/springboot/MongoDbComponentAutoConfiguration.java
index 38f7dc7..24c20db 100644
--- a/platforms/spring-boot/components-starter/camel-mongodb3-starter/src/main/java/org/apache/camel/component/mongodb3/springboot/MongoDbComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-mongodb3-starter/src/main/java/org/apache/camel/component/mongodb3/springboot/MongoDbComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.mongodb3.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.mongodb3.MongoDbComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(MongoDbComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class MongoDbComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-mqtt-starter/src/main/java/org/apache/camel/component/mqtt/springboot/MQTTComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-mqtt-starter/src/main/java/org/apache/camel/component/mqtt/springboot/MQTTComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-mqtt-starter/src/main/java/org/apache/camel/component/mqtt/springboot/MQTTComponentAutoConfiguration.java
index 17477b7..8bfa98c 100644
--- a/platforms/spring-boot/components-starter/camel-mqtt-starter/src/main/java/org/apache/camel/component/mqtt/springboot/MQTTComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-mqtt-starter/src/main/java/org/apache/camel/component/mqtt/springboot/MQTTComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.mqtt.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.mqtt.MQTTComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(MQTTComponentAutoConfiguration.Condition.class)
@@ -83,6 +85,7 @@ public class MQTTComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-mqtt-starter/src/main/java/org/apache/camel/component/mqtt/springboot/MQTTComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-mqtt-starter/src/main/java/org/apache/camel/component/mqtt/springboot/MQTTComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-mqtt-starter/src/main/java/org/apache/camel/component/mqtt/springboot/MQTTComponentConfiguration.java
index f3c45c5..a449f1b 100644
--- a/platforms/spring-boot/components-starter/camel-mqtt-starter/src/main/java/org/apache/camel/component/mqtt/springboot/MQTTComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-mqtt-starter/src/main/java/org/apache/camel/component/mqtt/springboot/MQTTComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.mqtt.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -24,6 +25,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.mqtt")
 public class MQTTComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-msv-starter/src/main/java/org/apache/camel/component/validator/msv/springboot/MsvComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-msv-starter/src/main/java/org/apache/camel/component/validator/msv/springboot/MsvComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-msv-starter/src/main/java/org/apache/camel/component/validator/msv/springboot/MsvComponentAutoConfiguration.java
index 7d923c2..ec86706 100644
--- a/platforms/spring-boot/components-starter/camel-msv-starter/src/main/java/org/apache/camel/component/validator/msv/springboot/MsvComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-msv-starter/src/main/java/org/apache/camel/component/validator/msv/springboot/MsvComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.validator.msv.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.validator.msv.MsvComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(MsvComponentAutoConfiguration.Condition.class)
@@ -83,6 +85,7 @@ public class MsvComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-msv-starter/src/main/java/org/apache/camel/component/validator/msv/springboot/MsvComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-msv-starter/src/main/java/org/apache/camel/component/validator/msv/springboot/MsvComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-msv-starter/src/main/java/org/apache/camel/component/validator/msv/springboot/MsvComponentConfiguration.java
index 66ddfb9..5a5165f 100644
--- a/platforms/spring-boot/components-starter/camel-msv-starter/src/main/java/org/apache/camel/component/validator/msv/springboot/MsvComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-msv-starter/src/main/java/org/apache/camel/component/validator/msv/springboot/MsvComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.validator.msv.springboot;
 
+import javax.annotation.Generated;
 import javax.xml.validation.SchemaFactory;
 import org.apache.camel.component.validator.ValidatorResourceResolverFactory;
 import org.springframework.boot.context.properties.ConfigurationProperties;
@@ -26,6 +27,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.msv")
 public class MsvComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-mustache-starter/src/main/java/org/apache/camel/component/mustache/springboot/MustacheComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-mustache-starter/src/main/java/org/apache/camel/component/mustache/springboot/MustacheComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-mustache-starter/src/main/java/org/apache/camel/component/mustache/springboot/MustacheComponentAutoConfiguration.java
index a66bd3d..fb6ca8d 100644
--- a/platforms/spring-boot/components-starter/camel-mustache-starter/src/main/java/org/apache/camel/component/mustache/springboot/MustacheComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-mustache-starter/src/main/java/org/apache/camel/component/mustache/springboot/MustacheComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.mustache.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.mustache.MustacheComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(MustacheComponentAutoConfiguration.Condition.class)
@@ -84,6 +86,7 @@ public class MustacheComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-mustache-starter/src/main/java/org/apache/camel/component/mustache/springboot/MustacheComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-mustache-starter/src/main/java/org/apache/camel/component/mustache/springboot/MustacheComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-mustache-starter/src/main/java/org/apache/camel/component/mustache/springboot/MustacheComponentConfiguration.java
index 0393a2d..32cf515 100644
--- a/platforms/spring-boot/components-starter/camel-mustache-starter/src/main/java/org/apache/camel/component/mustache/springboot/MustacheComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-mustache-starter/src/main/java/org/apache/camel/component/mustache/springboot/MustacheComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.mustache.springboot;
 
+import javax.annotation.Generated;
 import com.github.mustachejava.MustacheFactory;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 import org.springframework.boot.context.properties.NestedConfigurationProperty;
@@ -25,6 +26,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.mustache")
 public class MustacheComponentConfiguration {
 


[04/13] camel git commit: CAMEL-11165 Add @Generated annotation to code g...

Posted by zr...@apache.org.
http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-rest-swagger-starter/src/main/java/org/apache/camel/component/rest/swagger/springboot/RestSwaggerComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-rest-swagger-starter/src/main/java/org/apache/camel/component/rest/swagger/springboot/RestSwaggerComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-rest-swagger-starter/src/main/java/org/apache/camel/component/rest/swagger/springboot/RestSwaggerComponentAutoConfiguration.java
index 52f4ef1..56064f2 100644
--- a/platforms/spring-boot/components-starter/camel-rest-swagger-starter/src/main/java/org/apache/camel/component/rest/swagger/springboot/RestSwaggerComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-rest-swagger-starter/src/main/java/org/apache/camel/component/rest/swagger/springboot/RestSwaggerComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.rest.swagger.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.rest.swagger.RestSwaggerComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(RestSwaggerComponentAutoConfiguration.Condition.class)
@@ -84,6 +86,7 @@ public class RestSwaggerComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-rest-swagger-starter/src/main/java/org/apache/camel/component/rest/swagger/springboot/RestSwaggerComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-rest-swagger-starter/src/main/java/org/apache/camel/component/rest/swagger/springboot/RestSwaggerComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-rest-swagger-starter/src/main/java/org/apache/camel/component/rest/swagger/springboot/RestSwaggerComponentConfiguration.java
index 1d59966..cf01faa 100644
--- a/platforms/spring-boot/components-starter/camel-rest-swagger-starter/src/main/java/org/apache/camel/component/rest/swagger/springboot/RestSwaggerComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-rest-swagger-starter/src/main/java/org/apache/camel/component/rest/swagger/springboot/RestSwaggerComponentConfiguration.java
@@ -17,6 +17,7 @@
 package org.apache.camel.component.rest.swagger.springboot;
 
 import java.net.URI;
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -24,6 +25,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.rest-swagger")
 public class RestSwaggerComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-restlet-starter/src/main/java/org/apache/camel/component/restlet/springboot/RestletComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-restlet-starter/src/main/java/org/apache/camel/component/restlet/springboot/RestletComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-restlet-starter/src/main/java/org/apache/camel/component/restlet/springboot/RestletComponentAutoConfiguration.java
index de4f785..254cb73 100644
--- a/platforms/spring-boot/components-starter/camel-restlet-starter/src/main/java/org/apache/camel/component/restlet/springboot/RestletComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-restlet-starter/src/main/java/org/apache/camel/component/restlet/springboot/RestletComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.restlet.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.restlet.RestletComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(RestletComponentAutoConfiguration.Condition.class)
@@ -84,6 +86,7 @@ public class RestletComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-restlet-starter/src/main/java/org/apache/camel/component/restlet/springboot/RestletComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-restlet-starter/src/main/java/org/apache/camel/component/restlet/springboot/RestletComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-restlet-starter/src/main/java/org/apache/camel/component/restlet/springboot/RestletComponentConfiguration.java
index 38d23c6..1d485e8 100644
--- a/platforms/spring-boot/components-starter/camel-restlet-starter/src/main/java/org/apache/camel/component/restlet/springboot/RestletComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-restlet-starter/src/main/java/org/apache/camel/component/restlet/springboot/RestletComponentConfiguration.java
@@ -17,6 +17,7 @@
 package org.apache.camel.component.restlet.springboot;
 
 import java.util.List;
+import javax.annotation.Generated;
 import org.apache.camel.spi.HeaderFilterStrategy;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 import org.springframework.boot.context.properties.NestedConfigurationProperty;
@@ -26,6 +27,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.restlet")
 public class RestletComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-rmi-starter/src/main/java/org/apache/camel/component/rmi/springboot/RmiComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-rmi-starter/src/main/java/org/apache/camel/component/rmi/springboot/RmiComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-rmi-starter/src/main/java/org/apache/camel/component/rmi/springboot/RmiComponentAutoConfiguration.java
index b7c0ee3..275a09e 100644
--- a/platforms/spring-boot/components-starter/camel-rmi-starter/src/main/java/org/apache/camel/component/rmi/springboot/RmiComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-rmi-starter/src/main/java/org/apache/camel/component/rmi/springboot/RmiComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.rmi.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.rmi.RmiComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(RmiComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class RmiComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-routebox-starter/src/main/java/org/apache/camel/component/routebox/springboot/RouteboxComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-routebox-starter/src/main/java/org/apache/camel/component/routebox/springboot/RouteboxComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-routebox-starter/src/main/java/org/apache/camel/component/routebox/springboot/RouteboxComponentAutoConfiguration.java
index a5e8023..87984cd 100644
--- a/platforms/spring-boot/components-starter/camel-routebox-starter/src/main/java/org/apache/camel/component/routebox/springboot/RouteboxComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-routebox-starter/src/main/java/org/apache/camel/component/routebox/springboot/RouteboxComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.routebox.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.routebox.RouteboxComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(RouteboxComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class RouteboxComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-rss-starter/src/main/java/org/apache/camel/component/rss/springboot/RssComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-rss-starter/src/main/java/org/apache/camel/component/rss/springboot/RssComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-rss-starter/src/main/java/org/apache/camel/component/rss/springboot/RssComponentAutoConfiguration.java
index 6d0a272..1f27ae1 100644
--- a/platforms/spring-boot/components-starter/camel-rss-starter/src/main/java/org/apache/camel/component/rss/springboot/RssComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-rss-starter/src/main/java/org/apache/camel/component/rss/springboot/RssComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.rss.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.rss.RssComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(RssComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class RssComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-rss-starter/src/main/java/org/apache/camel/dataformat/rss/springboot/RssDataFormatAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-rss-starter/src/main/java/org/apache/camel/dataformat/rss/springboot/RssDataFormatAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-rss-starter/src/main/java/org/apache/camel/dataformat/rss/springboot/RssDataFormatAutoConfiguration.java
index 708a3bd..32d10e0 100644
--- a/platforms/spring-boot/components-starter/camel-rss-starter/src/main/java/org/apache/camel/dataformat/rss/springboot/RssDataFormatAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-rss-starter/src/main/java/org/apache/camel/dataformat/rss/springboot/RssDataFormatAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.dataformat.rss.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.CamelContextAware;
 import org.apache.camel.RuntimeCamelException;
@@ -43,6 +44,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(RssDataFormatAutoConfiguration.Condition.class)
@@ -82,6 +84,7 @@ public class RssDataFormatAutoConfiguration {
         };
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-rss-starter/src/main/java/org/apache/camel/dataformat/rss/springboot/RssDataFormatConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-rss-starter/src/main/java/org/apache/camel/dataformat/rss/springboot/RssDataFormatConfiguration.java b/platforms/spring-boot/components-starter/camel-rss-starter/src/main/java/org/apache/camel/dataformat/rss/springboot/RssDataFormatConfiguration.java
index 405e8af..ae0813f 100644
--- a/platforms/spring-boot/components-starter/camel-rss-starter/src/main/java/org/apache/camel/dataformat/rss/springboot/RssDataFormatConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-rss-starter/src/main/java/org/apache/camel/dataformat/rss/springboot/RssDataFormatConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.dataformat.rss.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -23,6 +24,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.dataformat.rss")
 public class RssDataFormatConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-salesforce-starter/src/main/java/org/apache/camel/component/salesforce/springboot/SalesforceComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-salesforce-starter/src/main/java/org/apache/camel/component/salesforce/springboot/SalesforceComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-salesforce-starter/src/main/java/org/apache/camel/component/salesforce/springboot/SalesforceComponentAutoConfiguration.java
index b38fd21..153c330 100644
--- a/platforms/spring-boot/components-starter/camel-salesforce-starter/src/main/java/org/apache/camel/component/salesforce/springboot/SalesforceComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-salesforce-starter/src/main/java/org/apache/camel/component/salesforce/springboot/SalesforceComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.salesforce.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.salesforce.SalesforceComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(SalesforceComponentAutoConfiguration.Condition.class)
@@ -84,6 +86,7 @@ public class SalesforceComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-salesforce-starter/src/main/java/org/apache/camel/component/salesforce/springboot/SalesforceComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-salesforce-starter/src/main/java/org/apache/camel/component/salesforce/springboot/SalesforceComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-salesforce-starter/src/main/java/org/apache/camel/component/salesforce/springboot/SalesforceComponentConfiguration.java
index e36d5a6..3cde2be 100644
--- a/platforms/spring-boot/components-starter/camel-salesforce-starter/src/main/java/org/apache/camel/component/salesforce/springboot/SalesforceComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-salesforce-starter/src/main/java/org/apache/camel/component/salesforce/springboot/SalesforceComponentConfiguration.java
@@ -19,6 +19,7 @@ package org.apache.camel.component.salesforce.springboot;
 import java.util.List;
 import java.util.Map;
 import java.util.Set;
+import javax.annotation.Generated;
 import com.fasterxml.jackson.databind.ObjectMapper;
 import org.apache.camel.component.salesforce.AuthenticationType;
 import org.apache.camel.component.salesforce.NotFoundBehaviour;
@@ -41,6 +42,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.salesforce")
 public class SalesforceComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-sap-netweaver-starter/src/main/java/org/apache/camel/component/sap/netweaver/springboot/NetWeaverComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-sap-netweaver-starter/src/main/java/org/apache/camel/component/sap/netweaver/springboot/NetWeaverComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-sap-netweaver-starter/src/main/java/org/apache/camel/component/sap/netweaver/springboot/NetWeaverComponentAutoConfiguration.java
index f58e734..88da568 100644
--- a/platforms/spring-boot/components-starter/camel-sap-netweaver-starter/src/main/java/org/apache/camel/component/sap/netweaver/springboot/NetWeaverComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-sap-netweaver-starter/src/main/java/org/apache/camel/component/sap/netweaver/springboot/NetWeaverComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.sap.netweaver.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.sap.netweaver.NetWeaverComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(NetWeaverComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class NetWeaverComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-saxon-starter/src/main/java/org/apache/camel/component/xquery/springboot/XQueryComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-saxon-starter/src/main/java/org/apache/camel/component/xquery/springboot/XQueryComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-saxon-starter/src/main/java/org/apache/camel/component/xquery/springboot/XQueryComponentAutoConfiguration.java
index f81c5bd..2542c9b 100644
--- a/platforms/spring-boot/components-starter/camel-saxon-starter/src/main/java/org/apache/camel/component/xquery/springboot/XQueryComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-saxon-starter/src/main/java/org/apache/camel/component/xquery/springboot/XQueryComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.xquery.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.xquery.XQueryComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(XQueryComponentAutoConfiguration.Condition.class)
@@ -83,6 +85,7 @@ public class XQueryComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-saxon-starter/src/main/java/org/apache/camel/component/xquery/springboot/XQueryComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-saxon-starter/src/main/java/org/apache/camel/component/xquery/springboot/XQueryComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-saxon-starter/src/main/java/org/apache/camel/component/xquery/springboot/XQueryComponentConfiguration.java
index 86adaef..69b7644 100644
--- a/platforms/spring-boot/components-starter/camel-saxon-starter/src/main/java/org/apache/camel/component/xquery/springboot/XQueryComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-saxon-starter/src/main/java/org/apache/camel/component/xquery/springboot/XQueryComponentConfiguration.java
@@ -17,6 +17,7 @@
 package org.apache.camel.component.xquery.springboot;
 
 import java.util.Map;
+import javax.annotation.Generated;
 import net.sf.saxon.Configuration;
 import net.sf.saxon.lib.ModuleURIResolver;
 import org.springframework.boot.context.properties.ConfigurationProperties;
@@ -27,6 +28,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.xquery")
 public class XQueryComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-saxon-starter/src/main/java/org/apache/camel/language/xquery/springboot/XQueryLanguageAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-saxon-starter/src/main/java/org/apache/camel/language/xquery/springboot/XQueryLanguageAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-saxon-starter/src/main/java/org/apache/camel/language/xquery/springboot/XQueryLanguageAutoConfiguration.java
index b53f4c8..c970cf3 100644
--- a/platforms/spring-boot/components-starter/camel-saxon-starter/src/main/java/org/apache/camel/language/xquery/springboot/XQueryLanguageAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-saxon-starter/src/main/java/org/apache/camel/language/xquery/springboot/XQueryLanguageAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.language.xquery.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.CamelContextAware;
 import org.apache.camel.language.xquery.XQueryLanguage;
@@ -41,6 +42,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(XQueryLanguageAutoConfiguration.Condition.class)
@@ -70,6 +72,7 @@ public class XQueryLanguageAutoConfiguration {
         return language;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-saxon-starter/src/main/java/org/apache/camel/language/xquery/springboot/XQueryLanguageConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-saxon-starter/src/main/java/org/apache/camel/language/xquery/springboot/XQueryLanguageConfiguration.java b/platforms/spring-boot/components-starter/camel-saxon-starter/src/main/java/org/apache/camel/language/xquery/springboot/XQueryLanguageConfiguration.java
index d45e4c4..d479273 100644
--- a/platforms/spring-boot/components-starter/camel-saxon-starter/src/main/java/org/apache/camel/language/xquery/springboot/XQueryLanguageConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-saxon-starter/src/main/java/org/apache/camel/language/xquery/springboot/XQueryLanguageConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.language.xquery.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -23,6 +24,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.language.xquery")
 public class XQueryLanguageConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-schematron-starter/src/main/java/org/apache/camel/component/schematron/springboot/SchematronComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-schematron-starter/src/main/java/org/apache/camel/component/schematron/springboot/SchematronComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-schematron-starter/src/main/java/org/apache/camel/component/schematron/springboot/SchematronComponentAutoConfiguration.java
index 30d3f0f..6b5e42f 100644
--- a/platforms/spring-boot/components-starter/camel-schematron-starter/src/main/java/org/apache/camel/component/schematron/springboot/SchematronComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-schematron-starter/src/main/java/org/apache/camel/component/schematron/springboot/SchematronComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.schematron.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.schematron.SchematronComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(SchematronComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class SchematronComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-script-starter/src/main/java/org/apache/camel/builder/script/springboot/JavaScriptLanguageAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-script-starter/src/main/java/org/apache/camel/builder/script/springboot/JavaScriptLanguageAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-script-starter/src/main/java/org/apache/camel/builder/script/springboot/JavaScriptLanguageAutoConfiguration.java
index fff186c..7a2e636 100644
--- a/platforms/spring-boot/components-starter/camel-script-starter/src/main/java/org/apache/camel/builder/script/springboot/JavaScriptLanguageAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-script-starter/src/main/java/org/apache/camel/builder/script/springboot/JavaScriptLanguageAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.builder.script.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.CamelContextAware;
 import org.apache.camel.builder.script.JavaScriptLanguage;
@@ -41,6 +42,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(JavaScriptLanguageAutoConfiguration.Condition.class)
@@ -71,6 +73,7 @@ public class JavaScriptLanguageAutoConfiguration {
         return language;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-script-starter/src/main/java/org/apache/camel/builder/script/springboot/JavaScriptLanguageConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-script-starter/src/main/java/org/apache/camel/builder/script/springboot/JavaScriptLanguageConfiguration.java b/platforms/spring-boot/components-starter/camel-script-starter/src/main/java/org/apache/camel/builder/script/springboot/JavaScriptLanguageConfiguration.java
index d7be77d..bbd9a57 100644
--- a/platforms/spring-boot/components-starter/camel-script-starter/src/main/java/org/apache/camel/builder/script/springboot/JavaScriptLanguageConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-script-starter/src/main/java/org/apache/camel/builder/script/springboot/JavaScriptLanguageConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.builder.script.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -23,6 +24,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.language.javascript")
 public class JavaScriptLanguageConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-script-starter/src/main/java/org/apache/camel/builder/script/springboot/PhpLanguageAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-script-starter/src/main/java/org/apache/camel/builder/script/springboot/PhpLanguageAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-script-starter/src/main/java/org/apache/camel/builder/script/springboot/PhpLanguageAutoConfiguration.java
index 3c8cd52..23202cd 100644
--- a/platforms/spring-boot/components-starter/camel-script-starter/src/main/java/org/apache/camel/builder/script/springboot/PhpLanguageAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-script-starter/src/main/java/org/apache/camel/builder/script/springboot/PhpLanguageAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.builder.script.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.CamelContextAware;
 import org.apache.camel.builder.script.PhpLanguage;
@@ -41,6 +42,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(PhpLanguageAutoConfiguration.Condition.class)
@@ -70,6 +72,7 @@ public class PhpLanguageAutoConfiguration {
         return language;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-script-starter/src/main/java/org/apache/camel/builder/script/springboot/PhpLanguageConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-script-starter/src/main/java/org/apache/camel/builder/script/springboot/PhpLanguageConfiguration.java b/platforms/spring-boot/components-starter/camel-script-starter/src/main/java/org/apache/camel/builder/script/springboot/PhpLanguageConfiguration.java
index 0bdee8e..4d6641b 100644
--- a/platforms/spring-boot/components-starter/camel-script-starter/src/main/java/org/apache/camel/builder/script/springboot/PhpLanguageConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-script-starter/src/main/java/org/apache/camel/builder/script/springboot/PhpLanguageConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.builder.script.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -23,6 +24,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.language.php")
 public class PhpLanguageConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-script-starter/src/main/java/org/apache/camel/builder/script/springboot/PythonLanguageAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-script-starter/src/main/java/org/apache/camel/builder/script/springboot/PythonLanguageAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-script-starter/src/main/java/org/apache/camel/builder/script/springboot/PythonLanguageAutoConfiguration.java
index 1741771..6cac0e9 100644
--- a/platforms/spring-boot/components-starter/camel-script-starter/src/main/java/org/apache/camel/builder/script/springboot/PythonLanguageAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-script-starter/src/main/java/org/apache/camel/builder/script/springboot/PythonLanguageAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.builder.script.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.CamelContextAware;
 import org.apache.camel.builder.script.PythonLanguage;
@@ -41,6 +42,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(PythonLanguageAutoConfiguration.Condition.class)
@@ -70,6 +72,7 @@ public class PythonLanguageAutoConfiguration {
         return language;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-script-starter/src/main/java/org/apache/camel/builder/script/springboot/PythonLanguageConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-script-starter/src/main/java/org/apache/camel/builder/script/springboot/PythonLanguageConfiguration.java b/platforms/spring-boot/components-starter/camel-script-starter/src/main/java/org/apache/camel/builder/script/springboot/PythonLanguageConfiguration.java
index 1b0f256..214f23a 100644
--- a/platforms/spring-boot/components-starter/camel-script-starter/src/main/java/org/apache/camel/builder/script/springboot/PythonLanguageConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-script-starter/src/main/java/org/apache/camel/builder/script/springboot/PythonLanguageConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.builder.script.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -23,6 +24,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.language.python")
 public class PythonLanguageConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-script-starter/src/main/java/org/apache/camel/builder/script/springboot/RubyLanguageAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-script-starter/src/main/java/org/apache/camel/builder/script/springboot/RubyLanguageAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-script-starter/src/main/java/org/apache/camel/builder/script/springboot/RubyLanguageAutoConfiguration.java
index 727b5d4..c480b3b 100644
--- a/platforms/spring-boot/components-starter/camel-script-starter/src/main/java/org/apache/camel/builder/script/springboot/RubyLanguageAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-script-starter/src/main/java/org/apache/camel/builder/script/springboot/RubyLanguageAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.builder.script.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.CamelContextAware;
 import org.apache.camel.builder.script.RubyLanguage;
@@ -41,6 +42,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(RubyLanguageAutoConfiguration.Condition.class)
@@ -70,6 +72,7 @@ public class RubyLanguageAutoConfiguration {
         return language;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-script-starter/src/main/java/org/apache/camel/builder/script/springboot/RubyLanguageConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-script-starter/src/main/java/org/apache/camel/builder/script/springboot/RubyLanguageConfiguration.java b/platforms/spring-boot/components-starter/camel-script-starter/src/main/java/org/apache/camel/builder/script/springboot/RubyLanguageConfiguration.java
index 865fb78..8811497 100644
--- a/platforms/spring-boot/components-starter/camel-script-starter/src/main/java/org/apache/camel/builder/script/springboot/RubyLanguageConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-script-starter/src/main/java/org/apache/camel/builder/script/springboot/RubyLanguageConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.builder.script.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -23,6 +24,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.language.ruby")
 public class RubyLanguageConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-servicenow-starter/src/main/java/org/apache/camel/component/servicenow/springboot/ServiceNowComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-servicenow-starter/src/main/java/org/apache/camel/component/servicenow/springboot/ServiceNowComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-servicenow-starter/src/main/java/org/apache/camel/component/servicenow/springboot/ServiceNowComponentAutoConfiguration.java
index 3ef4ed8..f201ffe 100644
--- a/platforms/spring-boot/components-starter/camel-servicenow-starter/src/main/java/org/apache/camel/component/servicenow/springboot/ServiceNowComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-servicenow-starter/src/main/java/org/apache/camel/component/servicenow/springboot/ServiceNowComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.servicenow.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.servicenow.ServiceNowComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(ServiceNowComponentAutoConfiguration.Condition.class)
@@ -84,6 +86,7 @@ public class ServiceNowComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-servicenow-starter/src/main/java/org/apache/camel/component/servicenow/springboot/ServiceNowComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-servicenow-starter/src/main/java/org/apache/camel/component/servicenow/springboot/ServiceNowComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-servicenow-starter/src/main/java/org/apache/camel/component/servicenow/springboot/ServiceNowComponentConfiguration.java
index 4bc2a61..4b7fc5b 100644
--- a/platforms/spring-boot/components-starter/camel-servicenow-starter/src/main/java/org/apache/camel/component/servicenow/springboot/ServiceNowComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-servicenow-starter/src/main/java/org/apache/camel/component/servicenow/springboot/ServiceNowComponentConfiguration.java
@@ -17,6 +17,7 @@
 package org.apache.camel.component.servicenow.springboot;
 
 import java.util.Map;
+import javax.annotation.Generated;
 import com.fasterxml.jackson.databind.ObjectMapper;
 import org.apache.camel.component.servicenow.ServiceNowComponent;
 import org.apache.camel.component.servicenow.ServiceNowRelease;
@@ -32,6 +33,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.servicenow")
 public class ServiceNowComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-servlet-starter/src/main/java/org/apache/camel/component/servlet/springboot/ServletComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-servlet-starter/src/main/java/org/apache/camel/component/servlet/springboot/ServletComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-servlet-starter/src/main/java/org/apache/camel/component/servlet/springboot/ServletComponentAutoConfiguration.java
index 86cc6be..7b6ae53 100644
--- a/platforms/spring-boot/components-starter/camel-servlet-starter/src/main/java/org/apache/camel/component/servlet/springboot/ServletComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-servlet-starter/src/main/java/org/apache/camel/component/servlet/springboot/ServletComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.servlet.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.servlet.ServletComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(ServletComponentAutoConfiguration.Condition.class)
@@ -84,6 +86,7 @@ public class ServletComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-servlet-starter/src/main/java/org/apache/camel/component/servlet/springboot/ServletComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-servlet-starter/src/main/java/org/apache/camel/component/servlet/springboot/ServletComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-servlet-starter/src/main/java/org/apache/camel/component/servlet/springboot/ServletComponentConfiguration.java
index bddd727..a54938a 100644
--- a/platforms/spring-boot/components-starter/camel-servlet-starter/src/main/java/org/apache/camel/component/servlet/springboot/ServletComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-servlet-starter/src/main/java/org/apache/camel/component/servlet/springboot/ServletComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.servlet.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.component.servlet.HttpRegistry;
 import org.apache.camel.http.common.HttpBinding;
 import org.apache.camel.http.common.HttpConfiguration;
@@ -29,6 +30,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.servlet")
 public class ServletComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-sip-starter/src/main/java/org/apache/camel/component/sip/springboot/SipComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-sip-starter/src/main/java/org/apache/camel/component/sip/springboot/SipComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-sip-starter/src/main/java/org/apache/camel/component/sip/springboot/SipComponentAutoConfiguration.java
index 48122e0..9a3d7a6 100644
--- a/platforms/spring-boot/components-starter/camel-sip-starter/src/main/java/org/apache/camel/component/sip/springboot/SipComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-sip-starter/src/main/java/org/apache/camel/component/sip/springboot/SipComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.sip.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.sip.SipComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(SipComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class SipComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-sjms-starter/src/main/java/org/apache/camel/component/sjms/batch/springboot/SjmsBatchComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-sjms-starter/src/main/java/org/apache/camel/component/sjms/batch/springboot/SjmsBatchComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-sjms-starter/src/main/java/org/apache/camel/component/sjms/batch/springboot/SjmsBatchComponentAutoConfiguration.java
index 442a3e7..b7bc6fa 100644
--- a/platforms/spring-boot/components-starter/camel-sjms-starter/src/main/java/org/apache/camel/component/sjms/batch/springboot/SjmsBatchComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-sjms-starter/src/main/java/org/apache/camel/component/sjms/batch/springboot/SjmsBatchComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.sjms.batch.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.sjms.batch.SjmsBatchComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(SjmsBatchComponentAutoConfiguration.Condition.class)
@@ -84,6 +86,7 @@ public class SjmsBatchComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-sjms-starter/src/main/java/org/apache/camel/component/sjms/batch/springboot/SjmsBatchComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-sjms-starter/src/main/java/org/apache/camel/component/sjms/batch/springboot/SjmsBatchComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-sjms-starter/src/main/java/org/apache/camel/component/sjms/batch/springboot/SjmsBatchComponentConfiguration.java
index 5b9ac23..90ad059 100644
--- a/platforms/spring-boot/components-starter/camel-sjms-starter/src/main/java/org/apache/camel/component/sjms/batch/springboot/SjmsBatchComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-sjms-starter/src/main/java/org/apache/camel/component/sjms/batch/springboot/SjmsBatchComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.sjms.batch.springboot;
 
+import javax.annotation.Generated;
 import javax.jms.ConnectionFactory;
 import org.apache.camel.spi.HeaderFilterStrategy;
 import org.springframework.boot.context.properties.ConfigurationProperties;
@@ -27,6 +28,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.sjms-batch")
 public class SjmsBatchComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-sjms-starter/src/main/java/org/apache/camel/component/sjms/springboot/SjmsComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-sjms-starter/src/main/java/org/apache/camel/component/sjms/springboot/SjmsComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-sjms-starter/src/main/java/org/apache/camel/component/sjms/springboot/SjmsComponentAutoConfiguration.java
index a931c21..30022fc 100644
--- a/platforms/spring-boot/components-starter/camel-sjms-starter/src/main/java/org/apache/camel/component/sjms/springboot/SjmsComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-sjms-starter/src/main/java/org/apache/camel/component/sjms/springboot/SjmsComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.sjms.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.sjms.SjmsComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(SjmsComponentAutoConfiguration.Condition.class)
@@ -83,6 +85,7 @@ public class SjmsComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-sjms-starter/src/main/java/org/apache/camel/component/sjms/springboot/SjmsComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-sjms-starter/src/main/java/org/apache/camel/component/sjms/springboot/SjmsComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-sjms-starter/src/main/java/org/apache/camel/component/sjms/springboot/SjmsComponentConfiguration.java
index f099d09..6e8bdce 100644
--- a/platforms/spring-boot/components-starter/camel-sjms-starter/src/main/java/org/apache/camel/component/sjms/springboot/SjmsComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-sjms-starter/src/main/java/org/apache/camel/component/sjms/springboot/SjmsComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.sjms.springboot;
 
+import javax.annotation.Generated;
 import javax.jms.ConnectionFactory;
 import org.apache.camel.component.sjms.TransactionCommitStrategy;
 import org.apache.camel.component.sjms.jms.ConnectionResource;
@@ -32,6 +33,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.sjms")
 public class SjmsComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-sjms2-starter/src/main/java/org/apache/camel/component/sjms2/springboot/Sjms2ComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-sjms2-starter/src/main/java/org/apache/camel/component/sjms2/springboot/Sjms2ComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-sjms2-starter/src/main/java/org/apache/camel/component/sjms2/springboot/Sjms2ComponentAutoConfiguration.java
index 4be32a4..fa2a166 100644
--- a/platforms/spring-boot/components-starter/camel-sjms2-starter/src/main/java/org/apache/camel/component/sjms2/springboot/Sjms2ComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-sjms2-starter/src/main/java/org/apache/camel/component/sjms2/springboot/Sjms2ComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.sjms2.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.sjms2.Sjms2Component;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(Sjms2ComponentAutoConfiguration.Condition.class)
@@ -83,6 +85,7 @@ public class Sjms2ComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-sjms2-starter/src/main/java/org/apache/camel/component/sjms2/springboot/Sjms2ComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-sjms2-starter/src/main/java/org/apache/camel/component/sjms2/springboot/Sjms2ComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-sjms2-starter/src/main/java/org/apache/camel/component/sjms2/springboot/Sjms2ComponentConfiguration.java
index a4a503b..e5f8ad5 100644
--- a/platforms/spring-boot/components-starter/camel-sjms2-starter/src/main/java/org/apache/camel/component/sjms2/springboot/Sjms2ComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-sjms2-starter/src/main/java/org/apache/camel/component/sjms2/springboot/Sjms2ComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.sjms2.springboot;
 
+import javax.annotation.Generated;
 import javax.jms.ConnectionFactory;
 import org.apache.camel.component.sjms.TransactionCommitStrategy;
 import org.apache.camel.component.sjms.jms.ConnectionResource;
@@ -33,6 +34,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.sjms2")
 public class Sjms2ComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-slack-starter/src/main/java/org/apache/camel/component/slack/springboot/SlackComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-slack-starter/src/main/java/org/apache/camel/component/slack/springboot/SlackComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-slack-starter/src/main/java/org/apache/camel/component/slack/springboot/SlackComponentAutoConfiguration.java
index 296d80e..3a09bd4 100644
--- a/platforms/spring-boot/components-starter/camel-slack-starter/src/main/java/org/apache/camel/component/slack/springboot/SlackComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-slack-starter/src/main/java/org/apache/camel/component/slack/springboot/SlackComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.slack.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.slack.SlackComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(SlackComponentAutoConfiguration.Condition.class)
@@ -83,6 +85,7 @@ public class SlackComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-slack-starter/src/main/java/org/apache/camel/component/slack/springboot/SlackComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-slack-starter/src/main/java/org/apache/camel/component/slack/springboot/SlackComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-slack-starter/src/main/java/org/apache/camel/component/slack/springboot/SlackComponentConfiguration.java
index aa92aa0..8e5ce18 100644
--- a/platforms/spring-boot/components-starter/camel-slack-starter/src/main/java/org/apache/camel/component/slack/springboot/SlackComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-slack-starter/src/main/java/org/apache/camel/component/slack/springboot/SlackComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.slack.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -23,6 +24,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.slack")
 public class SlackComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-smpp-starter/src/main/java/org/apache/camel/component/smpp/springboot/SmppComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-smpp-starter/src/main/java/org/apache/camel/component/smpp/springboot/SmppComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-smpp-starter/src/main/java/org/apache/camel/component/smpp/springboot/SmppComponentAutoConfiguration.java
index 8f62937..3153fc9 100644
--- a/platforms/spring-boot/components-starter/camel-smpp-starter/src/main/java/org/apache/camel/component/smpp/springboot/SmppComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-smpp-starter/src/main/java/org/apache/camel/component/smpp/springboot/SmppComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.smpp.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.smpp.SmppComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(SmppComponentAutoConfiguration.Condition.class)
@@ -83,6 +85,7 @@ public class SmppComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-smpp-starter/src/main/java/org/apache/camel/component/smpp/springboot/SmppComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-smpp-starter/src/main/java/org/apache/camel/component/smpp/springboot/SmppComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-smpp-starter/src/main/java/org/apache/camel/component/smpp/springboot/SmppComponentConfiguration.java
index a0f489f..285e097 100644
--- a/platforms/spring-boot/components-starter/camel-smpp-starter/src/main/java/org/apache/camel/component/smpp/springboot/SmppComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-smpp-starter/src/main/java/org/apache/camel/component/smpp/springboot/SmppComponentConfiguration.java
@@ -17,6 +17,7 @@
 package org.apache.camel.component.smpp.springboot;
 
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.component.smpp.SmppComponent;
 import org.apache.camel.component.smpp.SmppSplittingPolicy;
 import org.jsmpp.session.SessionStateListener;
@@ -27,6 +28,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.smpp")
 public class SmppComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-snakeyaml-starter/src/main/java/org/apache/camel/component/snakeyaml/springboot/SnakeYAMLDataFormatAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-snakeyaml-starter/src/main/java/org/apache/camel/component/snakeyaml/springboot/SnakeYAMLDataFormatAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-snakeyaml-starter/src/main/java/org/apache/camel/component/snakeyaml/springboot/SnakeYAMLDataFormatAutoConfiguration.java
index c5595d9..8e990fc 100644
--- a/platforms/spring-boot/components-starter/camel-snakeyaml-starter/src/main/java/org/apache/camel/component/snakeyaml/springboot/SnakeYAMLDataFormatAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-snakeyaml-starter/src/main/java/org/apache/camel/component/snakeyaml/springboot/SnakeYAMLDataFormatAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.snakeyaml.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.CamelContextAware;
 import org.apache.camel.RuntimeCamelException;
@@ -43,6 +44,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(SnakeYAMLDataFormatAutoConfiguration.Condition.class)
@@ -82,6 +84,7 @@ public class SnakeYAMLDataFormatAutoConfiguration {
         };
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-snakeyaml-starter/src/main/java/org/apache/camel/component/snakeyaml/springboot/SnakeYAMLDataFormatConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-snakeyaml-starter/src/main/java/org/apache/camel/component/snakeyaml/springboot/SnakeYAMLDataFormatConfiguration.java b/platforms/spring-boot/components-starter/camel-snakeyaml-starter/src/main/java/org/apache/camel/component/snakeyaml/springboot/SnakeYAMLDataFormatConfiguration.java
index 368e1e4..e0e1d90 100644
--- a/platforms/spring-boot/components-starter/camel-snakeyaml-starter/src/main/java/org/apache/camel/component/snakeyaml/springboot/SnakeYAMLDataFormatConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-snakeyaml-starter/src/main/java/org/apache/camel/component/snakeyaml/springboot/SnakeYAMLDataFormatConfiguration.java
@@ -17,6 +17,7 @@
 package org.apache.camel.component.snakeyaml.springboot;
 
 import java.util.List;
+import javax.annotation.Generated;
 import org.apache.camel.component.snakeyaml.SnakeYAMLDataFormat;
 import org.apache.camel.model.dataformat.YAMLLibrary;
 import org.apache.camel.model.dataformat.YAMLTypeFilterDefinition;
@@ -27,6 +28,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.dataformat.yaml-snakeyaml")
 public class SnakeYAMLDataFormatConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-snmp-starter/src/main/java/org/apache/camel/component/snmp/springboot/SnmpComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-snmp-starter/src/main/java/org/apache/camel/component/snmp/springboot/SnmpComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-snmp-starter/src/main/java/org/apache/camel/component/snmp/springboot/SnmpComponentAutoConfiguration.java
index 14839fa..82cd4cb 100644
--- a/platforms/spring-boot/components-starter/camel-snmp-starter/src/main/java/org/apache/camel/component/snmp/springboot/SnmpComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-snmp-starter/src/main/java/org/apache/camel/component/snmp/springboot/SnmpComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.snmp.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.snmp.SnmpComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(SnmpComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class SnmpComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-soap-starter/src/main/java/org/apache/camel/dataformat/soap/springboot/SoapJaxbDataFormatAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-soap-starter/src/main/java/org/apache/camel/dataformat/soap/springboot/SoapJaxbDataFormatAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-soap-starter/src/main/java/org/apache/camel/dataformat/soap/springboot/SoapJaxbDataFormatAutoConfiguration.java
index 85e6b5d..6b575e0 100644
--- a/platforms/spring-boot/components-starter/camel-soap-starter/src/main/java/org/apache/camel/dataformat/soap/springboot/SoapJaxbDataFormatAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-soap-starter/src/main/java/org/apache/camel/dataformat/soap/springboot/SoapJaxbDataFormatAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.dataformat.soap.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.CamelContextAware;
 import org.apache.camel.RuntimeCamelException;
@@ -43,6 +44,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(SoapJaxbDataFormatAutoConfiguration.Condition.class)
@@ -82,6 +84,7 @@ public class SoapJaxbDataFormatAutoConfiguration {
         };
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-soap-starter/src/main/java/org/apache/camel/dataformat/soap/springboot/SoapJaxbDataFormatConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-soap-starter/src/main/java/org/apache/camel/dataformat/soap/springboot/SoapJaxbDataFormatConfiguration.java b/platforms/spring-boot/components-starter/camel-soap-starter/src/main/java/org/apache/camel/dataformat/soap/springboot/SoapJaxbDataFormatConfiguration.java
index 311d951..a1769ac 100644
--- a/platforms/spring-boot/components-starter/camel-soap-starter/src/main/java/org/apache/camel/dataformat/soap/springboot/SoapJaxbDataFormatConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-soap-starter/src/main/java/org/apache/camel/dataformat/soap/springboot/SoapJaxbDataFormatConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.dataformat.soap.springboot;
 
+import javax.annotation.Generated;
 import org.springframework.boot.context.properties.ConfigurationProperties;
 
 /**
@@ -23,6 +24,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.dataformat.soapjaxb")
 public class SoapJaxbDataFormatConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-solr-starter/src/main/java/org/apache/camel/component/solr/springboot/SolrComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-solr-starter/src/main/java/org/apache/camel/component/solr/springboot/SolrComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-solr-starter/src/main/java/org/apache/camel/component/solr/springboot/SolrComponentAutoConfiguration.java
index 341a6ba..1afb281 100644
--- a/platforms/spring-boot/components-starter/camel-solr-starter/src/main/java/org/apache/camel/component/solr/springboot/SolrComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-solr-starter/src/main/java/org/apache/camel/component/solr/springboot/SolrComponentAutoConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.solr.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.solr.SolrComponent;
 import org.springframework.boot.autoconfigure.AutoConfigureAfter;
@@ -36,6 +37,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(SolrComponentAutoConfiguration.Condition.class)
@@ -53,6 +55,7 @@ public class SolrComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-spark-starter/src/main/java/org/apache/camel/component/spark/springboot/SparkComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-spark-starter/src/main/java/org/apache/camel/component/spark/springboot/SparkComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-spark-starter/src/main/java/org/apache/camel/component/spark/springboot/SparkComponentAutoConfiguration.java
index 38a2264..bcfbf96 100644
--- a/platforms/spring-boot/components-starter/camel-spark-starter/src/main/java/org/apache/camel/component/spark/springboot/SparkComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-spark-starter/src/main/java/org/apache/camel/component/spark/springboot/SparkComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.spark.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.spark.SparkComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(SparkComponentAutoConfiguration.Condition.class)
@@ -83,6 +85,7 @@ public class SparkComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-spark-starter/src/main/java/org/apache/camel/component/spark/springboot/SparkComponentConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-spark-starter/src/main/java/org/apache/camel/component/spark/springboot/SparkComponentConfiguration.java b/platforms/spring-boot/components-starter/camel-spark-starter/src/main/java/org/apache/camel/component/spark/springboot/SparkComponentConfiguration.java
index 2d52a1f..98a55a4 100644
--- a/platforms/spring-boot/components-starter/camel-spark-starter/src/main/java/org/apache/camel/component/spark/springboot/SparkComponentConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-spark-starter/src/main/java/org/apache/camel/component/spark/springboot/SparkComponentConfiguration.java
@@ -16,6 +16,7 @@
  */
 package org.apache.camel.component.spark.springboot;
 
+import javax.annotation.Generated;
 import org.apache.camel.component.spark.RddCallback;
 import org.apache.spark.api.java.JavaRDDLike;
 import org.springframework.boot.context.properties.ConfigurationProperties;
@@ -27,6 +28,7 @@ import org.springframework.boot.context.properties.NestedConfigurationProperty;
  * 
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @ConfigurationProperties(prefix = "camel.component.spark")
 public class SparkComponentConfiguration {
 

http://git-wip-us.apache.org/repos/asf/camel/blob/2297128f/platforms/spring-boot/components-starter/camel-splunk-starter/src/main/java/org/apache/camel/component/splunk/springboot/SplunkComponentAutoConfiguration.java
----------------------------------------------------------------------
diff --git a/platforms/spring-boot/components-starter/camel-splunk-starter/src/main/java/org/apache/camel/component/splunk/springboot/SplunkComponentAutoConfiguration.java b/platforms/spring-boot/components-starter/camel-splunk-starter/src/main/java/org/apache/camel/component/splunk/springboot/SplunkComponentAutoConfiguration.java
index f8a1ee2..d80d4d1 100644
--- a/platforms/spring-boot/components-starter/camel-splunk-starter/src/main/java/org/apache/camel/component/splunk/springboot/SplunkComponentAutoConfiguration.java
+++ b/platforms/spring-boot/components-starter/camel-splunk-starter/src/main/java/org/apache/camel/component/splunk/springboot/SplunkComponentAutoConfiguration.java
@@ -18,6 +18,7 @@ package org.apache.camel.component.splunk.springboot;
 
 import java.util.HashMap;
 import java.util.Map;
+import javax.annotation.Generated;
 import org.apache.camel.CamelContext;
 import org.apache.camel.component.splunk.SplunkComponent;
 import org.apache.camel.util.IntrospectionSupport;
@@ -40,6 +41,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
 /**
  * Generated by camel-package-maven-plugin - do not edit this file!
  */
+@Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
 @Configuration
 @ConditionalOnBean(type = "org.apache.camel.spring.boot.CamelAutoConfiguration")
 @Conditional(SplunkComponentAutoConfiguration.Condition.class)
@@ -83,6 +85,7 @@ public class SplunkComponentAutoConfiguration {
         return component;
     }
 
+    @Generated("org.apache.camel.maven.packaging.SpringBootAutoConfigurationMojo")
     public static class Condition extends SpringBootCondition {
         @Override
         public ConditionOutcome getMatchOutcome(