Member since
06-06-2018
2
Posts
0
Kudos Received
0
Solutions
06-20-2018
10:25 AM
apparently this happend again for another project. And the issue was my assembly jar was bringing scala-library classes as well. So in my build.sbt i have excluded the scala by the following and that solved the issue. assemblyOption in assembly ~= { _.copy(includeScala = false) } After this change assembly jar didn't have scala packages, and livy started working
... View more