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

acosentino pushed a change to branch sandbox/camel-3.x
in repository https://gitbox.apache.org/repos/asf/camel.git.


    from 98b39cf  Regen
     new 3d2d263  [IPFS] Add initial support for IPFS
     new 7623ad0  Changed IPFS component to 3.0.0-SNAPSHOT
     new 149bdc8  CAMEL-12810 - Added explicit repository for Nessus and Spring 
Boot starter related
     new 191403d  Changed ipfs component starter to 3.0.0-SNAPSHOT
     new 85fca03  CAMEL-12810 - Added camel-ipfs to kit
     new ce01bc4  CAMEL-12810 - Fixed CS
     new 4a31f20  Camel-ipfs: Fixed the backport to 3.x
     new 32919f0  Regen

The 8 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/src/main/descriptors/common-bin.xml   |   2 +
 bom/camel-bom/pom.xml                              |  10 +
 .../src/main/docs/ahc-ws-component.adoc            |   4 +-
 components/camel-ipfs/pom.xml                      |  76 ++++++++
 .../camel-ipfs/src/main/docs/ipfs-component.adoc   |  93 +++++++++
 .../apache/camel/component/ipfs/IPFSComponent.java |  69 +++++++
 .../camel/component/ipfs/IPFSConfiguration.java    |  79 ++++++++
 .../apache/camel/component/ipfs/IPFSEndpoint.java  | 109 +++++++++++
 .../apache/camel/component/ipfs/IPFSProducer.java  |  93 +++++++++
 .../src/main/resources/META-INF/LICENSE.txt        |   0
 .../src/main/resources/META-INF/NOTICE.txt         |   0
 .../services/org/apache/camel/component/ipfs       |  18 ++
 .../camel/component/ipfs/SimpleIPFSTest.java       | 213 +++++++++++++++++++++
 .../src/test/resources/html/chap/ch01.html         |  13 ++
 .../src/test/resources/html/css/default.css        |  38 ++++
 .../src/test/resources/html/etc/userfile.txt       |   1 +
 .../src/test/resources/html/img/logo.png           | Bin 0 -> 6715 bytes
 .../camel-ipfs/src/test/resources/html/index.html  |  13 ++
 .../src/test/resources/log4j2.properties           |  30 +++
 components/pom.xml                                 |   1 +
 components/readme.adoc                             |   5 +-
 docs/user-manual/en/SUMMARY.md                     |   1 +
 parent/pom.xml                                     |  16 ++
 .../ws/springboot/WsComponentConfiguration.java    |   2 +-
 .../components-starter/camel-ipfs-starter/pom.xml  |  68 +++++++
 .../springboot/IPFSComponentAutoConfiguration.java | 128 +++++++++++++
 .../springboot/IPFSComponentConfiguration.java     |  55 ++++++
 .../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 ++
 33 files changed, 1185 insertions(+), 4 deletions(-)
 create mode 100644 components/camel-ipfs/pom.xml
 create mode 100644 components/camel-ipfs/src/main/docs/ipfs-component.adoc
 create mode 100644 
components/camel-ipfs/src/main/java/org/apache/camel/component/ipfs/IPFSComponent.java
 create mode 100644 
components/camel-ipfs/src/main/java/org/apache/camel/component/ipfs/IPFSConfiguration.java
 create mode 100644 
components/camel-ipfs/src/main/java/org/apache/camel/component/ipfs/IPFSEndpoint.java
 create mode 100644 
components/camel-ipfs/src/main/java/org/apache/camel/component/ipfs/IPFSProducer.java
 copy {tooling/maven/camel-package-maven-plugin => 
components/camel-ipfs}/src/main/resources/META-INF/LICENSE.txt (100%)
 copy {tooling/maven/camel-package-maven-plugin => 
components/camel-ipfs}/src/main/resources/META-INF/NOTICE.txt (100%)
 create mode 100644 
components/camel-ipfs/src/main/resources/META-INF/services/org/apache/camel/component/ipfs
 create mode 100644 
components/camel-ipfs/src/test/java/org/apache/camel/component/ipfs/SimpleIPFSTest.java
 create mode 100644 components/camel-ipfs/src/test/resources/html/chap/ch01.html
 create mode 100644 
components/camel-ipfs/src/test/resources/html/css/default.css
 create mode 100644 
components/camel-ipfs/src/test/resources/html/etc/userfile.txt
 create mode 100644 components/camel-ipfs/src/test/resources/html/img/logo.png
 create mode 100644 components/camel-ipfs/src/test/resources/html/index.html
 create mode 100644 components/camel-ipfs/src/test/resources/log4j2.properties
 create mode 100644 
platforms/spring-boot/components-starter/camel-ipfs-starter/pom.xml
 create mode 100644 
platforms/spring-boot/components-starter/camel-ipfs-starter/src/main/java/org/apache/camel/component/ipfs/springboot/IPFSComponentAutoConfiguration.java
 create mode 100644 
platforms/spring-boot/components-starter/camel-ipfs-starter/src/main/java/org/apache/camel/component/ipfs/springboot/IPFSComponentConfiguration.java
 copy {tooling/maven/camel-package-maven-plugin => 
platforms/spring-boot/components-starter/camel-ipfs-starter}/src/main/resources/META-INF/LICENSE.txt
 (100%)
 copy {tooling/maven/camel-package-maven-plugin => 
platforms/spring-boot/components-starter/camel-ipfs-starter}/src/main/resources/META-INF/NOTICE.txt
 (100%)
 create mode 100644 
platforms/spring-boot/components-starter/camel-ipfs-starter/src/main/resources/META-INF/spring.factories
 create mode 100644 
platforms/spring-boot/components-starter/camel-ipfs-starter/src/main/resources/META-INF/spring.provides

Reply via email to