diff --git a/build.sbt b/build.sbt index 9ce3fdd..9e19b1d 100644 --- a/build.sbt +++ b/build.sbt @@ -2,7 +2,7 @@ name := "easymock-3.2" organization := "org.scalatestplus" -version := "3.2.2.0" +version := "3.2.3.0" homepage := Some(url("https://github.com/scalatest/scalatestplus-easymock")) @@ -23,16 +23,18 @@ developers := List( ) ) -crossScalaVersions := List("2.10.7", "2.11.12", "2.12.12", "2.13.3", "0.27.0-RC1") +scalaVersion := "2.13.3" + +crossScalaVersions := List("2.10.7", "2.11.12", "2.12.12", "2.13.3", "3.0.0-M1") resolvers += "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots" libraryDependencies ++= Seq( "org.easymock" % "easymockclassextension" % "3.2", - "org.scalatest" %% "scalatest-core" % "3.2.2", - "org.scalatest" %% "scalatest-funsuite" % "3.2.2" % "test", - "org.scalatest" %% "scalatest-flatspec" % "3.2.2" % "test", - "org.scalatest" %% "scalatest-shouldmatchers" % "3.2.2" % "test" + "org.scalatest" %% "scalatest-core" % "3.2.3", + "org.scalatest" %% "scalatest-funsuite" % "3.2.3" % "test", + "org.scalatest" %% "scalatest-flatspec" % "3.2.3" % "test", + "org.scalatest" %% "scalatest-shouldmatchers" % "3.2.3" % "test" ) Test / scalacOptions ++= (if (isDotty.value) Seq("-language:implicitConversions") else Nil) @@ -98,4 +100,7 @@ pomExtra := ( credentials += Credentials(Path.userHome / ".ivy2" / ".credentials") +// Temporary disable publishing of doc in dotty, can't get it to build. +publishArtifact in (Compile, packageDoc) := !scalaBinaryVersion.value.startsWith("3.") + scalacOptions in (Compile, doc) := Seq("-doc-title", s"ScalaTest + EasyMock ${version.value}") \ No newline at end of file diff --git a/project/plugins.sbt b/project/plugins.sbt index 8fc2ce7..69fe964 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -2,4 +2,4 @@ addSbtPlugin("com.jsuereth" % "sbt-pgp" % "2.0.1") addSbtPlugin("com.typesafe.sbt" % "sbt-osgi" % "0.9.6") -addSbtPlugin("ch.epfl.lamp" % "sbt-dotty" % "0.4.1") +addSbtPlugin("ch.epfl.lamp" % "sbt-dotty" % "0.4.5")