This is an automated email from the ASF dual-hosted git repository.
apupier pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push:
new c4aeef30770a CAMEL-22114 - Skip tests for JMS component on JDK 25
c4aeef30770a is described below
commit c4aeef30770a7c53f82dd9bbba03670de8a690d5
Author: Aurélien Pupier <[email protected]>
AuthorDate: Tue Oct 21 09:37:59 2025 +0200
CAMEL-22114 - Skip tests for JMS component on JDK 25
Currently they are taking several hours as they are failing causing the
JDK 25 build to go in timeout and prevent from playing a lot of
component test with JDK 25. To allow having an overview on other tests
with JDk 25, deactivating it for JMS component.
Signed-off-by: Aurélien Pupier <[email protected]>
---
components/camel-jms/pom.xml | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/components/camel-jms/pom.xml b/components/camel-jms/pom.xml
index df5841a78da6..4ce66620c47f 100644
--- a/components/camel-jms/pom.xml
+++ b/components/camel-jms/pom.xml
@@ -263,5 +263,29 @@
</plugins>
</build>
</profile>
+ <profile>
+ <id>jdk25</id>
+ <activation>
+ <jdk>[25,)</jdk>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <skipTests>true</skipTests>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-failsafe-plugin</artifactId>
+ <configuration>
+ <skipITs>true</skipITs>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
</profiles>
</project>