Skip to content
Open
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 build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Global / onChangedBuildSource := ReloadOnSourceChanges
enablePlugins(SbtTwirl)
enablePlugins(SbtPlugin)

val SCALA_3 = "3.7.4"
val SCALA_3 = "3.8.1"
val SCALA_2 = "2.12.21"
ThisBuild / crossScalaVersions := List(SCALA_3, SCALA_2)
Comment on lines +6 to 8
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

The SCALA_3 version has been updated, but SCALA_2 remains at 2.12.21. Consider whether this is intentional, and if not, update SCALA_2 to a compatible version. If it is intentional, please add a comment explaining why the Scala 2 version is not being updated.

If SCALA_2 is not updated, it may cause compatibility issues with the updated SCALA_3 library.

val SCALA_3 = "3.8.1"
val SCALA_2 = "2.12.21" // Consider updating this to a compatible version or add a comment explaining why it's not updated
ThisBuild / crossScalaVersions := List(SCALA_3, SCALA_2)


Expand Down
Loading