ysb33r
08/26/2026, 5:59 PMorg.gradle.nativeplatform.OperatingSystemFamily attributes for publishing JARs that should only be selected on specific operating systems? Or are these purely for native development artifacts?Vampire
08/26/2026, 6:04 PMJendrik Johannes
08/26/2026, 6:33 PMysb33r
08/26/2026, 6:37 PMysb33r
08/27/2026, 7:58 AMJendrik Johannes
08/28/2026, 6:05 AMbuildscript { configurations { classpath { } } } . If the plugins are "loaded" in settings already. Otherwise probably also on buildscript... of the corresponding project. I don't think there is another place this could be done.
Maybe this would be an interesting addition for the gradle-native-java-plugin . The author ā github.com/ia3andy / @Andy Damevin I believe ā created that plugin in response to the issue linked above (see comment there). He is probably open for a contribution in this area.ysb33r
08/28/2026, 8:16 AMbuildscript.configurations.classpath from the settings.gradle pluginManagement . That would have been ideal as one could then apply a settings plugin.Vampire
08/28/2026, 8:20 AMysb33r
08/28/2026, 8:31 AMysb33r
08/28/2026, 8:34 AMSettings and not inside the pluginManagement blockJendrik Johannes
08/28/2026, 8:36 AMpluginManagement as well at some point. Maybe then buildscript could be deprecated on the long run. That would probably clarify things.ysb33r
08/28/2026, 10:57 AMclasspath inside Settings, but ran into
> Cannot change attributes of configuration 'classpath' after it has been locked for mutationysb33r
08/28/2026, 1:12 PMgetGradle().getLifecycle() .
I made a new PR which @Andy Damevin can take if he wants. github.com/mvnpm/gradle-native-java-plugin/pull/3