This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch automatic-periodic-sync in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git.
omit 9c7dbba [create-pull-request] automated change add 6c98345 [create-pull-request] automated change add 3195950 CAMEL-16222: camel-core - ExchangeFactory SPI to allow to use exchange pooling add 434824c CAMEL-16115 - Remove Camel-AWS-* components - AWS-S3 add a61ddea3 CAMEL-16115 - Remove Camel-AWS-* components - AWS-S3 add b2668a4 CAMEL-16115 - Remove Camel-AWS-* components - AWS-S3 add ce3e219 CAMEL-16115 - Remove Camel-AWS-* components - AWS-S3 add 1246e3b CAMEL-16115 - Remove Camel-AWS-* components - AWS-S3 add d0f8d1f CAMEL-16258: camel-spring-boot - @ExcludeRoutes not working anymore add 3c6441e Regen add 5fb1de5 CAMEL-16115 - Remove Camel-AWS-* components - AWS-SWF add 6fdef47 CAMEL-16115 - Remove Camel-AWS-* components - AWS-SWF add 27527d1 CAMEL-16115 - Remove Camel-AWS-* components - AWS-SWF add 4c95f8f CAMEL-16115 - Remove Camel-AWS-* components - AWS-SWF add 6554a19 CAMEL-16115 - Remove Camel-AWS-* components - AWS-SWF add a7da513 [create-pull-request] automated change This update added new revisions after undoing existing revisions. That is to say, some revisions that were in the old version of the branch are not in the new version. This situation occurs when a user --force pushes a change and generates a repository containing something like this: * -- * -- B -- O -- O -- O (9c7dbba) \ N -- N -- N refs/heads/automatic-periodic-sync (a7da513) You should already have received notification emails for all of the O revisions, and so the following emails describe only the N revisions from the common base, B. Any revisions marked "omit" are not gone; other references still refer to them. Any revisions marked "discard" are gone forever. No new revisions were added by this update. Summary of changes: .../camel/springboot/catalog/components.properties | 2 - .../springboot/catalog/components/aws-s3.json | 128 ----- .../springboot/catalog/components/aws-swf.json | 90 ---- .../camel/springboot/catalog/components/http.json | 7 + .../camel/springboot/catalog/components/https.json | 7 + .../springboot/catalog/components/resteasy.json | 7 + .../springboot/catalog/others/google-storage.json | 14 - components-starter/README.adoc | 10 +- components-starter/camel-aws-s3-starter/pom.xml | 57 -- .../src/main/docs/aws-s3-starter.adoc | 69 --- .../springboot/S3ComponentAutoConfiguration.java | 79 --- .../s3/springboot/S3ComponentConfiguration.java | 582 --------------------- .../aws/s3/springboot/S3ComponentConverter.java | 71 --- .../src/main/resources/META-INF/LICENSE.txt | 203 ------- .../src/main/resources/META-INF/NOTICE.txt | 11 - .../src/main/resources/META-INF/spring.factories | 21 - .../src/main/resources/META-INF/spring.provides | 17 - components-starter/camel-aws-swf-starter/pom.xml | 57 -- .../src/main/docs/aws-swf-starter.adoc | 59 --- .../springboot/SWFComponentAutoConfiguration.java | 79 --- .../swf/springboot/SWFComponentConfiguration.java | 443 ---------------- .../aws/swf/springboot/SWFComponentConverter.java | 77 --- .../src/main/resources/META-INF/LICENSE.txt | 203 ------- .../src/main/resources/META-INF/NOTICE.txt | 11 - .../src/main/resources/META-INF/spring.factories | 21 - .../src/main/resources/META-INF/spring.provides | 17 - .../src/main/docs/http-starter.adoc | 9 +- .../springboot/HttpComponentConfiguration.java | 85 +++ .../src/main/docs/resteasy-starter.adoc | 9 +- .../springboot/ResteasyComponentConfiguration.java | 85 +++ components-starter/pom.xml | 2 - .../src/main/docs/spring-boot.adoc | 5 +- .../spring/boot/CamelConfigurationProperties.java | 17 +- .../spring/boot/SpringBootRoutesCollector.java | 20 +- docs/modules/ROOT/pages/aws-s3-starter.adoc | 69 --- docs/modules/ROOT/pages/aws-swf-starter.adoc | 59 --- docs/modules/ROOT/pages/http-starter.adoc | 9 +- docs/modules/ROOT/pages/list.adoc | 10 +- docs/modules/ROOT/pages/resteasy-starter.adoc | 9 +- docs/modules/ROOT/pages/spring-boot.adoc | 5 +- .../camel/itest/springboot/CamelAwsS3Test.java | 48 -- .../camel/itest/springboot/CamelAwsSwfTest.java | 48 -- tooling/camel-spring-boot-bom/pom.xml | 10 - tooling/camel-spring-boot-dependencies/pom.xml | 22 +- 44 files changed, 263 insertions(+), 2600 deletions(-) delete mode 100644 catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/aws-s3.json delete mode 100644 catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/aws-swf.json delete mode 100644 catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/others/google-storage.json delete mode 100644 components-starter/camel-aws-s3-starter/pom.xml delete mode 100644 components-starter/camel-aws-s3-starter/src/main/docs/aws-s3-starter.adoc delete mode 100644 components-starter/camel-aws-s3-starter/src/main/java/org/apache/camel/component/aws/s3/springboot/S3ComponentAutoConfiguration.java delete mode 100644 components-starter/camel-aws-s3-starter/src/main/java/org/apache/camel/component/aws/s3/springboot/S3ComponentConfiguration.java delete mode 100644 components-starter/camel-aws-s3-starter/src/main/java/org/apache/camel/component/aws/s3/springboot/S3ComponentConverter.java delete mode 100644 components-starter/camel-aws-s3-starter/src/main/resources/META-INF/LICENSE.txt delete mode 100644 components-starter/camel-aws-s3-starter/src/main/resources/META-INF/NOTICE.txt delete mode 100644 components-starter/camel-aws-s3-starter/src/main/resources/META-INF/spring.factories delete mode 100644 components-starter/camel-aws-s3-starter/src/main/resources/META-INF/spring.provides delete mode 100644 components-starter/camel-aws-swf-starter/pom.xml delete mode 100644 components-starter/camel-aws-swf-starter/src/main/docs/aws-swf-starter.adoc delete mode 100644 components-starter/camel-aws-swf-starter/src/main/java/org/apache/camel/component/aws/swf/springboot/SWFComponentAutoConfiguration.java delete mode 100644 components-starter/camel-aws-swf-starter/src/main/java/org/apache/camel/component/aws/swf/springboot/SWFComponentConfiguration.java delete mode 100644 components-starter/camel-aws-swf-starter/src/main/java/org/apache/camel/component/aws/swf/springboot/SWFComponentConverter.java delete mode 100644 components-starter/camel-aws-swf-starter/src/main/resources/META-INF/LICENSE.txt delete mode 100644 components-starter/camel-aws-swf-starter/src/main/resources/META-INF/NOTICE.txt delete mode 100644 components-starter/camel-aws-swf-starter/src/main/resources/META-INF/spring.factories delete mode 100644 components-starter/camel-aws-swf-starter/src/main/resources/META-INF/spring.provides delete mode 100644 docs/modules/ROOT/pages/aws-s3-starter.adoc delete mode 100644 docs/modules/ROOT/pages/aws-swf-starter.adoc delete mode 100644 tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelAwsS3Test.java delete mode 100644 tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelAwsSwfTest.java