Skip to content

Commit adfc2a1

Browse files
author
Devon Stewart
committed
Starting scalac patch infrastructure
1 parent 148db8c commit adfc2a1

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

build.sbt

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,15 @@ import sbtcrossproject.CrossType
77
val Org = "org.scoverage"
88
val ScalatestVersion = "3.1.1"
99

10+
val bin212 = Seq("2.12.13", "2.12.12", "2.12.11", "2.12.10")
11+
val bin213 = Seq("2.13.4", "2.13.3", "2.13.2", "2.13.1", "2.13.0")
12+
1013
val appSettings = Seq(
1114
organization := Org,
12-
scalaVersion := "2.12.10",
13-
crossScalaVersions := Seq("2.12.10", "2.13.4"),
15+
scalaVersion := "2.12.13",
16+
crossScalaVersions := bin212 ++ bin213,
17+
crossVersion := CrossVersion.full,
18+
crossTarget := target.value / s"scala-${scalaVersion.value}",
1419
fork in Test := false,
1520
publishMavenStyle := true,
1621
publishArtifact in Test := false,

0 commit comments

Comments
 (0)