You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by pp...@apache.org on 2020/03/10 12:35:23 UTC

[camel-quarkus] branch master updated (b70d6e3 -> f6fefd1)

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

ppalaga pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git.


    from b70d6e3  Upgrade Quarkus to 1.3.0.CR2
     add f6fefd1  Fix #795 File Watch support

No new revisions were added by this update.

Summary of changes:
 docs/modules/ROOT/pages/extensions/file-watch.adoc | 30 ++++++++
 .../pages/list-of-camel-quarkus-extensions.adoc    |  4 +-
 .../{bindy => file-watch}/deployment/pom.xml       |  8 +--
 .../file/watch/deployment/FileWatchProcessor.java} |  6 +-
 extensions/{azure => file-watch}/pom.xml           |  4 +-
 extensions/{xstream => file-watch}/runtime/pom.xml | 13 ++--
 .../svm/SubstituteDirectoryWatcherBuilder.java}    | 26 ++++---
 .../main/resources/META-INF/quarkus-extension.yaml |  6 +-
 extensions/pom.xml                                 |  1 +
 extensions/readme.adoc                             |  4 +-
 integration-tests/file/pom.xml                     | 21 +++++-
 .../{FileResource.java => FileWatchResource.java}  | 52 +++++++-------
 .../camel/quarkus/component/file/it/FileTest.java  | 82 +++++++++++++++++++++-
 poms/bom-deployment/pom.xml                        |  5 ++
 poms/bom/pom.xml                                   | 10 +++
 15 files changed, 209 insertions(+), 63 deletions(-)
 create mode 100644 docs/modules/ROOT/pages/extensions/file-watch.adoc
 copy extensions/{bindy => file-watch}/deployment/pom.xml (91%)
 copy extensions/{controlbus/deployment/src/main/java/org/apache/camel/quarkus/component/controlbus/deployment/ControlbusProcessor.java => file-watch/deployment/src/main/java/org/apache/camel/quarkus/component/file/watch/deployment/FileWatchProcessor.java} (86%)
 copy extensions/{azure => file-watch}/pom.xml (94%)
 copy extensions/{xstream => file-watch}/runtime/pom.xml (88%)
 copy extensions/{support/retrofit/runtime/src/main/java/org/apache/camel/quarkus/support/retrofit/graal/ExecutorCallAdapterFactorySubstitution.java => file-watch/runtime/src/main/java/org/apache/camel/quarkus/component/file/watch/svm/SubstituteDirectoryWatcherBuilder.java} (60%)
 copy extensions/{lzf => file-watch}/runtime/src/main/resources/META-INF/quarkus-extension.yaml (89%)
 copy integration-tests/file/src/main/java/org/apache/camel/quarkus/component/file/it/{FileResource.java => FileWatchResource.java} (50%)