Skip to content

Commit 7b515bd

Browse files
committed
HSEARCH-4061 Only override surefire's ASM version for Java 15+
Since the version of surefire we're using already depends on ASM 7.2, which is enough for Java 14. Signed-off-by: Yoann Rodière <yoann@hibernate.org>
1 parent 9dafd00 commit 7b515bd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1759,14 +1759,14 @@
17591759
</profile>
17601760

17611761
<profile>
1762-
<id>jdk13+</id>
1762+
<id>jdk15+</id>
17631763
<activation>
1764-
<jdk>[13,)</jdk>
1764+
<jdk>[15,)</jdk>
17651765
</activation>
17661766
<build>
17671767
<!--
17681768
maven-surefire-plugin and maven-failsafe-plugin use an older version of ASM
1769-
that cannot handle Java 13/14 bytecode.
1769+
that cannot handle Java 15+ bytecode.
17701770
Let's upgrade that dependency and hope for the best;
17711771
if it doesn't work, the build is very likely to fail and we'll know about it.
17721772
-->

0 commit comments

Comments
 (0)