運行我的sbt
構建,我收到以下未解決的依賴關係。未解決的依賴關係sbt
[warn] ::::::::::::::::::::::::::::::::::::::::::::::
[warn] :: UNRESOLVED DEPENDENCIES ::
[warn] ::::::::::::::::::::::::::::::::::::::::::::::
[warn] :: com.typesafe.play#sbt-link;2.2.0: not found
[warn] :: com.typesafe.play#play-exceptions;2.2.0: not found
[warn] :: com.typesafe.play#routes-compiler_2.10;2.2.0: not found
[warn] :: com.typesafe.play#templates-compiler_2.10;2.2.0: not found
[warn] :: com.typesafe.play#console_2.10;2.2.0: not found
[warn] :: net.contentobjects.jnotify#jnotify;0.94: not found
[warn] ::::::::::::::::::::::::::::::::::::::::::::::
我的項目結構如下:
parent
|
--> sbtApp1
--> playApp
--> sbtApp2
--> project
--> Build.scala
--> plugins.sbt
--> build.sbt
我的父母/項目/ plugins.sbt有以下幾點: addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.2.0")
我添加以下行父/ build.sbt ,但我仍然遇到編譯時失敗。
libraryDependencies += "play" % "play_2.10" % "2.1.0"
令人難過的是,我沒有像使用鏈接那樣手動安裝sbt,而是使用了激活器。不過,您的修復仍然有效,謝謝! – cib