How to exlude `org.elasticsearch.test.framework` dependency from Gradle `esplugin`?

Gradle esplugin introducing the dependency org.elasticsearch.test.framework requires RandomizedRunner to run tests(both Unit Tests and Integration Tests).
In comparison, Maven doesn't introduce org.elasticsearch.test.framework . Therefore, it doesn't required requires RandomizedRunner to run tests. I've managed to migrate the build system of my ES plugin from Maven to Gradle, but I don't want to specify RandomizedRunner in my tests. I suppose that the tests will run without RandomizedRunner if org.elasticsearch.test.framework can be excluded from the classpath. Anyone knows an approach to exclude org.elasticsearch.test.framework from Gradle esplugin ?

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.