Skip to content

Commit 3a3ce71

Browse files
committed
Add support for Scala 2.12, fixes #30
1 parent d34f0c7 commit 3a3ce71

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

build.sbt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
lazy val buildSettings = Seq(
22
organization := "com.github.benfradet",
33
version := "0.4.0-SNAPSHOT",
4-
scalaVersion := "2.11.12"
4+
scalaVersion := "2.12.7",
5+
crossScalaVersions := Seq("2.11.12", "2.12.7")
56
)
67

78
lazy val compilerOptions = Seq(

core/src/test/scala/ste/StructTypeSelectorSpec.scala

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,8 @@
2121

2222
package ste
2323

24-
import org.apache.spark.sql.types._
2524
import org.apache.spark.sql.SparkSession
2625
import org.scalatest.{ FlatSpec, Matchers }
27-
import ste._
2826
import StructTypeEncoder._
2927
import StructTypeSelector._
3028

0 commit comments

Comments
 (0)