@@ -25,13 +25,13 @@ commands += Command.command("testStaging") { state =>
2525 prep ::: " mimaReportBinaryIssues" :: state
2626}
2727
28- val supportedScalaVersions = Seq ( " 2.12.13 " , " 2.13.5 " )
28+ val scala213 = " 2.13.5 "
2929
3030val root = project.in(file(" ." )).settings(
3131 name := " mima" ,
3232 crossScalaVersions := Nil ,
3333 mimaFailOnNoPrevious := false ,
34- skip in publish := true ,
34+ publish / skip := true ,
3535)
3636aggregateProjects(core, sbtplugin, functionalTests)
3737
@@ -40,7 +40,7 @@ val scalaCollectionCompat = "org.scala-lang.modules" %% "scala-collection-compat
4040
4141val core = project.settings(
4242 name := " mima-core" ,
43- crossScalaVersions := supportedScalaVersions ,
43+ crossScalaVersions += scala213 ,
4444 libraryDependencies += scalaCollectionCompat,
4545 libraryDependencies += munit % Test ,
4646 testFrameworks += new TestFramework (" munit.Framework" ),
@@ -72,7 +72,7 @@ val functionalTests = Project("functional-tests", file("functional-tests"))
7272 .dependsOn(core)
7373 .configs(IntegrationTest )
7474 .settings(
75- crossScalaVersions := supportedScalaVersions ,
75+ crossScalaVersions += scala213 ,
7676 libraryDependencies += " com.typesafe" % " config" % " 1.4.1" ,
7777 libraryDependencies += " io.get-coursier" %% " coursier" % " 2.0.16" ,
7878 libraryDependencies += munit,
@@ -86,5 +86,5 @@ val functionalTests = Project("functional-tests", file("functional-tests"))
8686 Test / mainClass := Some (" com.typesafe.tools.mima.lib.UnitTests" ),
8787 IntegrationTest / mainClass := Some (" com.typesafe.tools.mima.lib.IntegrationTests" ),
8888 mimaFailOnNoPrevious := false ,
89- skip in publish := true ,
89+ publish / skip := true ,
9090 )
0 commit comments