Jack Boswell
05/24/2025, 12:23 AMjvmMain source set with sourceSets.findByName("jvmMain") and go from there, but I just get null back 😔
Any ideas? Docs you can point me to? Some other simpler solution? Much appreciated 🙏Jack Boswell
05/24/2025, 12:39 AMjvmMain exists via sourceSets.jvmMain.isPresent, and configure via sourceSets.jvmMain.configure
The actual source set and tasks don't exist until this is evaluated, so you need to make use of the lazy init stuff
Thanks for rubber ducking