Skip to content

Commit 5018c77

Browse files
committed
HSEARCH-5493 Don't run Spring Boot tests with JDK 25
which is the default now
1 parent 9684bf1 commit 5018c77

File tree

1 file changed

+2
-18
lines changed

1 file changed

+2
-18
lines changed

pom.xml

Lines changed: 2 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1348,27 +1348,11 @@
13481348
</properties>
13491349
</profile>
13501350

1351-
<profile>
1352-
<id>testWithJdk24</id>
1353-
<activation>
1354-
<property>
1355-
<name>java-version.test.release</name>
1356-
<value>24</value>
1357-
</property>
1358-
</activation>
1359-
<properties>
1360-
<!-- Spring Boot 3 isn't ready for JDK24 yet -->
1361-
<failsafe.spring.skip>true</failsafe.spring.skip>
1362-
</properties>
1363-
</profile>
1364-
13651351
<profile>
13661352
<id>testWithJdk25</id>
13671353
<activation>
1368-
<property>
1369-
<name>java-version.test.release</name>
1370-
<value>25</value>
1371-
</property>
1354+
<!-- Hack to activate by default, except when explicitly disabled -->
1355+
<jdk>[25,)</jdk>
13721356
</activation>
13731357
<properties>
13741358
<!-- Spring Boot 3 isn't ready for JDK25 yet -->

0 commit comments

Comments
 (0)