Skip to content

Commit

Permalink
3.0.0-RC3
Browse files Browse the repository at this point in the history
  • Loading branch information
tpolecat committed May 5, 2021
1 parent e64ef0d commit 6ec9f93
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@ lazy val compileScalastyle = taskKey[Unit]("compileScalastyle")

val commonSettings = Seq(
scalaVersion in ThisBuild := "2.12.12",
crossScalaVersions := Seq("2.11.12", "2.12.12", "2.13.5", "3.0.0-RC1"),
crossScalaVersions := Seq("2.11.12", "2.12.12", "2.13.5", "3.0.0-RC3"),

parallelExecution in ThisBuild := false,
fork := true,

scalacOptions ++= {
if (isDotty.value) Seq(
if (isDotty.value) Seq(
"-unchecked",
"-deprecation",
"-language:_",
"-encoding", "UTF-8",
"-encoding", "UTF-8",
"-source:3.0-migration"
) else Seq(
"-unchecked",
Expand Down
8 changes: 4 additions & 4 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ object Dependencies {
private val testcontainersVersion = "1.15.2"
private val seleniumVersion = "2.53.1"
private val slf4jVersion = "1.7.25"
private val scalaTestVersion = "3.2.5"
private val scalaTestMockitoVersion = "3.2.5.0"
private val scalaTestVersion = "3.2.8"
private val scalaTestMockitoVersion = "3.2.8.0"
private val scalaTestSeleniumVersion_scala2 = "3.2.2.0"
private val scalaTestSeleniumVersion_scala3 = "3.2.5.0"
private val scalaTestSeleniumVersion_scala3 = "3.2.8.0"
private val junitVersion = "4.13.1"
private val munitVersion = "0.7.22"
private val munitVersion = "0.7.25"
private val mysqlConnectorVersion = "5.1.42"
private val neo4jConnectorVersion = "4.0.0"
private val oracleDriverVersion = "19.3.0.0"
Expand Down
4 changes: 4 additions & 0 deletions project/metals.sbt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
// DO NOT EDIT! This file is auto-generated.
// This file enables sbt-bloop to create bloop config files.

addSbtPlugin("ch.epfl.scala" % "sbt-bloop" % "1.4.8-19-4d9f966b")

0 comments on commit 6ec9f93

Please sign in to comment.