libraryDependencies for com.eed3si9n#sbt-assembly;0.13.0: not found

后端 未结 5 699
夕颜
夕颜 2021-02-08 20:23

I am building a sbt plugin and want to reference assembly task in the sbt-assembly plugin ( to be dependent on my task)

to do this i need to reference it as a library (

5条回答
  •  误落风尘
    2021-02-08 20:51

    I had the same issues, All I did was, remove the ==>

    addSbtPlugin("com.eed3si9n" %% "sbt-assembly" % "0.14.5")

    line from build.sbt and copied to another file, named assembly.sbt at the same project level, where build.sbt is.

    It resolved the error.(After 3 hours of reading all posts on the internet. :-) )

提交回复
热议问题