mirror of https://github.com/sbt/sbt.git
Merge pull request #2771 from dwijnand/dbuild
Workaround #1696 & bump to JDK 1.8
This commit is contained in:
commit
2aa58b43f4
|
|
@ -0,0 +1 @@
|
|||
1.8
|
||||
|
|
@ -9,7 +9,7 @@ cache:
|
|||
language: scala
|
||||
|
||||
jdk:
|
||||
- oraclejdk7
|
||||
- oraclejdk8
|
||||
|
||||
matrix:
|
||||
fast_finish: true
|
||||
|
|
|
|||
|
|
@ -38,7 +38,7 @@ def commonSettings: Seq[Setting[_]] = Seq[SettingsDefinition](
|
|||
componentID := None,
|
||||
resolvers += Resolver.typesafeIvyRepo("releases"),
|
||||
resolvers += Resolver.sonatypeRepo("snapshots"),
|
||||
resolvers += Resolver.bintrayRepo("sbt", "maven-releases"),
|
||||
resolvers += "bintray-sbt-maven-releases" at "https://dl.bintray.com/sbt/maven-releases/",
|
||||
concurrentRestrictions in Global += Util.testExclusiveRestriction,
|
||||
testOptions += Tests.Argument(TestFrameworks.ScalaCheck, "-w", "1"),
|
||||
javacOptions in compile ++= Seq("-target", "6", "-source", "6", "-Xlint", "-Xlint:-serial"),
|
||||
|
|
|
|||
|
|
@ -20,6 +20,6 @@ object Release {
|
|||
)
|
||||
|
||||
def javaVersionCheckSettings = Seq(
|
||||
javaVersionPrefix in javaVersionCheck := Some("1.7")
|
||||
javaVersionPrefix in javaVersionCheck := Some("1.8")
|
||||
)
|
||||
}
|
||||
|
|
|
|||
|
|
@ -6,5 +6,5 @@ lazy val a = project.settings(
|
|||
)
|
||||
|
||||
lazy val b = project.settings(
|
||||
scalaVersion := "2.10.1"
|
||||
scalaVersion := "2.10.6"
|
||||
)
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
scalaVersion := "2.10.1"
|
||||
scalaVersion := "2.10.6"
|
||||
|
||||
externalPom()
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
scalaVersion := "2.10.1"
|
||||
scalaVersion := "2.10.6"
|
||||
|
||||
libraryDependencies += "org.scalatest" %% "scalatest" % "2.0.M6-SNAP28"
|
||||
|
||||
testOptions in Test += Tests.Argument("-r", "custom.CustomReporter")
|
||||
testOptions in Test += Tests.Argument("-r", "custom.CustomReporter")
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
scalaVersion := "2.10.1"
|
||||
scalaVersion := "2.10.6"
|
||||
|
||||
libraryDependencies += "org.scalatest" %% "scalatest" % "2.0.M6-SNAP28"
|
||||
|
||||
testOptions in Test += Tests.Argument("-r", "custom.CustomReporter")
|
||||
testOptions in Test += Tests.Argument("-r", "custom.CustomReporter")
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
scalaVersion := "2.10.1"
|
||||
scalaVersion := "2.10.6"
|
||||
|
||||
libraryDependencies += "org.scalatest" %% "scalatest" % "2.0.M6-SNAP28"
|
||||
|
||||
testOptions in Test += Tests.Argument("-r", "custom.CustomReporter")
|
||||
|
||||
parallelExecution in Test := true
|
||||
parallelExecution in Test := true
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
scalaVersion := "2.10.1"
|
||||
scalaVersion := "2.10.6"
|
||||
|
||||
libraryDependencies += "org.scalatest" %% "scalatest" % "2.0.M6-SNAP28"
|
||||
|
||||
testOptions in Test += Tests.Argument("-r", "custom.CustomReporter")
|
||||
|
||||
parallelExecution in Test := false
|
||||
parallelExecution in Test := false
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ lazy val root = (project in file(".")).
|
|||
settings(inThisBuild(List(
|
||||
organization := "com.softwaremill",
|
||||
version := "0.0.1-SNAPSHOT",
|
||||
scalaVersion := "2.10.0"
|
||||
scalaVersion := "2.10.6"
|
||||
)),
|
||||
commonSettings
|
||||
)
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
scalaVersion := "2.10.1"
|
||||
scalaVersion := "2.10.6"
|
||||
|
||||
libraryDependencies += "org.scalatest" %% "scalatest" % "2.0.M6-SNAP28"
|
||||
|
||||
testOptions in Test += Tests.Argument("-r", "custom.CustomReporter")
|
||||
testOptions in Test += Tests.Argument("-r", "custom.CustomReporter")
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
scalaVersion := "2.10.1"
|
||||
scalaVersion := "2.10.6"
|
||||
|
||||
libraryDependencies += "org.scalatest" %% "scalatest" % "2.0.M6-SNAP28"
|
||||
|
||||
testOptions in Test += Tests.Argument("-r", "custom.CustomReporter")
|
||||
testOptions in Test += Tests.Argument("-r", "custom.CustomReporter")
|
||||
|
|
|
|||
Loading…
Reference in New Issue