I have a Scala sbt project which I am trying to run on my IntelliJ but I am facing exception as:
Exception in thread "main" java.lang.NoClassDefFoundError: com/fasterxml/jackson/databind/Module
I have included the dependency in my build.sbt as
libraryDependencies += "com.fasterxml.jackson.core" % "jackson-databind" % "2.12.1"
Can someone let me know what is missing?
I also thought may be it needs some dependency related to scala so I added though I am not sure of this but still same error
// https://mvnrepository.com/artifact/com.fasterxml.jackson.module/jackson-module-scala
libraryDependencies += "com.fasterxml.jackson.module" %% "jackson-module-scala" % "2.12.3"
Any suggestions anyone?