dispalt/sbt-reactjs

Unresolved dependencies issue (solved)

ZeerDonker opened this issue · 0 comments

Hi,

This is fyi post, in case its handy for someone else.

Had the following issue.
[warn] :: org.webjars.npm#minimatch;[2,3),[3,4): not found

Note: Unresolved dependencies path:
[warn] org.webjars.npm:minimatch:[2,3),[3,4)
[warn] +- org.webjars.npm:glob:[5.0.15,6)
[warn] +- org.webjars.npm:commoner:[0.10.0,0.11)
[warn] +- org.webjars.npm:react-tools:0.13.3
[warn] +- com.github.ddispaltro:sbt-reactjs:0.6.8 (scalaVersion=2.10, sbtVersion=0.13) (/home/userName/projectName/project/plugins.sbt#L28-29)
[warn] +- default:projectName:projectVersion-SNAPSHOT (scalaVersion=2.10, sbtVersion=0.13)

One can solve it by adding the following line to the plugins.sbt

dependencyOverrides += "org.webjars.npm" % "minimatch" % "3.0.4"