Skip to content

Commit

Permalink
Update build.sbt
Browse files Browse the repository at this point in the history
  • Loading branch information
oleg-py authored Jun 19, 2020
1 parent 8794c02 commit 21aed70
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import xerial.sbt.Sonatype._

lazy val scala213 = "2.13.0"
lazy val scala212 = "2.12.8"
lazy val scala213 = "2.13.1"
lazy val scala212 = "2.12.11"
lazy val scala211 = "2.11.12"

lazy val supportedScalaVersions = List(scala211, scala212, scala213)
Expand All @@ -10,7 +10,7 @@ ThisBuild / organization := "com.olegpy"
ThisBuild / version := "0.3.1"
ThisBuild / licenses += ("MIT", url("http://opensource.org/licenses/MIT"))
ThisBuild / homepage := Some(url("http://github.com/oleg-py/better-monadic-for"))
ThisBuild / scalaVersion := scala212
ThisBuild / scalaVersion := Option(System.getenv("SCALA_VERSION")).filter(_.nonEmpty).getOrElse(scala213)

val testSettings = Seq(
libraryDependencies ++= Seq(
Expand Down Expand Up @@ -107,4 +107,4 @@ lazy val wartRemoverTests = (project in file("wartremover-tests"))
addCompilerPlugin("org.wartremover" %% "wartremover" % "2.4.2"),
scalacOptions += "-P:wartremover:traverser:org.wartremover.warts.NonUnitStatements"
)
.settings(testSettings)
.settings(testSettings)

0 comments on commit 21aed70

Please sign in to comment.