Elasticsearch jar hell when writing integration tests

I found some more related information, and perhaps a solution:

should it now be possible in ES 5.0 to disable the check by using -Dtests.jarhell.check=false ?

It seems like the the "tests.jarhell.check" setting never made it to 5.0, only to 2.2 and 2.3 branches.

No if statement around the JarHell check:

    // check for jar hell
    try {
        JarHell.checkJarHell();
    } catch (Exception e) {
        throw new RuntimeException("found jar hell in test classpath", e);
    }

Could anyone confirm this?