From ee0133ee05306aadbd40aa4ed393f98b6b3dba9b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Konstantin=20L=C3=A4ufer?= Date: Tue, 20 Aug 2024 18:36:55 -0500 Subject: [PATCH] updated Scala, library dependency, and sbt plugin versions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Konstantin Läufer --- .github/workflows/scala.yml | 2 +- .gitpod.yml | 2 +- build.sbt | 16 ++++++++-------- project/plugins.sbt | 4 ++-- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/scala.yml b/.github/workflows/scala.yml index 3324a62..dce327c 100644 --- a/.github/workflows/scala.yml +++ b/.github/workflows/scala.yml @@ -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 diff --git a/.gitpod.yml b/.gitpod.yml index 0a5e0fb..823f17d 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -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" diff --git a/build.sbt b/build.sbt index b70c72d..8355bc1 100644 --- a/build.sbt +++ b/build.sbt @@ -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 diff --git a/project/plugins.sbt b/project/plugins.sbt index dec2ec9..178486c 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -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")