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

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


    from 3bb77f9  Fixed CS in FileConsumerCharsetTest
     new d473ed4  CAMEL-13647: Allow to do autowrire by classpath. Quick and 
dirty prototype.
     new 87b1ebe  CAMEL-13647: Allow to do autowrire by classpath. Quick and 
dirty prototype.
     new e7c93fc  CAMEL-13647: Allow to do autowrire by classpath. Quick and 
dirty prototype.
     new 5ced786  CAMEL-13647: Allow to do autowrire by classpath. Quick and 
dirty prototype.
     new 5aaa02d  Regen
     new 66139d2  CAMEL-13647: Allow to do autowrire by classpath. Quick and 
dirty prototype.
     new 83d8be8  CAMEL-13647: Allow to do autowrire by classpath. Quick and 
dirty prototype.
     new 673719e  CAMEL-13647: Allow to do autowrire by classpath. Quick and 
dirty prototype.
     new 33f0f4b  CAMEL-13647: Allow to do autowrire by classpath. Quick and 
dirty prototype.
     new 9abf0ff  CAMEL-13647: Allow to do autowrire by classpath. Quick and 
dirty prototype
     new 00df9cb  CAMEL-13647: Allow to do autowrire by classpath. Quick and 
dirty prototype.
     new f7a400d  Remove cruft from camel-jms that are not really in use.
     new f4a16bc  CAMEL-13647: Allow to do autowrire by classpath. Quick and 
dirty prototype.
     new 530aac0  CAMEL-13647: Allow to do autowrire by classpath. Quick and 
dirty prototype.
     new 00a2093  CAMEL-13647: Allow to do autowrire by classpath. Quick and 
dirty prototype.
     new 05af4c7  Regen
     new 7c0f037  CAMEL-13647: Allow to do autowrire by classpath. Quick and 
dirty prototype.
     new d21a510  CAMEL-13647: Allow to do autowrire by classpath.
     new 790cc20  CAMEL-13647: Allow to do autowrire by classpath.
     new d8ab684  Regen

The 20 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:
 catalog/camel-main-maven-plugin/pom.xml            | 154 ++++++
 .../src/main/docs/camel-main-maven-plugin.adoc     | 158 ++++++
 .../java/org/apache/camel/maven/AutowireMojo.java  | 543 +++++++++++++++++++++
 .../src/main/resources/META-INF/LICENSE.txt        |   0
 .../src/main/resources/META-INF/NOTICE.txt         |   0
 .../src/main/resources/default-mappings.properties |  11 +-
 catalog/pom.xml                                    |   1 +
 .../camel-jms/src/main/docs/jms-component.adoc     |   4 +-
 .../apache/camel/component/jms/JmsComponent.java   |   9 +-
 .../camel/component/jms/JmsConfiguration.java      |  39 +-
 .../apache/camel/component/jms/JmsEndpoint.java    |  54 --
 .../component/jms/reply/QueueReplyManager.java     |   2 +-
 .../jms/reply/TemporaryQueueReplyManager.java      |   2 +-
 .../jms/JmsEndpointConfigurationTest.java          |   2 -
 .../camel/component/jms/temp/JmsProviderTest.java  |  64 ---
 .../org/apache/camel/spi/PackageScanFilter.java    |   1 +
 .../camel/support/IntrospectionSupportTest.java    |   2 +-
 .../camel/main/MainConfigurationProperties.java    |  30 +-
 .../java/org/apache/camel/main/MainSupport.java    |  48 +-
 .../apache/camel/support/IntrospectionSupport.java |  55 ++-
 .../camel/support/PropertyBindingSupport.java      | 123 +++--
 .../modules/ROOT/pages/jms-component.adoc          |   4 +-
 examples/README.adoc                               |   7 +-
 .../pom.xml                                        |  40 +-
 examples/camel-example-main-artemis/readme.adoc    |  36 ++
 .../org/apache/camel/example/MyApplication.java    |   0
 .../org/apache/camel/example/MyConfiguration.java  |  52 ++
 .../org/apache/camel/example/MyRouteBuilder.java   |  24 +-
 .../src/main/resources/application.properties      |  46 ++
 .../main/resources/camel-main-mappings.properties} |  12 +-
 .../src/main/resources/log4j2.properties           |   3 +
 examples/camel-example-main/pom.xml                |   1 +
 .../src/main/resources/log4j2.properties           |   3 +
 examples/pom.xml                                   |   1 +
 .../jms/springboot/JmsComponentConfiguration.java  |  29 --
 35 files changed, 1261 insertions(+), 299 deletions(-)
 create mode 100644 catalog/camel-main-maven-plugin/pom.xml
 create mode 100644 
catalog/camel-main-maven-plugin/src/main/docs/camel-main-maven-plugin.adoc
 create mode 100644 
catalog/camel-main-maven-plugin/src/main/java/org/apache/camel/maven/AutowireMojo.java
 copy {tooling/maven/camel-package-maven-plugin => 
catalog/camel-main-maven-plugin}/src/main/resources/META-INF/LICENSE.txt (100%)
 copy {tooling/maven/camel-package-maven-plugin => 
catalog/camel-main-maven-plugin}/src/main/resources/META-INF/NOTICE.txt (100%)
 copy examples/camel-example-main/src/main/resources/log4j2.properties => 
catalog/camel-main-maven-plugin/src/main/resources/default-mappings.properties 
(75%)
 delete mode 100644 
components/camel-jms/src/test/java/org/apache/camel/component/jms/temp/JmsProviderTest.java
 copy examples/{camel-example-main => camel-example-main-artemis}/pom.xml (65%)
 create mode 100644 examples/camel-example-main-artemis/readme.adoc
 copy examples/{camel-example-main => 
camel-example-main-artemis}/src/main/java/org/apache/camel/example/MyApplication.java
 (100%)
 create mode 100644 
examples/camel-example-main-artemis/src/main/java/org/apache/camel/example/MyConfiguration.java
 copy core/camel-api/src/main/java/org/apache/camel/spi/PackageScanFilter.java 
=> 
examples/camel-example-main-artemis/src/main/java/org/apache/camel/example/MyRouteBuilder.java
 (68%)
 create mode 100644 
examples/camel-example-main-artemis/src/main/resources/application.properties
 copy examples/{camel-example-main/src/main/resources/log4j2.properties => 
camel-example-main-artemis/src/main/resources/camel-main-mappings.properties} 
(68%)
 copy examples/{camel-example-main => 
camel-example-main-artemis}/src/main/resources/log4j2.properties (93%)

Reply via email to