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 8f568e8 Merge pull request #3036 from bedlaj/CAMEL-13629 new 2a01e2b CAMEL-13628: Initial commit new 510dd6b CAMEL-13628: Karaf feature, Karaf itest, formatting new f2a92b6 CAMEL-13628: add date to FileEvent new 52e740f CAMEL-13628: Docs, polish new bcd50de CAMEL-13628: docs new 8665453 CAMEL-13628 new fac1b97 CAMEL-13628: Dropped directory-watcher dependency and related stuff new 8ce3f5a Revert "CAMEL-13628: Dropped directory-watcher dependency and related stuff" new 333b328 CAMEL-13628: Code review new f7f08fd Regen The 10 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-file-watch/pom.xml | 69 ++++++ .../src/main/docs/file-watch-component.adoc | 164 ++++++++++++++ .../component/file/watch/FileWatchComponent.java | 121 +++++++++++ .../component/file/watch/FileWatchConsumer.java | 241 +++++++++++++++++++++ .../component/file/watch/FileWatchEndpoint.java | 217 +++++++++++++++++++ .../component/file/watch/constants/FileEvent.java | 56 +++++ .../file/watch/constants/FileEventEnum.java | 92 ++++++++ .../component/file/watch/utils/PathUtils.java | 32 +++ .../file/watch/FileWatchComponentNegativeTest.java | 49 +++++ .../watch/FileWatchComponentRecursiveTest.java | 60 +++++ .../file/watch/FileWatchComponentTest.java | 173 +++++++++++++++ .../file/watch/FileWatchComponentTestBase.java | 112 ++++++++++ .../file/watch/SpringFileWatcherTest.java | 80 +++++++ .../camel/component/file/watch/TestHasher.java | 36 +++ .../src/test/resources/log4j2.properties | 29 +++ .../file/watch/SpringFileWatchComponentTest.xml | 41 ++++ components/pom.xml | 1 + components/readme.adoc | 15 +- .../dsl/FileWatchEndpointBuilderFactory.java | 135 ++++++++++++ docs/components/modules/ROOT/nav.adoc | 1 + .../modules/ROOT/pages/file-watch-component.adoc | 164 ++++++++++++++ parent/pom.xml | 18 ++ .../karaf/features/src/main/resources/features.xml | 5 + .../camel-file-watch-starter/pom.xml | 53 +++++ .../FileWatchComponentAutoConfiguration.java | 128 +++++++++++ .../FileWatchComponentConfiguration.java | 139 ++++++++++++ .../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 ++ platforms/spring-boot/components-starter/pom.xml | 1 + .../camel-spring-boot-dependencies/pom.xml | 15 ++ .../camel/itest/karaf/CamelFileWatchTest.java | 33 +++ 36 files changed, 2331 insertions(+), 7 deletions(-) create mode 100644 components/camel-file-watch/pom.xml create mode 100644 components/camel-file-watch/src/main/docs/file-watch-component.adoc create mode 100644 components/camel-file-watch/src/main/java/org/apache/camel/component/file/watch/FileWatchComponent.java create mode 100644 components/camel-file-watch/src/main/java/org/apache/camel/component/file/watch/FileWatchConsumer.java create mode 100644 components/camel-file-watch/src/main/java/org/apache/camel/component/file/watch/FileWatchEndpoint.java create mode 100644 components/camel-file-watch/src/main/java/org/apache/camel/component/file/watch/constants/FileEvent.java create mode 100644 components/camel-file-watch/src/main/java/org/apache/camel/component/file/watch/constants/FileEventEnum.java create mode 100644 components/camel-file-watch/src/main/java/org/apache/camel/component/file/watch/utils/PathUtils.java create mode 100644 components/camel-file-watch/src/test/java/org/apache/camel/component/file/watch/FileWatchComponentNegativeTest.java create mode 100644 components/camel-file-watch/src/test/java/org/apache/camel/component/file/watch/FileWatchComponentRecursiveTest.java create mode 100644 components/camel-file-watch/src/test/java/org/apache/camel/component/file/watch/FileWatchComponentTest.java create mode 100644 components/camel-file-watch/src/test/java/org/apache/camel/component/file/watch/FileWatchComponentTestBase.java create mode 100644 components/camel-file-watch/src/test/java/org/apache/camel/component/file/watch/SpringFileWatcherTest.java create mode 100644 components/camel-file-watch/src/test/java/org/apache/camel/component/file/watch/TestHasher.java create mode 100644 components/camel-file-watch/src/test/resources/log4j2.properties create mode 100644 components/camel-file-watch/src/test/resources/org/apache/camel/component/file/watch/SpringFileWatchComponentTest.xml create mode 100644 core/camel-endpointdsl/src/main/java/org/apache/camel/builder/endpoint/dsl/FileWatchEndpointBuilderFactory.java create mode 100644 docs/components/modules/ROOT/pages/file-watch-component.adoc create mode 100644 platforms/spring-boot/components-starter/camel-file-watch-starter/pom.xml create mode 100644 platforms/spring-boot/components-starter/camel-file-watch-starter/src/main/java/org/apache/camel/component/file/watch/springboot/FileWatchComponentAutoConfiguration.java create mode 100644 platforms/spring-boot/components-starter/camel-file-watch-starter/src/main/java/org/apache/camel/component/file/watch/springboot/FileWatchComponentConfiguration.java copy {tooling/maven/camel-package-maven-plugin => platforms/spring-boot/components-starter/camel-file-watch-starter}/src/main/resources/META-INF/LICENSE.txt (100%) copy {tooling/maven/camel-package-maven-plugin => platforms/spring-boot/components-starter/camel-file-watch-starter}/src/main/resources/META-INF/NOTICE.txt (100%) create mode 100644 platforms/spring-boot/components-starter/camel-file-watch-starter/src/main/resources/META-INF/spring.factories create mode 100644 platforms/spring-boot/components-starter/camel-file-watch-starter/src/main/resources/META-INF/spring.provides create mode 100644 tests/camel-itest-karaf/src/test/java/org/apache/camel/itest/karaf/CamelFileWatchTest.java