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 e15d161 commit 59744d5
Show file tree
Hide file tree
Showing 5 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"
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@ val Http4sVersion = "1.0.0-M38"
val Http4sScalaXmlVersion = Http4sVersion + ".1"
val Specs2Version = "5.0.7"
val CatsEffectTestingSpecs2Version = "1.5.0"
val LogbackVersion = "1.4.11"
val JAnsiVersion = "2.4.0"
val LogbackVersion = "1.5.7"
val JAnsiVersion = "2.4.1"

lazy val root = (project in file("."))
.settings(
organization := "edu.luc.etl",
name := "primenumbers-http4s-scala",
version := "0.0.4-SNAPSHOT",
scalaVersion := "3.3.0",
scalaVersion := "3.3.3",
libraryDependencies ++= Seq(
"org.http4s" %% "http4s-blaze-server" % Http4sVersion,
"org.http4s" %% "http4s-blaze-client" % Http4sVersion,
Expand Down
1 change: 1 addition & 0 deletions project/assembly.sbt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "2.2.0")
5 changes: 2 additions & 3 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "2.1.1")
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 59744d5

Please sign in to comment.