Make BlockHound tests run on Java 13 (#9742)
Motivation: Java 13 requires special flags to be set to make BlockHound work Modifications: - Added jdk13 profile to `transport-blockhound-tests` - Enabled `-XX:+AllowRedefinitionToAddDeleteMethods` on jdk13 Result: The tests work on Java 13
This commit is contained in:
parent
ed52dac8cc
commit
17cff0ee77
@ -31,6 +31,18 @@
|
||||
|
||||
<name>Netty/Transport/BlockHound/Tests</name>
|
||||
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>java13</id>
|
||||
<activation>
|
||||
<jdk>13</jdk>
|
||||
</activation>
|
||||
<properties>
|
||||
<argLine.common>-XX:+AllowRedefinitionToAddDeleteMethods</argLine.common>
|
||||
</properties>
|
||||
</profile>
|
||||
</profiles>
|
||||
|
||||
<properties>
|
||||
<maven.compiler.source>1.8</maven.compiler.source>
|
||||
<maven.compiler.target>1.8</maven.compiler.target>
|
||||
|
Loading…
Reference in New Issue
Block a user