Greetings,
I’m trying to upgrade akka from 2.5.18 to 2.5.19 as well as scala-library to 2.12.8 and previously working code now gives me
java.lang.NoClassDefFoundError: Could not initialize class akka.actor.Props$
[java] akka.actor.Props.create(Props.scala)
When i look at the exception the static initializer is throwing a InvocationTargetException
and embedded in that i see the target is
java.lang.NoClassDefFoundError: scala/Product$class
When i look in the scala-library jar i do in fact see that class (well i see scala/Product at least), However the cause of the NCDF on Product is indeed a ClassNotFoundException.
When i revert scala-library back to 2.11.12 it (but leave akka-actor at 2.5.19) it works fine.
Anyone know what my issue could be?