Skip to content
Open
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ import java.util.Properties
import java.io.FileInputStream

val buildScalaVersion = sys.props.get("scala.buildVersion").getOrElse("2.12.15")

crossScalaVersions := Seq(buildScalaVersion, "2.13.9")

val sparkVersion = "3.5.6"
val isInternalRepo = "true" equalsIgnoreCase System.getProperty("config.InternalRepo")
val publishSonatypeCentral = "true" equalsIgnoreCase System.getProperty("config.publishSonatypeCentral")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,6 @@ private[redshift] object TableName {
if (sb.nonEmpty) {
parts.append(sb.toString())
}
parts
parts.toSeq
}
}