This message was deleted.
# community-support
s
This message was deleted.
z
even after I add
com.malinskiy.marathon
to the
buildSrc/build.gradle.kts
plugins{ }
block, it still fails
j
Potentially missing the repository that plugin comes from? Does
--info
provide additional details? Also, I'm not sure how else to get a plugin other than from the
plugins{}
block in the
buildSrc/build.gradle.kts
so that seems required in my opinion.
z
I was able to resolve it by:
Copy code
//apply(plugin = "com.malinskiy.marathon") // remove this
apply<com.malinskiy.marathon.gradle.MarathonPlugin>()
But this is less than ideal. Wonder if it’s a gradle bug?
I’m not sure how else to get a plugin other than from the 
plugins{}
Copy code
apply(plugin = "com.malinskiy.marathon")
right in the precompiled script plugin^^