Skip to content

Commit

Permalink
Merge pull request #3 from maxerothan/scala3
Browse files Browse the repository at this point in the history
add Scala 3
  • Loading branch information
dfakhritdinov authored Aug 14, 2024
2 parents dd2caa8 + dfad4c2 commit f1fa8a9
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@ jobs:
strategy:
matrix:
scala:
- 2.13.7
- 2.12.15
- 2.13.14
- 2.12.19
- 3.3.3

steps:
- uses: actions/checkout@v2
Expand Down
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ organizationHomepage := Some(url("https://evolution.com"))

scalaVersion := crossScalaVersions.value.head

crossScalaVersions := Seq("2.13.7", "2.12.15")
crossScalaVersions := Seq("2.13.14", "2.12.19", "3.3.3")

publishTo := Some(Resolver.evolutionReleases)

Expand All @@ -24,7 +24,7 @@ ThisBuild / versionScheme := Some("early-semver")
val slf4jVersion = "1.7.32"

libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest" % "3.2.10",
"org.scalatest" %% "scalatest" % "3.2.19",
"org.slf4j" % "slf4j-api" % slf4jVersion % Test,
"org.slf4j" % "jcl-over-slf4j" % slf4jVersion % Test,
"org.slf4j" % "log4j-over-slf4j" % slf4jVersion % Test,
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.5.6
sbt.version=1.10.1
6 changes: 3 additions & 3 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.9.2")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.0.12")

addSbtPlugin("org.scoverage" % "sbt-coveralls" % "1.3.1")
addSbtPlugin("org.scoverage" % "sbt-coveralls" % "1.3.11")

addSbtPlugin("com.github.sbt" % "sbt-release" % "1.1.0")
addSbtPlugin("com.github.sbt" % "sbt-release" % "1.4.0")

addSbtPlugin("com.evolution" % "sbt-scalac-opts-plugin" % "0.0.9")

Expand Down

0 comments on commit f1fa8a9

Please sign in to comment.