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

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

    It is not resolving for Scala - 2.12.

    Add the following line in - project/plugins.sbt -

    addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.14.5")
    resolvers += Resolver.url("bintray-sbt-plugins", url("http://dl.bintray.com/sbt/sbt-plugin-releases"))(Resolver.ivyStylePatterns)
    

    To find the proper path, try the following -

    https://dl.bintray.com/sbt/sbt-plugin-releases/com.eed3si9n/sbt-assembly/scala_/
    

    So, using version 2.12, the resolvable path can be found as below -

    https://dl.bintray.com/sbt/sbt-plugin-releases/com.eed3si9n/sbt-assembly/scala_2.12/sbt_1.0/0.14.5/ivys/
    

提交回复
热议问题