Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion project/ScalaVersions.scala
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
object ScalaVersions {
val scala2Version = "2.13.13"
val scala2Version = "2.13.14"
val scala3Version = "3.4.1"
@deprecated(
"Use Scala 2.13 or Scala 3. Don't use 2.12 unless it is a specific feature in 2.12."
Expand Down
2 changes: 1 addition & 1 deletion scala-graalvm/scala-graalvm-http-app/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ organization := "com.baeldung"

version := "1.0-SNAPSHOT"

scalaVersion := "2.13.13"
scalaVersion := "2.13.14"
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-actor" % "2.8.0",
"com.typesafe.akka" %% "akka-stream" % "2.8.0",
Expand Down
2 changes: 1 addition & 1 deletion scala-lagom/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ organization in ThisBuild := "com.baeldung"
version in ThisBuild := "1.0-SNAPSHOT"

// the Scala version that will be used for cross-compiled libraries
scalaVersion in ThisBuild := "2.13.13"
scalaVersion in ThisBuild := "2.13.14"

val macwire = "com.softwaremill.macwire" %% "macros" % "2.3.3" % "provided"
val scalaTest = "org.scalatest" %% "scalatest" % "3.1.1" % Test
Expand Down
2 changes: 1 addition & 1 deletion scala-sbt/intro-to-sbt/build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Dependencies._

ThisBuild / scalaVersion := "2.13.13"
ThisBuild / scalaVersion := "2.13.14"
ThisBuild / version := "0.1.0-SNAPSHOT"

lazy val printHello = taskKey[Unit]("prints hello")
Expand Down
4 changes: 2 additions & 2 deletions scala-sbt/wart-remover/build.sbt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
lazy val customWarts = (project in file("custom-warts")).settings(
scalaVersion := "2.13.13",
scalaVersion := "2.13.14",
name := "CustomWarts",
version := "1.0.0",
exportJars := true,
Expand All @@ -10,7 +10,7 @@ lazy val root = (project in file("."))
.dependsOn(customWarts)
.settings(
name := "wart-remover",
scalaVersion := "2.13.13",
scalaVersion := "2.13.14",
version := "1.0.0",
wartremoverWarnings ++= Seq(Wart.AsInstanceOf, Wart.Null),
wartremoverExcluded += baseDirectory.value / "src" / "main" / "scala" / "com" / "baeldung" / "scala" / "wartremover" / "Excluded.scala",
Expand Down
2 changes: 1 addition & 1 deletion scala-sbt/wart-remover/custom-warts/build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*lazy val root = (project in file(".")).settings(
name := "custom-warts",
scalaVersion := "2.13.13",
scalaVersion := "2.13.14",
organization := "com.baeldung",
version := "1.0.0-SNAPSHOT",
libraryDependencies ++= Seq(
Expand Down
2 changes: 1 addition & 1 deletion scalatra/build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
val ScalatraVersion = "2.8.4"

ThisBuild / scalaVersion := "2.13.13"
ThisBuild / scalaVersion := "2.13.14"
ThisBuild / organization := "baeldung"

name := "scalatratutorial"
Expand Down