This is an automated email from the ASF dual-hosted git repository. acosentino pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/camel.git.
from 9eca22d Regen new 9f19e7f CS updated as per camel 3.0.0 specs new 2ecb88c Fixes new e948edb CAMEL-12955 - Fixed the component to align to new structure new 274b23e CAMEL-12955 - Added Camel-Chatscript to kit new 01306c1 CAMEL-12955 - Removed wrong GroupId from camel-chatscript new f09e8fb CAMEL-12955 - Regen The 35625 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: apache-camel/pom.xml | 10 + apache-camel/src/main/descriptors/common-bin.xml | 2 + bom/camel-bom/pom.xml | 10 + components/camel-chatscript/pom.xml | 106 +++++++++ .../src/main/docs/chatscript-component.adoc | 106 +++++++++ .../camel/component/chatscript/ChatScriptBot.java | 147 ++++++++++++ .../component/chatscript/ChatScriptComponent.java | 36 +++ .../component/chatscript/ChatScriptEndpoint.java | 139 +++++++++++ .../component/chatscript/ChatScriptMessage.java | 80 +++++++ .../component/chatscript/ChatScriptProducer.java | 73 ++++++ .../chatscript/utils/ChatScriptConstants.java | 28 +++ .../camel/component/ChatScriptComponentTest.java | 70 ++++++ .../src/test/resources/log4j2.properties | 28 +++ components/pom.xml | 1 + components/readme.adoc | 5 +- docs/components/modules/ROOT/nav.adoc | 1 + .../modules/ROOT/pages/chatscript-component.adoc | 106 +++++++++ parent/pom.xml | 10 + .../camel-chatscript-starter/pom.xml | 53 +++++ .../ChatScriptComponentAutoConfiguration.java | 128 +++++++++++ .../ChatScriptComponentConfiguration.java | 54 +++++ .../src/main/resources/META-INF/LICENSE.txt | 0 .../src/main/resources/META-INF/NOTICE.txt | 0 .../src/main/resources/META-INF/spring.factories | 19 ++ .../src/main/resources/META-INF/spring.provides | 17 ++ .../GoogleBigQueryComponentConfiguration.java | 20 +- .../GoogleBigQuerySQLComponentConfiguration.java | 20 +- .../GooglePubsubComponentConfiguration.java | 20 +- .../SalesforceComponentConfiguration.java | 254 ++++++++++----------- platforms/spring-boot/components-starter/pom.xml | 1 + .../camel-spring-boot-dependencies/pom.xml | 10 + 31 files changed, 1396 insertions(+), 158 deletions(-) create mode 100644 components/camel-chatscript/pom.xml create mode 100644 components/camel-chatscript/src/main/docs/chatscript-component.adoc create mode 100644 components/camel-chatscript/src/main/java/org/apache/camel/component/chatscript/ChatScriptBot.java create mode 100644 components/camel-chatscript/src/main/java/org/apache/camel/component/chatscript/ChatScriptComponent.java create mode 100644 components/camel-chatscript/src/main/java/org/apache/camel/component/chatscript/ChatScriptEndpoint.java create mode 100644 components/camel-chatscript/src/main/java/org/apache/camel/component/chatscript/ChatScriptMessage.java create mode 100644 components/camel-chatscript/src/main/java/org/apache/camel/component/chatscript/ChatScriptProducer.java create mode 100644 components/camel-chatscript/src/main/java/org/apache/camel/component/chatscript/utils/ChatScriptConstants.java create mode 100644 components/camel-chatscript/src/test/java/org/apache/camel/component/ChatScriptComponentTest.java create mode 100644 components/camel-chatscript/src/test/resources/log4j2.properties create mode 100644 docs/components/modules/ROOT/pages/chatscript-component.adoc create mode 100644 platforms/spring-boot/components-starter/camel-chatscript-starter/pom.xml create mode 100644 platforms/spring-boot/components-starter/camel-chatscript-starter/src/main/java/org/apache/camel/component/chatscript/springboot/ChatScriptComponentAutoConfiguration.java create mode 100644 platforms/spring-boot/components-starter/camel-chatscript-starter/src/main/java/org/apache/camel/component/chatscript/springboot/ChatScriptComponentConfiguration.java copy {tooling/maven/camel-package-maven-plugin => platforms/spring-boot/components-starter/camel-chatscript-starter}/src/main/resources/META-INF/LICENSE.txt (100%) copy {tooling/maven/camel-package-maven-plugin => platforms/spring-boot/components-starter/camel-chatscript-starter}/src/main/resources/META-INF/NOTICE.txt (100%) create mode 100644 platforms/spring-boot/components-starter/camel-chatscript-starter/src/main/resources/META-INF/spring.factories create mode 100644 platforms/spring-boot/components-starter/camel-chatscript-starter/src/main/resources/META-INF/spring.provides