Skip to content

Commit

Permalink
scala 2.12.7
Browse files Browse the repository at this point in the history
  • Loading branch information
bjaglin committed Sep 15, 2022
1 parent 9ab5ecd commit f68b2c2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import scala.util.Try

object Dependencies {
val scala211 = "2.11.12"
val scala212 = "2.12.16"
val scala212 = "2.12.17"
val scala213 = "2.13.8"
val scala3 = "3.1.3"

Expand Down
6 changes: 4 additions & 2 deletions project/ScalafixBuild.scala
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ object ScalafixBuild extends AutoPlugin with GhpagesKeys {
mimaReportBinaryIssues := {},
mimaPreviousArtifacts := Set.empty,
publish / skip := true,
libraryDependencySchemes += "org.scala-lang.modules" %% "scala-xml" % "always"
)
lazy val supportedScalaVersions = List(scala213, scala211, scala212)
lazy val publishLocalTransitive =
Expand Down Expand Up @@ -182,6 +181,7 @@ object ScalafixBuild extends AutoPlugin with GhpagesKeys {
)

private val PreviousScalaVersion: Map[String, String] = Map(
"2.12.17" -> "2.12.16"
)

override def buildSettings: Seq[Setting[_]] = List(
Expand All @@ -193,7 +193,9 @@ object ScalafixBuild extends AutoPlugin with GhpagesKeys {
// coursier-versions always return false for the *.*.*.*-r pattern jgit uses
libraryDependencySchemes += Dependencies.jgit.withRevision("always"),
// silence warning for 2.7.0 -> 3.0.0
libraryDependencySchemes += "com.lihaoyi" %% "sourcecode" % "always"
libraryDependencySchemes += "com.lihaoyi" %% "sourcecode" % "always",
// https://github.com/scala/bug/issues/12632
libraryDependencySchemes += "org.scala-lang.modules" %% "scala-xml" % "always"
)

override def projectSettings: Seq[Def.Setting[_]] = List(
Expand Down

0 comments on commit f68b2c2

Please sign in to comment.