Skip to content

Commit

Permalink
Scala 3.x
Browse files Browse the repository at this point in the history
  • Loading branch information
sullis committed Jul 29, 2024
1 parent d56697e commit 7822d8e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '8', '17', '21' ]
scala: [ '2.13.14', '3.4.2' ]
java: [ '21' ]
scala: [ '3.4.2' ]
steps:
- uses: actions/checkout@v4
- name: Set up JDK
Expand Down
9 changes: 4 additions & 5 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ name := "scala-hello-world-app"

organization := "io.github.sullis"

scalaVersion := "2.13.14"
scalaVersion := "3.4.2"

crossScalaVersions := Seq(scalaVersion.value, "3.4.2")
crossScalaVersions := Seq(scalaVersion.value)

scalacOptions += "-target:jvm-1.8"

Expand All @@ -26,12 +26,11 @@ javacOptions ++= Seq("-source", "1.8", "-target", "1.8")
val logbackVersion = "1.5.6"

libraryDependencies ++= Seq(
"org.gfccollective" %% "gfc-logging" % "1.0.0",
"com.typesafe.scala-logging" %% "scala-logging" % "3.9.5",
"ch.qos.logback" % "logback-classic" % logbackVersion,
"ch.qos.logback" % "logback-core" % logbackVersion,
"com.google.guava" % "guava" % "32.1.2-jre",
"org.mockito" % "mockito-core" % "4.8.0" % Test,
"org.mockito" %% "mockito-scala-scalatest" % "1.16.37" % Test,
"org.mockito" %% "mockito-scala-scalatest" % "1.17.37" % Test,
"org.scalatest" %% "scalatest" % "3.2.19" % Test
)

Expand Down

0 comments on commit 7822d8e

Please sign in to comment.