Skip to content

Commit

Permalink
Bump Javac to 11 (close #183)
Browse files Browse the repository at this point in the history
  • Loading branch information
oguzhanunlu committed Mar 2, 2022
1 parent 47b806e commit ded53de
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion project/BuildSettings.scala
Expand Up @@ -26,10 +26,13 @@ import com.typesafe.sbt.SbtGit.GitKeys._

object BuildSettings {

lazy val javaCompilerOptions = Seq("-source", "11", "-target", "11")

// Basic settings for our app
lazy val buildSettings = Seq[Setting[_]](
organization := "com.snowplowanalytics",
scalaVersion := "2.12.15"
scalaVersion := "2.12.15",
javacOptions := javaCompilerOptions,
)

// Publish settings
Expand Down

0 comments on commit ded53de

Please sign in to comment.