Skip to content

Commit

Permalink
Cross build for Scala 2.13
Browse files Browse the repository at this point in the history
  • Loading branch information
takezoe committed Aug 14, 2022
1 parent 76e10e1 commit b9e1114
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions build.sbt
Expand Up @@ -4,16 +4,16 @@ organization := "com.github.takezoe"

version := "1.0.5"

scalaVersion := "2.12.1"
scalaVersion := "2.13.8"

crossScalaVersions := Seq("2.11.8", "2.12.1")
crossScalaVersions := Seq("2.11.12", "2.12.16", "2.13.8")

libraryDependencies ++= Seq(
"com.github.jsqlparser" % "jsqlparser" % "0.9.6",
"org.scalamacros" %% "resetallattrs" % "1.0.0",
"org.scala-lang" % "scala-reflect" % scalaVersion.value,
"org.scala-lang" % "scala-compiler" % scalaVersion.value % "provided",
"org.scalatest" %% "scalatest" % "3.0.1" % "test",
"org.scalatest" %% "scalatest" % "3.0.8" % "test",
"com.h2database" % "h2" % "1.4.192" % "test"
)

Expand All @@ -27,7 +27,7 @@ publishTo := {
Some("releases" at nexus + "service/local/staging/deploy/maven2")
}

scalacOptions := Seq("-deprecation")
scalacOptions := Seq("-deprecation", "-feature")

//unmanagedClasspath in Compile += baseDirectory.value / "src" / "main" / "resources"

Expand Down

0 comments on commit b9e1114

Please sign in to comment.