You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2019/12/28 14:01:27 UTC

[camel] branch master updated (6096db9 -> 02a38f8)

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 6096db9  Avoid non singleton endpoints and polish code
     new 9afa94b  CAMEL-14286: Create camel-osgi-activator example with karaf distribution
     new a892484  CAMEL-14286: Add camel-osgi-activator example to example pom
     new 02a38f8  Merge pull request #3440 from bobpaulin/feature/add-camel-osgi-activator-example

The 41145 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:
 .../README.adoc                                    |  74 +++++++++++
 .../core-rest/pom.xml                              |  82 ++++++++++++
 .../camel/example/karaf/rest/CoreRouteBuilder.java |  42 +++++++
 .../distribution/pom.xml                           | 138 +++++++++++++++++++++
 .../parent/pom.xml                                 |  47 +++++++
 .../pom.xml                                        |  70 +++++++++++
 .../provision/pom.xml                              |  41 ++++++
 .../provision/src/main/feature/feature.xml         |  33 +++++
 .../src/main/filtered-resources/README.adoc        |  74 +++++++++++
 .../tika-detect/pom.xml                            |  84 +++++++++++++
 .../camel/example/karaf/models/TikaOutput.java     |  32 +++++
 .../karaf/tika/detect/DetectRouteBuilder.java      |  64 ++++++++++
 .../tika-parse/pom.xml                             |  81 ++++++++++++
 .../karaf/tika/parse/ParseRouteBuilder.java        |  45 +++++++
 examples/pom.xml                                   |   1 +
 15 files changed, 908 insertions(+)
 create mode 100644 examples/camel-example-rest-karaf-osgi-activator/README.adoc
 create mode 100644 examples/camel-example-rest-karaf-osgi-activator/core-rest/pom.xml
 create mode 100644 examples/camel-example-rest-karaf-osgi-activator/core-rest/src/main/java/org/apache/camel/example/karaf/rest/CoreRouteBuilder.java
 create mode 100644 examples/camel-example-rest-karaf-osgi-activator/distribution/pom.xml
 create mode 100644 examples/camel-example-rest-karaf-osgi-activator/parent/pom.xml
 create mode 100644 examples/camel-example-rest-karaf-osgi-activator/pom.xml
 create mode 100644 examples/camel-example-rest-karaf-osgi-activator/provision/pom.xml
 create mode 100644 examples/camel-example-rest-karaf-osgi-activator/provision/src/main/feature/feature.xml
 create mode 100644 examples/camel-example-rest-karaf-osgi-activator/src/main/filtered-resources/README.adoc
 create mode 100644 examples/camel-example-rest-karaf-osgi-activator/tika-detect/pom.xml
 create mode 100644 examples/camel-example-rest-karaf-osgi-activator/tika-detect/src/main/java/org/apache/camel/example/karaf/models/TikaOutput.java
 create mode 100644 examples/camel-example-rest-karaf-osgi-activator/tika-detect/src/main/java/org/apache/camel/example/karaf/tika/detect/DetectRouteBuilder.java
 create mode 100644 examples/camel-example-rest-karaf-osgi-activator/tika-parse/pom.xml
 create mode 100644 examples/camel-example-rest-karaf-osgi-activator/tika-parse/src/main/java/org/apache/camel/example/karaf/tika/parse/ParseRouteBuilder.java