so gradle now supports configuring java like this, which will install a gradle version of java if the required version isn't already available. I think it would be cool to do that with node, instead of either/or
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(11))
}
}
so gradle now supports configuring java like this, which will install a gradle version of java if the required version isn't already available. I think it would be cool to do that with node, instead of either/or
java { toolchain { languageVersion.set(JavaLanguageVersion.of(11)) } }