Skip to content

Instantly share code, notes, and snippets.

@gkossakowski
Created November 26, 2011 20:26
Show Gist options
  • Save gkossakowski/1396257 to your computer and use it in GitHub Desktop.
Save gkossakowski/1396257 to your computer and use it in GitHub Desktop.
sbt tells you where the problematic dependency was defined
[warn] ::::::::::::::::::::::::::::::::::::::::::::::
[warn] :: UNRESOLVED DEPENDENCIES ::
[warn] ::::::::::::::::::::::::::::::::::::::::::::::
[warn] :: com.typesafe.sbtscalariform#sbt-scalariform;0.1.4: not found
[warn] ::::::::::::::::::::::::::::::::::::::::::::::
[warn]
[warn] Note: Some unresolved dependencies have extra attributes. Check that these dependencies exist with the requested attributes.
[warn] com.typesafe.sbtscalariform:sbt-scalariform:0.1.4 (sbtVersion=0.11.1, scalaVersion=2.9.1)
[warn]
[error] {file:/Users/grek/.sbt/plugins/}default-020a2a/*:update: sbt.ResolveException: unresolved dependency:
com.typesafe.sbtscalariform#sbt-scalariform;0.1.4: not found
Comment: notice file:/Users/grek/.sbt/plugins/ file being quoted in the last line.
This give you a hint where problematic dependency has been defined. In this case, it's a global sbt plugin.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment