mirror of https://github.com/sbt/sbt.git
Drop Scala 2.10, add openjdk7
This commit is contained in:
parent
931b7d7af5
commit
9706577c67
|
|
@ -1,7 +1,7 @@
|
||||||
language: scala
|
language: scala
|
||||||
scala:
|
scala:
|
||||||
- 2.10.6
|
- 2.11.8
|
||||||
- 2.11.7
|
|
||||||
jdk:
|
jdk:
|
||||||
- oraclejdk8
|
- openjdk7
|
||||||
- oraclejdk7
|
- oraclejdk7
|
||||||
|
- oraclejdk8
|
||||||
|
|
|
||||||
|
|
@ -14,7 +14,7 @@ def commonSettings: Seq[Setting[_]] = Seq(
|
||||||
testOptions += Tests.Argument(TestFrameworks.ScalaCheck, "-w", "1"),
|
testOptions += Tests.Argument(TestFrameworks.ScalaCheck, "-w", "1"),
|
||||||
javacOptions in compile ++= Seq("-target", "6", "-source", "6", "-Xlint", "-Xlint:-serial"),
|
javacOptions in compile ++= Seq("-target", "6", "-source", "6", "-Xlint", "-Xlint:-serial"),
|
||||||
incOptions := incOptions.value.withNameHashing(true),
|
incOptions := incOptions.value.withNameHashing(true),
|
||||||
crossScalaVersions := Seq(scala210, scala211),
|
crossScalaVersions := Seq(scala211),
|
||||||
resolvers += Resolver.sonatypeRepo("public"),
|
resolvers += Resolver.sonatypeRepo("public"),
|
||||||
scalacOptions += "-Ywarn-unused",
|
scalacOptions += "-Ywarn-unused",
|
||||||
scalacOptions += "-Ywarn-unused-import",
|
scalacOptions += "-Ywarn-unused-import",
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,6 @@ import sbt._
|
||||||
import Keys._
|
import Keys._
|
||||||
|
|
||||||
object Dependencies {
|
object Dependencies {
|
||||||
lazy val scala210 = "2.10.6"
|
|
||||||
lazy val scala211 = "2.11.8"
|
lazy val scala211 = "2.11.8"
|
||||||
|
|
||||||
val ioVersion = "1.0.0-M6"
|
val ioVersion = "1.0.0-M6"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue