Error while applying plugin #871
amitmthorat
started this conversation in
General
Replies: 1 comment
-
This indicates that the jackson yaml used in the configuration for serialization of marathonfile is incompatible with the classpath of the JVM used inside your gradle invocation: marathon/configuration/build.gradle.kts Line 12 in daffb12 Three options:
In general gradle's plugin system doesn't have good classpath isolation for plugins, hence the only way to solve classpath incompatibilities is to spawn another JVM. ClassLoaders can be used but are too complicated for a wrapper around a CLI. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi Team,
I get below error when I try to apply plugin my app.gradle
apply plugin: 'com.malinskiy.marathon'
Unable to find method ''void org.yaml.snakeyaml.events.MappingStartEvent.(java.lang.String, java.lang.String, boolean, org.yaml.snakeyaml.error.Mark, org.yaml.snakeyaml.error.Mark, org.yaml.snakeyaml.DumperOptions$FlowStyle)''
'void org.yaml.snakeyaml.events.MappingStartEvent.(java.lang.String, java.lang.String, boolean, org.yaml.snakeyaml.error.Mark, org.yaml.snakeyaml.error.Mark, org.yaml.snakeyaml.DumperOptions$FlowStyle)'
please suggest if I'm missing anything.
Beta Was this translation helpful? Give feedback.
All reactions