scala - How to run Play with -feature? -
this how run play:
activator ~run
i'm getting following warnings:
[warn] there 27 feature warnings; re-run -feature details
but if run play command don't see warning details:
activator ~run -feature
how run play -feature?
add
scalacoptions ++= seq("-feature")
in build.sbt
file.
Comments
Post a Comment