Slackbot
03/29/2022, 8:15 PMMike Cumings
03/29/2022, 10:04 PMcom.gradle.scan.plugin.BuildScanExtension#background
but don't see a good execution API that works for this context, leading me to believe that I'd have to fall back on manual Thread
construction (or equiv via Executors
)grossws
03/30/2022, 1:43 AMExecutors
and CompletableFuture
could be best bet if you don't want to bring any dependencies. If you are ready for more heavy things - take what you're more comfortable with. But kotlin things would be painful if you're targeting more than one gradle major version.
Also if you what to run some native process I could recommend zt-exec
instead of java's ProcessBuilder
, it's much less painful.Mike Cumings
03/30/2022, 3:56 PM