Can we get the failure via DataFlowAction when the...
# community-support
r
Can we get the failure via DataFlowAction when the resolution of the plugin sitting in settings.gradle.kts fails, because of any reason?
I tried playing around with few different approaches, with the assumption of reporter will be resolved and applied first, hence should be able to catch any failure thrown by plugins listed below.
Copy code
//settings.gradle.kts
plugin {
  "reporter" // used DataFlow Action to catch exception
   "develocity" version 10.0 // wrong version, throws an exception
}
v
It will be applied first. But besides that if a plugin relies on application order, it usually does something wrong. :-) And resolution happens together. It is one settings script class path that is resolved like dependencies, only then you also have all classes available that are necessary to compile the script, then the plugins get applied.
r
Got it, thanks.
👌 1