From 9980bb9883268734c65ca37f5b70ec8688abdef4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Konstantin=20L=C3=A4ufer?= Date: Tue, 20 Aug 2024 17:28:37 -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 | 4 ++-- project/plugins.sbt | 4 ++-- 4 files changed, 6 insertions(+), 6 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 0e6b9d6..02b5eac 100644 --- a/build.sbt +++ b/build.sbt @@ -2,8 +2,8 @@ name := "cs2-listperformance-scala" version := "0.2" -scalaVersion := "3.3.0" +scalaVersion := "3.3.3" scalacOptions += "@.scalacOptions.txt" -libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.16" % Test +libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.19" % Test 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")