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 9e20983 Upgrade Minidns to version 0.3.2
new 4125e71 Upgrade jclouds
new f039382 CAMEL-12757: Added camel-jclouds-starter
The 2 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 | 5 +
apache-camel/src/main/descriptors/common-bin.xml | 1 +
bom/camel-bom/pom.xml | 5 +
parent/pom.xml | 7 +-
.../spring-boot/components-starter/README.adoc | 1 -
.../camel-jclouds-starter/pom.xml | 53 +++++++++
.../JcloudsComponentAutoConfiguration.java | 128 +++++++++++++++++++++
.../springboot/JcloudsComponentConfiguration.java | 82 +++++++++++++
.../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 | 7 +-
.../camel/itest/springboot/CamelJcloudsTest.java | 48 ++++++++
.../maven/packaging/SpringBootStarterMojo.java | 2 +-
16 files changed, 372 insertions(+), 4 deletions(-)
create mode 100644
platforms/spring-boot/components-starter/camel-jclouds-starter/pom.xml
create mode 100644
platforms/spring-boot/components-starter/camel-jclouds-starter/src/main/java/org/apache/camel/component/jclouds/springboot/JcloudsComponentAutoConfiguration.java
create mode 100644
platforms/spring-boot/components-starter/camel-jclouds-starter/src/main/java/org/apache/camel/component/jclouds/springboot/JcloudsComponentConfiguration.java
copy {tooling/maven/guice-maven-plugin =>
platforms/spring-boot/components-starter/camel-jclouds-starter}/src/main/resources/META-INF/LICENSE.txt
(100%)
copy {tooling/maven/guice-maven-plugin =>
platforms/spring-boot/components-starter/camel-jclouds-starter}/src/main/resources/META-INF/NOTICE.txt
(100%)
create mode 100644
platforms/spring-boot/components-starter/camel-jclouds-starter/src/main/resources/META-INF/spring.factories
create mode 100644
platforms/spring-boot/components-starter/camel-jclouds-starter/src/main/resources/META-INF/spring.provides
create mode 100644
tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelJcloudsTest.java