Skip to content

Commit

Permalink
Bump up underlying modules
Browse files Browse the repository at this point in the history
  • Loading branch information
eed3si9n committed Nov 25, 2017
1 parent 5e7d4bc commit bc64515
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 8 deletions.
7 changes: 5 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,10 @@ def commonSettings: Seq[Setting[_]] = Seq(
crossScalaVersions := Seq(scala211, scala212),
publishArtifact in Test := false,
commands ++= Seq(publishBridgesAndTest, publishBridgesAndSet, crossTestBridges),
scalacOptions += "-YdisableFlatCpCaching"
scalacOptions ++= Seq(
"-YdisableFlatCpCaching",
"-target:jvm-1.8",
)
)

def relaxNon212: Seq[Setting[_]] = Seq(
Expand All @@ -44,7 +47,7 @@ def relaxNon212: Seq[Setting[_]] = Seq(
"-deprecation",
"-Ywarn-unused",
"-Ywarn-unused-import",
"-YdisableFlatCpCaching"
"-YdisableFlatCpCaching",
)
}
}
Expand Down
12 changes: 6 additions & 6 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ import sbt._, Keys._
import sbt.contraband.ContrabandPlugin.autoImport._

object Dependencies {
val scala210 = "2.10.6"
val scala211 = "2.11.11"
val scala212 = "2.12.3"
val scala210 = "2.10.7"
val scala211 = "2.11.12"
val scala212 = "2.12.4"
val scala213 = "2.13.0-M2"

private val ioVersion = "1.0.0"
private val utilVersion = "1.0.0"
private val lmVersion = "1.0.0"
private val ioVersion = "1.0.2"
private val utilVersion = "1.0.3"
private val lmVersion = "1.0.4"

private val sbtIO = "org.scala-sbt" %% "io" % ioVersion

Expand Down

0 comments on commit bc64515

Please sign in to comment.