I was doing some code changes to Gradle internal JavaExecHandleBuilder (https://github.com/gradle/gradle/pull/31318), and our tests showed that my changes break your plugin.
This PR replaces JavaExecHandleBuilder usage with ExecOperations.javaExec() that is a public API, to avoid such problems in the future.
I was doing some code changes to Gradle internal
JavaExecHandleBuilder
(https://github.com/gradle/gradle/pull/31318), and our tests showed that my changes break your plugin.This PR replaces
JavaExecHandleBuilder
usage withExecOperations.javaExec()
that is a public API, to avoid such problems in the future.