Use loopback address for rmi tests (#2738)

This commit is contained in:
Lauri Tulmin 2021-04-06 23:21:00 +03:00 committed by GitHub
parent a8a443e39d
commit 1486d73dda
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -38,3 +38,6 @@ tasks.withType(JavaCompile) {
tasks.withType(GroovyCompile) {
options.release = null
}
tasks.withType(Test) {
jvmArgs "-Djava.rmi.server.hostname=127.0.0.1"
}