Skip to content

Commit

Permalink
Unfortunately, this library still does not actually support Scala 3
Browse files Browse the repository at this point in the history
  • Loading branch information
rtyley committed Nov 16, 2023
1 parent 6e60c2c commit 07280ba
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import ReleaseTransformations._
import Dependencies._

lazy val baseSettings = Seq(
scalaVersion := "2.13.10",
crossScalaVersions := Seq(scalaVersion.value, "2.13.12"),
scalaVersion := "2.13.12",
// crossScalaVersions := Seq(scalaVersion.value, "3.3.1"),
organization := "com.madgag.scala-git",
scmInfo := Some(ScmInfo(
url("https://github.com/rtyley/scala-git"),
Expand All @@ -19,7 +19,7 @@ lazy val `scala-git` = project.settings(baseSettings: _*).dependsOn(`scala-git-t
lazy val `scala-git-test` = project.in(file("scala-git-test")).settings(baseSettings: _*)

ThisBuild / Test / testOptions +=
Tests.Argument(TestFrameworks.ScalaTest, "-u", s"test-results/scala-${scalaVersion.value}")
Tests.Argument(TestFrameworks.ScalaTest, "-u", s"test-results/scala-${scalaVersion.value}", "-o")


lazy val root = (project in file(".")).aggregate(`scala-git`, `scala-git-test`).
Expand Down

0 comments on commit 07280ba

Please sign in to comment.