giter8
giter8 copied to clipboard
Find the latest scala version
Similar to http://www.foundweekends.org/giter8/template.html#Maven+properties, it would be cool if we could automatically find the latest Scala version in a tree, e.g. scala(2.12) (currently) producing 2.12.7. Or is there some way to achieve this already?
this works for me
default.properties
scala_version = maven(org.scala-lang, scala-library, stable)
build.sbt
scalaVersion := "$scala_version$"
Also
scala_version = maven(org.scala-lang, scala-library, stable)
works for us since many years.
I think this can be closed.
lol I've been using that for ages as well, completely forgot about (closing) this issue ;)