File tree Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 11object ScalaVersions {
2- val scala2Version = " 2.13.16 "
2+ val scala2Version = " 2.13.17 "
33 val scala3Version = " 3.7.3"
44 @ deprecated(
55 " Use Scala 2.13 or Scala 3. Don't use 2.12 unless it is a specific feature in 2.12."
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ organization in ThisBuild := "com.baeldung"
22version in ThisBuild := " 1.0-SNAPSHOT"
33
44// the Scala version that will be used for cross-compiled libraries
5- scalaVersion in ThisBuild := " 2.13.16 "
5+ scalaVersion in ThisBuild := " 2.13.17 "
66
77val macwire = " com.softwaremill.macwire" %% " macros" % " 2.3.3" % " provided"
88val scalaTest = " org.scalatest" %% " scalatest" % " 3.1.1" % Test
Original file line number Diff line number Diff line change 11lazy val customWarts = (project in file(" custom-warts" )).settings(
2- scalaVersion := " 2.13.16 " ,
2+ scalaVersion := " 2.13.17 " ,
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.16 " ,
13+ scalaVersion := " 2.13.17 " ,
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" ,
Original file line number Diff line number Diff line change 11/* lazy val root = (project in file(".")).settings(
22 name := "custom-warts",
3- scalaVersion := "2.13.16 ",
3+ scalaVersion := "2.13.17 ",
44 organization := "com.baeldung",
55 version := "1.0.0-SNAPSHOT",
66 libraryDependencies ++= Seq(
Original file line number Diff line number Diff line change 11val ScalatraVersion = " 2.8.4"
22
3- ThisBuild / scalaVersion := " 2.13.16 "
3+ ThisBuild / scalaVersion := " 2.13.17 "
44ThisBuild / organization := " baeldung"
55
66name := " scalatratutorial"
You can’t perform that action at this time.
0 commit comments