This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch regen_bot in repository https://gitbox.apache.org/repos/asf/camel.git.
from afed46d (chores): camel-pulsar cleanups (#5459) add 0f405a1 camel-chatscript: chores (#5461) No new revisions were added by this update. Summary of changes: components/camel-chatscript/pom.xml | 17 ++++++ ...entManualIT.java => ChatScriptComponentIT.java} | 13 +++-- .../camel-test-infra-chatscript}/pom.xml | 51 ++++++++-------- .../src/main/resources/META-INF/MANIFEST.MF | 0 .../chatscript/common/ChatScriptProperties.java | 26 +++++++++ .../services/ChatScriptLocalContainerService.java | 67 ++++++++++++++++++++++ .../services/ChatScriptRemoteService.java | 42 ++++++++++++++ .../chatscript/services/ChatScriptService.java | 40 +++++++++++++ .../services/ChatScriptServiceFactory.java | 37 ++++++++++++ test-infra/pom.xml | 1 + 10 files changed, 263 insertions(+), 31 deletions(-) rename components/camel-chatscript/src/test/java/org/apache/camel/component/{ChatScriptComponentManualIT.java => ChatScriptComponentIT.java} (88%) copy {components/camel-chatscript => test-infra/camel-test-infra-chatscript}/pom.xml (54%) copy {tooling/maven/camel-resources-plugin => test-infra/camel-test-infra-chatscript}/src/main/resources/META-INF/MANIFEST.MF (100%) create mode 100644 test-infra/camel-test-infra-chatscript/src/test/java/org/apache/camel/test/infra/chatscript/common/ChatScriptProperties.java create mode 100644 test-infra/camel-test-infra-chatscript/src/test/java/org/apache/camel/test/infra/chatscript/services/ChatScriptLocalContainerService.java create mode 100644 test-infra/camel-test-infra-chatscript/src/test/java/org/apache/camel/test/infra/chatscript/services/ChatScriptRemoteService.java create mode 100644 test-infra/camel-test-infra-chatscript/src/test/java/org/apache/camel/test/infra/chatscript/services/ChatScriptService.java create mode 100644 test-infra/camel-test-infra-chatscript/src/test/java/org/apache/camel/test/infra/chatscript/services/ChatScriptServiceFactory.java