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 acaedbf76f2 [create-pull-request] automated change add 43af0be0b8d [create-pull-request] automated change add 4da45578e48 CAMEL-18178 - Create a Camel-hashicorp-vault spring boot starter add d4695b69f0e CAMEL-18178 - Create a Camel-hashicorp-vault spring boot starter add bb456cb6253 CAMEL-18178 - Create a Camel-hashicorp-vault spring boot starter add 84ca7894cf2 Regen add 6220c1d87a6 Regen add 4e8f60aa8a3 Remove itest that gets out of date and hard to maintain 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 (acaedbf76f2) \ N -- N -- N refs/heads/automatic-periodic-sync (4e8f60aa8a3) 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 | 1 + .../springboot/catalog/components/couchbase.json | 3 +- .../springboot/catalog/components/couchdb.json | 3 +- .../camel/springboot/catalog/components/cql.json | 3 +- .../catalog/components/google-drive.json | 8 +- .../catalog/components/hashicorp-vault.json | 43 ++++++ .../src/main/docs/google-drive.json | 12 +- .../GoogleDriveComponentConfiguration.java | 25 ++-- .../pom.xml | 6 +- .../src/main/docs/hashicorp-vault.json} | 26 ++-- .../HashicorpVaultComponentAutoConfiguration.java} | 20 +-- .../HashicorpVaultComponentConfiguration.java} | 10 +- .../src/main/resources/META-INF/LICENSE.txt | 0 .../src/main/resources/META-INF/NOTICE.txt | 0 .../src/main/resources/META-INF/spring.factories | 2 +- .../src/main/resources/META-INF/spring.provides | 2 +- components-starter/pom.xml | 1 + ...thubsTest.java => CamelHashicorpVaultTest.java} | 5 +- .../infinispan/pom.xml | 55 -------- .../springboot/infinispan/InfinispanRoutes.java | 49 ------- .../springboot/infinispan/InfinispanTest.java | 153 --------------------- .../integration-common/pom.xml | 32 ----- .../camel/integration/springboot/Application.java | 28 ---- .../springboot/SpringBootBaseIntegration.java | 36 ----- tests/camel-spring-boot-integration-tests/pom.xml | 68 --------- tests/pom.xml | 1 - tooling/camel-spring-boot-bom/pom.xml | 5 + tooling/camel-spring-boot-dependencies/pom.xml | 5 + 28 files changed, 119 insertions(+), 483 deletions(-) create mode 100644 catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/hashicorp-vault.json copy components-starter/{camel-azure-cosmosdb-starter => camel-hashicorp-vault-starter}/pom.xml (91%) copy components-starter/{camel-azure-key-vault-starter/src/main/docs/azure-key-vault.json => camel-hashicorp-vault-starter/src/main/docs/hashicorp-vault.json} (59%) copy components-starter/{camel-kubernetes-starter/src/main/java/org/apache/camel/component/kubernetes/pods/springboot/KubernetesPodsComponentAutoConfiguration.java => camel-hashicorp-vault-starter/src/main/java/org/apache/camel/component/hashicorp/vault/springboot/HashicorpVaultComponentAutoConfiguration.java} (84%) copy components-starter/{camel-azure-key-vault-starter/src/main/java/org/apache/camel/component/azure/key/vault/springboot/KeyVaultComponentConfiguration.java => camel-hashicorp-vault-starter/src/main/java/org/apache/camel/component/hashicorp/vault/springboot/HashicorpVaultComponentConfiguration.java} (90%) copy {archetypes/camel-archetype-spring-boot => components-starter/camel-hashicorp-vault-starter}/src/main/resources/META-INF/LICENSE.txt (100%) copy {archetypes/camel-archetype-spring-boot => components-starter/camel-hashicorp-vault-starter}/src/main/resources/META-INF/NOTICE.txt (100%) copy components-starter/{camel-avro-starter => camel-hashicorp-vault-starter}/src/main/resources/META-INF/spring.factories (91%) copy components-starter/{camel-ahc-ws-starter => camel-hashicorp-vault-starter}/src/main/resources/META-INF/spring.provides (96%) copy tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/{CamelAzureEventhubsTest.java => CamelHashicorpVaultTest.java} (92%) delete mode 100644 tests/camel-spring-boot-integration-tests/infinispan/pom.xml delete mode 100644 tests/camel-spring-boot-integration-tests/infinispan/src/main/java/org/apache/camel/integration/springboot/infinispan/InfinispanRoutes.java delete mode 100644 tests/camel-spring-boot-integration-tests/infinispan/src/test/java/org/apache/camel/integration/springboot/infinispan/InfinispanTest.java delete mode 100644 tests/camel-spring-boot-integration-tests/integration-common/pom.xml delete mode 100644 tests/camel-spring-boot-integration-tests/integration-common/src/main/java/org/apache/camel/integration/springboot/Application.java delete mode 100644 tests/camel-spring-boot-integration-tests/integration-common/src/main/java/org/apache/camel/integration/springboot/SpringBootBaseIntegration.java delete mode 100644 tests/camel-spring-boot-integration-tests/pom.xml