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

后端 未结 5 698
夕颜
夕颜 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:42

    In my case, correcting the sbt assembly version from 14.3 to 14.5 did the trick. Please check what's yours and try that.

    So in the project\assembly.sbt , it was like-

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

    Then I changed it to-

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

    Hope it helps!

提交回复
热议问题