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 dccd84a commit 9980bb9
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 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"
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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
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 9980bb9

Please sign in to comment.