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 Feb 28, 2022
1 parent ebfa9ea commit d9639d4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion project/BuildSettings.scala
Original file line number Diff line number Diff line change
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 d9639d4

Please sign in to comment.