Slackbot
09/21/2023, 1:24 PMVampire
09/21/2023, 1:53 PMallprojects { ... }
, subprojects { ... }
, apply plugin
, ext
, ... which are highly discouraged and you should use other things like for example convention plugins instead. Or also ...Compatiblity
and instead use JVM toolchains.
But anyway, if I got you right, you have in commons
the plugin and also some libraries and the libraries should be Java 17 while the plugin should still be Java 11? How should that work if you declare all subprojects ot be 11 or 17? Again, convention plugins would solve the problem, as you apply them only where you actually want their effect and not like a watering can. But you can of course also add some more bad practice and set the values depending on the project name in the subprojects
closure.Phalguna
09/21/2023, 1:57 PMVampire
09/21/2023, 1:59 PMPhalguna
09/21/2023, 5:56 PM