Skip to content

sbt-crossproject 0.6.0

Compare
Choose a tag to compare
@sjrd sjrd released this 09 Aug 14:37

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(...)...