sbt-crossproject 0.6.0
This release relieves users of sbt 1.x from the boilerplate lazy val fooJVM = foo.jvm
(and similar). It requires sbt 1.2.1 or later in the 1.x branch.
Breaking changes
- sbt 1.2.1 or later is required if you use sbt 1.x (as before, sbt 0.13.17+ is required if you use 0.13.x)
Improvements
When using sbt 1.x, it is no longer necessary to write the boilerplate
lazy val fooJVM = foo.jvm
lazy val fooJS = foo.js
lazy val fooNative = foo.native
after the definition of a
lazy val foo = crossProject(...)...