AbstractMethodError when parsing
See original GitHub issueI’m using circe 0.9.0 inside SBT 0.13.x code and Scala 2.10.
projectDependencies ++=
Seq(
"io.circe" %% "circe-core",
"io.circe" %% "circe-parser",
"io.circe" %% "circe-optics"
).map(_ % "0.9.0")
This is my code:
val json = "{.....}"
val result = parse(json)
and it throws an exception:
java.lang.AbstractMethodError: io.circe.jawn.CirceSupportParser$$anon$1$$anon$4.add(Ljava/lang/String;)V
It this a bug or am I doing something wrong?
Issue Analytics
- State:
- Created 6 years ago
- Reactions:1
- Comments:12 (4 by maintainers)
Top Results From Across the Web
scala - java.lang.AbstractMethodError when updating to play ...
I'm trying to update play framework for one of our services from 2.6.x to 2.7.3. After that some of the unit tests are...
Read more >AbstractMethodError (Java Platform SE 8 ) - Oracle Help Center
Thrown when an application tries to call an abstract method. Normally, this error is caught by the compiler; this error can only occur...
Read more >PH28645: ABSTRACTMETHODERROR IN ... - IBM
The following error can occur when using WSDL4J if an application is configured to use a non-default JAXP XML Parser.
Read more >Pipeline Maven Integration fails due to java.lang ...
AbstractMethodError : javax.xml.parsers.DocumentBuilderFactory.setFeature(Ljava/lang/String;Z)V at org.jenkinsci.plugins.pipeline.maven.MavenSpyLogProcessor.
Read more >java.lang.AbstractMethodError: org.jenkinsci.plugins.pipeline ...
at org.jenkinsci.plugins.pipeline.modeldefinition.parser.GroovyShellDecoratorImpl$1.call(GroovyShellDecoratorImpl.java:46) at org.codehaus.groovy.control.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I’m having exactly the same problem. Any progress on this?
I get this in SBT
1.2.3
and circe0.10.0
and @WassTrifi’s fix is not working 😞