My SBT appears to have stopped including dependency Jars. I have been able to do this previously, until I decided to upgrade my intelliJ version, which messed my whole environment. I have since reverted back to the old version, but I still don't see why this is happening.
By build.sbt looks fine, and downloads all the dependencies i ask for. My assebmbly.sbt is also on point.
`resolvers += Resolver.url("sbt-plugin-releases-scalasbt", url("http://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/"))
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.11.2")
`
I am trying to build a fat jar. When I do a build artifact now, it just builds a jar, but without the dependencies.
I'm new to IntelliJ and SBT, so I am not adept in the way they work. How do I get around this problem? Thanks in advance.