Skip to content

Commit 983d78b

Browse files
authored
Merge pull request #1332 from Baeldung/update/scala-compiler-2.13.14
Update scala-compiler, scala-library, ... from 2.13.13 to 2.13.14
2 parents 6ecefe7 + 2f48d8f commit 983d78b

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

project/ScalaVersions.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
object ScalaVersions {
2-
val scala2Version = "2.13.13"
2+
val scala2Version = "2.13.14"
33
val scala3Version = "3.4.1"
44
@deprecated(
55
"Use Scala 2.13 or Scala 3. Don't use 2.12 unless it is a specific feature in 2.12."

scala-graalvm/scala-graalvm-http-app/build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ organization := "com.baeldung"
33

44
version := "1.0-SNAPSHOT"
55

6-
scalaVersion := "2.13.13"
6+
scalaVersion := "2.13.14"
77
libraryDependencies ++= Seq(
88
"com.typesafe.akka" %% "akka-actor" % "2.8.0",
99
"com.typesafe.akka" %% "akka-stream" % "2.8.0",

scala-lagom/build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ organization in ThisBuild := "com.baeldung"
22
version in ThisBuild := "1.0-SNAPSHOT"
33

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

77
val macwire = "com.softwaremill.macwire" %% "macros" % "2.3.3" % "provided"
88
val scalaTest = "org.scalatest" %% "scalatest" % "3.1.1" % Test

scala-sbt/intro-to-sbt/build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import Dependencies._
22

3-
ThisBuild / scalaVersion := "2.13.13"
3+
ThisBuild / scalaVersion := "2.13.14"
44
ThisBuild / version := "0.1.0-SNAPSHOT"
55

66
lazy val printHello = taskKey[Unit]("prints hello")

scala-sbt/wart-remover/build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
lazy val customWarts = (project in file("custom-warts")).settings(
2-
scalaVersion := "2.13.13",
2+
scalaVersion := "2.13.14",
33
name := "CustomWarts",
44
version := "1.0.0",
55
exportJars := true,
@@ -10,7 +10,7 @@ lazy val root = (project in file("."))
1010
.dependsOn(customWarts)
1111
.settings(
1212
name := "wart-remover",
13-
scalaVersion := "2.13.13",
13+
scalaVersion := "2.13.14",
1414
version := "1.0.0",
1515
wartremoverWarnings ++= Seq(Wart.AsInstanceOf, Wart.Null),
1616
wartremoverExcluded += baseDirectory.value / "src" / "main" / "scala" / "com" / "baeldung" / "scala" / "wartremover" / "Excluded.scala",

scala-sbt/wart-remover/custom-warts/build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*lazy val root = (project in file(".")).settings(
22
name := "custom-warts",
3-
scalaVersion := "2.13.13",
3+
scalaVersion := "2.13.14",
44
organization := "com.baeldung",
55
version := "1.0.0-SNAPSHOT",
66
libraryDependencies ++= Seq(

scalatra/build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
val ScalatraVersion = "2.8.4"
22

3-
ThisBuild / scalaVersion := "2.13.13"
3+
ThisBuild / scalaVersion := "2.13.14"
44
ThisBuild / organization := "baeldung"
55

66
name := "scalatratutorial"

0 commit comments

Comments
 (0)