Probably due to how a ClasspathExec task gets the java launcher convention during initialization, and that type of task is created when this plugin is applied. Not sure if it is really an issue, but I've decided to report it as such.
I've worked around it with my Plugin DSL setup by doing this:
plugins {
// ...
id 'org.moddingx.modgradle.sourcejar' version '[4,5)' apply false
// ...
}
// setting version variable and other mundane stuff...
java.toolchain.languageVersion = JavaLanguageVersion.of(17)
apply plugin: 'org.moddingx.modgradle.sourcejar'
// everything else...
If you're curious, here's my settings.gradle setup:
pluginManagement {
resolutionStrategy {
eachPlugin {
// ModGradle
var plugin = requested.id.toString()
if (plugin.startsWith('org.moddingx.modgradle.')) {
useModule "org.moddingx:ModGradle:${requested.version}"
}
}
}
repositories {
gradlePluginPortal()
maven { url = 'https://maven.minecraftforge.net/' }
maven { url = 'https://repo.spongepowered.org/maven' }
maven { url = 'https://maven.parchmentmc.org' }
maven { url = 'https://maven.moddingx.org' }
}
}
plugins {
id 'org.gradle.toolchains.foojay-resolver-convention' version '0.5.0'
}
Gradle 8.1.1
ForgeGradle 6.0.11
ModGradle 4.0.4
Probably due to how a
ClasspathExectask gets the java launcher convention during initialization, and that type of task is created when this plugin is applied. Not sure if it is really an issue, but I've decided to report it as such.I've worked around it with my Plugin DSL setup by doing this:
plugins { // ... id 'org.moddingx.modgradle.sourcejar' version '[4,5)' apply false // ... } // setting version variable and other mundane stuff... java.toolchain.languageVersion = JavaLanguageVersion.of(17) apply plugin: 'org.moddingx.modgradle.sourcejar' // everything else...If you're curious, here's my
settings.gradlesetup:pluginManagement { resolutionStrategy { eachPlugin { // ModGradle var plugin = requested.id.toString() if (plugin.startsWith('org.moddingx.modgradle.')) { useModule "org.moddingx:ModGradle:${requested.version}" } } } repositories { gradlePluginPortal() maven { url = 'https://maven.minecraftforge.net/' } maven { url = 'https://repo.spongepowered.org/maven' } maven { url = 'https://maven.parchmentmc.org' } maven { url = 'https://maven.moddingx.org' } } } plugins { id 'org.gradle.toolchains.foojay-resolver-convention' version '0.5.0' }Gradle 8.1.1
ForgeGradle 6.0.11
ModGradle 4.0.4