Slackbot
04/21/2022, 2:45 PMVampire
04/21/2022, 2:47 PMVampire
04/21/2022, 3:12 PM-XX:-OmitStackTraceInFastThrow
to the daemon args to get it back if that is really that thing I remember.Lars Ködderitzsch
04/21/2022, 3:21 PMCaused by: java.lang.NullPointerException
at org.gradle.api.internal.artifacts.dependencies.DefaultImmutableVersionConstraint.of(DefaultImmutableVersionConstraint.java:118)
at org.gradle.internal.component.external.model.DefaultModuleComponentSelector.newSelector(DefaultModuleComponentSelector.java:172)
...
Also I managed to attach a debugger to the build and caught the NPE, turns out I had a typo in the platform definition
api("org.apache.xmlgraphics:batik-transcoder.1.14")
vs.
api("org.apache.xmlgraphics:batik-transcoder:1.14")
Correcting that it works just fine 🎉
Thanks for the pointers 🙏Vampire
04/21/2022, 3:48 PMLars Ködderitzsch
04/22/2022, 6:27 AM