Starting my sbt build, I get the following unresolved dependencies .
[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] ::::::::::::::::::::::::::::::::::::::::::::::
My project structure is as follows:
parent | --> sbtApp1 --> playApp --> sbtApp2 --> project --> Build.scala --> plugins.sbt --> build.sbt
My parent / project / plugins.sbt has the following: addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.2.0")
I added the following line to parent / build.sbt, but I still get a compilation failure.
libraryDependencies += "play" % "play_2.10" % "2.1.0"
source share