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 81d5aba commit cc5ac3e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 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"
8 changes: 4 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ name := "misc-scala"

version := "0.0.3"

scalaVersion := "3.3.0"
scalaVersion := "3.3.3"

scalacOptions += "@.scalacOptions.txt"

libraryDependencies ++= Seq(
"org.scala-lang.modules" %% "scala-parser-combinators" % "2.3.0",
"org.scala-lang.modules" %% "scala-parser-combinators" % "2.4.0",
"com.novocode" % "junit-interface" % "0.11" % Test,
"org.scalatest" %% "scalatest" % "3.2.16" % Test,
"org.scalacheck" %% "scalacheck" % "1.17.0" % Test
"org.scalatest" %% "scalatest" % "3.2.19" % Test,
"org.scalacheck" %% "scalacheck" % "1.18.0" % 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 cc5ac3e

Please sign in to comment.