unresolved dependency: com.typesafe.play#play-slick_2.10;0.6.0.1: not found

后端 未结 3 415
滥情空心
滥情空心 2021-01-20 18:59

I am getting unresolved dependencies errors when trying to use slick or play-slick with Play Framework 2.2.2, sbt 0.13.0 and Scala 2.10.3 on Mac OS X Mavericks.

<         


        
3条回答
  •  执笔经年
    2021-01-20 19:21

    Very hard to tell if this really was what fixed the problem but it is now working for me.

    cd ~
    brew uninstall sbt
    brew uninstall play
    mv .sbt .sbtold
    mv .ivy2 .ivy2old
    brew install sbt
    brew install play
    sbt
    play 
    
    sbt clean
    

    I think that my sbt or ivy repositories had become corrupted and this resulted in them being rebuilt.

提交回复
热议问题