Skip to content

0.9.1

Compare
Choose a tag to compare
@eed3si9n eed3si9n released this 24 Jun 08:02
· 11 commits to develop since this release
v0.9.1
8d27205

about sbt-projectmatrix

sbt-projectmatrix is a new implementation of cross building feature that encodes cross build as subprojects. The following will create core and core2_12. Unlike ++ style stateful cross building, these will build in parallel.

ThisBuild / organization := "com.example"
ThisBuild / scalaVersion := "2.13.3"
ThisBuild / version      := "0.1.0-SNAPSHOT"

lazy val core = (projectMatrix in file("core"))
  .settings(
    name := "core"
  )
  .jvmPlatform(scalaVersions = Seq("2.13.3", "2.12.12"))

In addition, cross building against Scala.JS, Scala Native, or arbitrary virtual axis is also supported.

update

  • Fixes configure function not being called on nativePlatform by @keynmol in #79

behind the scene

new contributors

Full Changelog: v0.9.0...v0.9.1