mirror of
https://github.com/xerial/snappy-java.git
synced 2025-07-20 20:44:28 +02:00
Enforce target to JDK7
This commit is contained in:
parent
377d3577ca
commit
0c097c2e6a
@ -57,7 +57,9 @@ pomExtra := {
|
||||
|
||||
scalaVersion in ThisBuild := "2.12.11"
|
||||
|
||||
javacOptions in (Compile, compile) ++= Seq("-encoding", "UTF-8", "-Xlint:unchecked", "-Xlint:deprecation", "-source", "1.7", "-target", "1.7")
|
||||
// For building jars for JDK7
|
||||
javacOptions ++= Seq("-source", "1.7", "-target", "1.7")
|
||||
javacOptions in (Compile, compile) ++= Seq("-encoding", "UTF-8", "-Xlint:unchecked", "-Xlint:deprecation")
|
||||
|
||||
javacOptions in doc := {
|
||||
val opts = Seq("-source", "1.6")
|
||||
|
Loading…
x
Reference in New Issue
Block a user