Slackbot
07/23/2022, 9:57 AMThomas Broyer
07/23/2022, 3:39 PMjavaexec
? Could you maybe rewrite it to use the Worker API? You could get the same kind of isolation but also classes from the plugin.Andres Almiray
07/23/2022, 3:52 PMThomas Broyer
07/23/2022, 4:06 PMThomas Broyer
07/23/2022, 10:45 PM.await()
with that error handling here?Anze Sodja
07/25/2022, 6:46 AMproject.buildscript.configurations.getByName("classpath")
to a task and then do smth. like:
buildscriptClasspath.find { it endsWith "jandex-gradle-plugin-.*.jar" }
I see that in buildscript.configurations.getByName("classpath")
artifacts paths are in “repository cache” ~/.gradle/caches/modules-2/files-2.1
and not in “instrumented cache” ~/.gradle/caches/jars-9
that you get when you do SomeClass.class.protectionDomain.codeSource.location
.
I didn’t test it though. 🙂Andres Almiray
07/26/2022, 12:38 PM