Is there a way to have AntBuilder use a separate t...
# community-support
j
Is there a way to have AntBuilder use a separate toolchain to gradle itself? I have a need to run gradle daemon with JDK21 but run ant with JDK8
t
AntBuilder is in-process, so AFAICT if you need to run Ant with a different JVM you'll have to use
exec
or
javaExec
.
👍 1