Skip to content

Commit

Permalink
updated Scala, library dependency, and sbt plugin versions
Browse files Browse the repository at this point in the history
Signed-off-by: Konstantin Läufer <[email protected]>
  • Loading branch information
klaeufer committed Aug 20, 2024
1 parent 0e8fde0 commit ee0133e
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/scala.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
java-version: '21'
- name: Run tests
run: sbt coverage test coverageReport
- name: Submit coverage report
Expand Down
2 changes: 1 addition & 1 deletion .gitpod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
tasks:
- init: |
echo "sdkman_auto_answer=true" >> $HOME/.sdkman/etc/config
sdk install java 17.0.8-tem
sdk install java 21.0.4-tem
sdk install sbt
sbt "Test / compile"
16 changes: 8 additions & 8 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,19 @@ version := "0.0.2"

name := "worddb-slick-scala"

scalaVersion := "2.13.8"
scalaVersion := "2.13.14"

scalacOptions ++= Seq("-deprecation", "-feature", "-unchecked", "-Xlint:_")

libraryDependencies ++= Seq(
"com.lihaoyi" %% "mainargs" % "0.2.3",
"com.lihaoyi" %% "os-lib" % "0.8.1",
"org.typelevel" %% "cats-core" % "2.10.0",
"com.typesafe.slick" %% "slick" % "3.3.3",
"org.xerial" % "sqlite-jdbc" % "3.39.2.0",
"com.lihaoyi" %% "mainargs" % "0.2.5",
"com.lihaoyi" %% "os-lib" % "0.10.4",
"org.typelevel" %% "cats-core" % "2.12.0",
"com.typesafe.slick" %% "slick" % "3.5.1",
"org.xerial" % "sqlite-jdbc" % "3.46.1.0",
"org.log4s" %% "log4s" % "1.10.0",
"org.slf4j" % "slf4j-simple" % "1.7.36",
"org.scalameta" %% "munit" % "0.7.29" % Test
"org.slf4j" % "slf4j-simple" % "2.0.16",
"org.scalameta" %% "munit" % "1.0.1" % Test
)

Test / parallelExecution := false
Expand Down
4 changes: 2 additions & 2 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
addSbtPlugin("com.github.sbt" % "sbt-native-packager" % "1.9.16")
addSbtPlugin("org.scoverage" %% "sbt-scoverage" % "2.0.8")
addSbtPlugin("com.github.sbt" % "sbt-native-packager" % "1.10.4")
addSbtPlugin("org.scoverage" %% "sbt-scoverage" % "2.1.0")

0 comments on commit ee0133e

Please sign in to comment.