Skip to content

Commit 0be693a

Browse files
committed
HSEARCH-5493 Don't run Spring Boot tests with JDK 25
which is the default now
1 parent 71de363 commit 0be693a

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
@@ -1347,27 +1347,11 @@
13471347
</properties>
13481348
</profile>
13491349

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

0 commit comments

Comments
 (0)