Skip to content

Commit

Permalink
Change scala version
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian Herrera committed Jul 21, 2024
1 parent cbddd85 commit deae015
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions project/Settings.scala
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
import sbt.Keys._
import sbt.io.syntax._
import sbt.{Compile, Test, TestFrameworks, Tests, Configuration => _}
import sbt.{Compile, Configuration => _, Test, TestFrameworks, Tests}

object Settings {
val settings = Seq(
name := "spark-for-devs-course",
version := "0.1.0-SNAPSHOT",
scalaVersion := "2.12.12",
organization := "com.codely",
organizationName := "com.codely, Inc.",
name := "spark-for-devs-course",
version := "0.1.0-SNAPSHOT",
scalaVersion := "2.12.19",
organization := "com.codely",
organizationName := "com.codely, Inc.",
organizationHomepage := Some(url("https://com.codely")),
// Custom folders path (remove the `/scala` default subdirectory)
Compile / scalaSource := file(
Expand All @@ -27,9 +27,9 @@ object Settings {
Test / scalacOptions += "-Xcheckinit", // Check against early initialization only in tests because it's expensive
javaOptions += "-Duser.timezone=UTC",
// Test options
Test / parallelExecution := false,
Test / parallelExecution := false,
Test / testForkedParallel := false,
Test / fork := true,
Test / fork := true,
Test / testOptions ++= Seq(
Tests.Argument(
TestFrameworks.ScalaTest,
Expand Down

0 comments on commit deae015

Please sign in to comment.