mirror of
https://github.com/bitcoin-s/bitcoin-s.git
synced 2024-11-19 09:52:09 +01:00
4ee0113fbd
* Bump scala 2.12 compiler to 2.12.12 * Bump travis scalac version
11 lines
264 B
Scala
11 lines
264 B
Scala
import scala.util.Properties
|
|
|
|
val scala2_12 = "2.12.12"
|
|
val scala2_13 = "2.13.2"
|
|
|
|
scalafmtOnCompile in ThisBuild := !Properties.envOrNone("CI").contains("true")
|
|
|
|
scalaVersion in ThisBuild := scala2_13
|
|
|
|
crossScalaVersions in ThisBuild := List(scala2_13, scala2_12)
|