We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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"
The text was updated successfully, but these errors were encountered:
Override minmatch version
26f01d9
Due to an issue with sbt-reactjs minimatch version needs overriding for a successful build: dispalt/sbt-reactjs#34
No branches or pull requests
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"
The text was updated successfully, but these errors were encountered: