Disable blockhound junit integration for jdk > 17

This commit is contained in:
sgibb
2023-06-23 23:09:18 -04:00
parent 5df34a7e08
commit 28baf1d381

View File

@@ -203,11 +203,6 @@
<artifactId>blockhound</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.projectreactor.tools</groupId>
<artifactId>blockhound-junit-platform</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
@@ -327,6 +322,19 @@
</plugins>
</build>
<profiles>
<profile>
<id>java17</id>
<activation>
<jdk>[17,18)</jdk>
</activation>
<dependencies>
<dependency>
<groupId>io.projectreactor.tools</groupId>
<artifactId>blockhound-junit-platform</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</profile>
<profile>
<id>java13plus</id>
<activation>