Tell SBT not to check a SNAPSHOT version for changes
sbt, scala
Solution
Sbt internally marks all dependencies, which are `-SNAPSHOT` as changing. You can check the `changing()` documentation.
I don't think you can change this easily as this seem to be coded in the sources. I think you could set `offline` to `true`, which should hold the update process.
You can do it in the `build.sbt` or just from console via `set offline := true`.
Problem
This is similar to Re-download a SNAPSHOT version of a dependency using SBT, but I would like to achieve the opposite - I would like to tell SBT it does not have to check SNAPSHOT version for changes. How can I do that? Motivation is when using jME3 via SBT, jME3 does not follow usual conventions and each SNAPSHOT version already gets the version stamp in its name. As there are many components of jME3, checking for each of them for changes seems to slow down the build.