I was trying to use different builders to build the SparkSession and AmmoniteSparkSession requires repl.
This won't work, i think it is because repl is a compile time error.
val sparkSessionBuilder =
try {
repl
AmmoniteSparkSession.builder
} catch {
case e: Exception => SparkSession.builder
}