Skip to content

Commit

Permalink
drop sbt 0.13 cross build
Browse files Browse the repository at this point in the history
  • Loading branch information
xuwei-k committed Oct 19, 2024
1 parent cbd8d97 commit a523dda
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 19 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,6 @@ jobs:
strategy:
matrix:
include:
- { sbt: 0_13_9, java: 8 }
- { sbt: 0_13_16, java: 8 }
- { sbt: 1_0_0, java: 8 }
- { sbt: latest, java: 8 }
- { sbt: 1_0_0, java: 11 }
Expand Down
7 changes: 0 additions & 7 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -23,18 +23,11 @@ lazy val `sbt-1.x` = SbtAxis("1.x", "1.1.5")
lazy val `sbt-latest` = SbtAxis()
lazy val `sbt-1.0.0` = SbtAxis("1.0.0")

lazy val `sbt-0.13.x` = SbtAxis("0.13.x", "0.13.16")
lazy val `sbt-0.13.16` = SbtAxis("0.13.16")
lazy val `sbt-0.13.9` = SbtAxis("0.13.9")

lazy val `sbt-updates` = (projectMatrix in file("."))
.settings(libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.19" % "test")
.sbtPluginRow(`sbt-1.x`)
.sbtScriptedRow(`sbt-1.0.0`, `sbt-1.x`)
.sbtScriptedRow(`sbt-latest`, `sbt-1.x`)
.sbtPluginRow(`sbt-0.13.x`)
.sbtScriptedRow(`sbt-0.13.9`, `sbt-0.13.x`)
.sbtScriptedRow(`sbt-0.13.16`, `sbt-0.13.x`)

lazy val root = (project in file("."))
.withId("sbt-updates")
Expand Down
1 change: 0 additions & 1 deletion project/SbtAxis.scala
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ case class SbtAxis(fullVersion: Option[String], idSuffix: String, directorySuffi
extends VirtualAxis.WeakAxis {
val scalaVersion: String =
fullVersion.map(VersionNumber(_)) match {
case Some(VersionNumber(Seq(0, 13, _*), _, _)) => "2.10.7"
case Some(VersionNumber(Seq(1, _*), _, _)) | None => "2.12.10"
case _ => sys.error(s"Unsupported sbt version: $fullVersion")
}
Expand Down
9 changes: 0 additions & 9 deletions src/main/scala-2.10/com/timushev/sbt/updates/Compat.scala

This file was deleted.

0 comments on commit a523dda

Please sign in to comment.