This is an automated email from the ASF dual-hosted git repository. aldettinger pushed a change to branch CAMEL-13965 in repository https://gitbox.apache.org/repos/asf/camel.git.
discard f94b212 CAMEL-13965: Migrated camel-univocity-parsers to camel-test-spring-junit5 add e1a6b9a Camel-Kubernetes: Added samples code for namespaces component add 4a26e41 Regen docs add 065c822 Camel-Kubernetes: Added samples code for nodes component add f5e5415 Regen docs add 4edb583 Camel-Http: Removed references to https4 add 9d4a6d6 Regen docs add 5d3ac2a CAMEL-13965: Migrated camel-univocity-parsers to camel-test-spring-junit5 add b50e0d0 Upgrade Owasp Maven plugin to version 5.2.2 add abc12fb Camel-Kubernetes: Added samples code for pvc component add 4b5c941 Regen docs add fce54f7 Camel-Kubernetes: Added samples code for pv component add 3d8473a Regen new 385a3d0 CAMEL-13965: Added the @CamelSpringBootTest annotation 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 (f94b212) \ N -- N -- N refs/heads/CAMEL-13965 (385a3d0) 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. The 1 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 | 6 +-- apache-camel/src/main/descriptors/common-bin.xml | 2 +- bom/camel-bom/pom.xml | 6 +-- .../camel-http/src/main/docs/http-component.adoc | 8 ++-- .../apache/camel/component/http/HttpComponent.java | 2 +- .../main/docs/kubernetes-namespaces-component.adoc | 52 +++++++++++++++++++++ .../src/main/docs/kubernetes-nodes-component.adoc | 52 +++++++++++++++++++++ ...rnetes-persistent-volumes-claims-component.adoc | 33 +++++++++++++ .../kubernetes-persistent-volumes-component.adoc | 33 +++++++++++++ components/camel-spring-boot/pom.xml | 7 +-- .../src/main/docs/spring-boot.adoc | 52 ++++++++++++++++++++- .../MyApplicationTest.java} | 40 +++++++--------- .../boot/{mockendpoints => example}/MyRoute.java | 6 +-- .../spring/boot/issues/StreamCachingTest.java | 4 +- .../spring/boot/mockendpoints/AdviceWithTest.java | 11 ++--- .../MockEndpointsAndSkipDirtiesContextTest.java | 9 ++-- .../boot/mockendpoints/MockEndpointsTest.java | 9 ++-- .../camel/spring/boot/routefilter/BarTest.java | 10 ++-- .../routefilter/FooExcludeRouteAnnotationTest.java | 9 ++-- .../camel/spring/boot/routefilter/FooTest.java | 7 ++- .../src/main/docs/test-spring-junit5.adoc | 1 + .../junit5/CamelSpringBootExecutionListener.java | 24 ++++++++-- ...melSpringTest.java => CamelSpringBootTest.java} | 8 ++-- ...ringTestContextLoaderTestExecutionListener.java | 23 +++++---- .../junit5/DisableJmxTestExecutionListener.java | 15 +++++- .../junit5/SpringTestExecutionListenerSorter.java | 47 +++++++++++++++++++ .../junit5/StopWatchTestExecutionListener.java | 17 ++++++- .../SpringTestExecutionListenerSorterTest.java | 54 ++++++++++++++++++++++ components/readme.adoc | 4 +- .../modules/ROOT/pages/http-component.adoc | 8 ++-- .../pages/kubernetes-namespaces-component.adoc | 52 +++++++++++++++++++++ .../ROOT/pages/kubernetes-nodes-component.adoc | 52 +++++++++++++++++++++ ...rnetes-persistent-volumes-claims-component.adoc | 33 +++++++++++++ .../kubernetes-persistent-volumes-component.adoc | 33 +++++++++++++ parent/pom.xml | 8 ++-- .../camel-spring-boot-dependencies/pom.xml | 6 +-- 36 files changed, 627 insertions(+), 116 deletions(-) copy components/camel-spring-boot/src/test/java/org/apache/camel/spring/boot/{componentroute/ComponentRouteTest.java => example/MyApplicationTest.java} (60%) copy components/camel-spring-boot/src/test/java/org/apache/camel/spring/boot/{mockendpoints => example}/MyRoute.java (88%) copy components/camel-test-spring-junit5/src/main/java/org/apache/camel/test/spring/junit5/{CamelSpringTest.java => CamelSpringBootTest.java} (91%) create mode 100644 components/camel-test-spring-junit5/src/main/java/org/apache/camel/test/spring/junit5/SpringTestExecutionListenerSorter.java create mode 100644 components/camel-test-spring-junit5/src/test/java/org/apache/camel/test/spring/SpringTestExecutionListenerSorterTest.java