代码之家  ›  专栏  ›  技术社区  ›  user2827214

未解决的依赖性SBT,标量

  •  1
  • user2827214  · 技术社区  · 9 年前

    我收到此编译错误:

    [warn]  ::::::::::::::::::::::::::::::::::::::::::::::
    [warn]  ::          UNRESOLVED DEPENDENCIES         ::
    [warn]  ::::::::::::::::::::::::::::::::::::::::::::::
    [warn]  :: com.typesafe.sbt#sbt-scalariform;1.3.0: not found
    [warn]  ::::::::::::::::::::::::::::::::::::::::::::::
    [warn] 
    [warn]  Note: Some unresolved dependencies have extra attributes.  Check that these dependencies exist with the requested attributes.
    [warn]      com.typesafe.sbt:sbt-scalariform:1.3.0 (scalaVersion=2.11, sbtVersion=0.13)
    [warn] 
    

    在我的项目中,我有一个 建筑.sbt 文件:

       scalaVersion in ThisBuild := "2.11.6"
    

    我还有一个核心/构建。带有多个解析器、libraryDependencies和排除项的sbt文件。

    项目/插件.sbt :

       addSbtPlugin(...)
       resolvers += "Typesafe Public Repo" at "http://repo.typesafe.com/typesafe/releases"
       resolvers += "JBoss Repository" at "http://repository.jboss.org/nexus/content/groups/public//"
    

    ~/.sbt/0.13/global.sbt

       scalaVersion := "2.11.6"
    
    2 回复  |  直到 9 年前
        1
  •  5
  •   Dale Wijnand    9 年前

    您需要删除 scalaVersion := "2.11.6" 从…起 ~/.sbt/0.13/global.sbt .

    在sbt 0.13中,sbt及其插件生态系统目前使用Scala 2.10。

        2
  •  1
  •   raisercostin    6 年前

    sbt标量形式更改了groupId/组织

    推荐文章