Skip to content

Commit

Permalink
Updated to scalatest 3.2.15, scala 2.13.10 and scala-native 0.4.9.
Browse files Browse the repository at this point in the history
  • Loading branch information
cheeseng committed Jan 5, 2023
1 parent 7abc70b commit ac109df
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ ScalaTest + ScalaCheck provides integration support between ScalaTest and ScalaC

**Usage**

To use it for ScalaTest 3.2.14 and ScalaCheck 1.17.x:
To use it for ScalaTest 3.2.15 and ScalaCheck 1.17.x:

SBT:

```
libraryDependencies += "org.scalatestplus" %% "scalacheck-1-17" % "3.2.14.0" % "test"
libraryDependencies += "org.scalatestplus" %% "scalacheck-1-17" % "3.2.15.0" % "test"
```

Maven:
Expand All @@ -17,7 +17,7 @@ Maven:
<dependency>
<groupId>org.scalatestplus</groupId>
<artifactId>scalacheck-1-17_2.13</artifactId>
<version>3.2.14.0</version>
<version>3.2.15.0</version>
<scope>test</scope>
</dependency>
```
Expand Down
14 changes: 7 additions & 7 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import scala.xml.transform.{RewriteRule, RuleTransformer}
import java.io.PrintWriter
import scala.io.Source

val defaultScalaVersion = "2.13.8"
val defaultScalaVersion = "2.13.10"

scalaVersion := defaultScalaVersion

Expand Down Expand Up @@ -49,7 +49,7 @@ def docTask(docDir: File, resDir: File, projectName: String): File = {
val sharedSettings = Seq(
name := "scalacheck-1.17",
organization := "org.scalatestplus",
version := "3.2.14.0",
version := "3.2.15.0",
homepage := Some(url("https://github.com/scalatest/scalatestplus-scalacheck")),
licenses := List("Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0")),
developers := List(
Expand All @@ -68,11 +68,11 @@ val sharedSettings = Seq(
),
resolvers += "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots",
libraryDependencies ++= Seq(
"org.scalatest" %%% "scalatest-core" % "3.2.14",
"org.scalatest" %%% "scalatest-core" % "3.2.15",
"org.scalacheck" %%% "scalacheck" % "1.17.0",
"org.scalatest" %%% "scalatest-shouldmatchers" % "3.2.14" % "test",
"org.scalatest" %%% "scalatest-funspec" % "3.2.14" % "test",
"org.scalatest" %%% "scalatest-funsuite" % "3.2.14" % "test"
"org.scalatest" %%% "scalatest-shouldmatchers" % "3.2.15" % "test",
"org.scalatest" %%% "scalatest-funspec" % "3.2.15" % "test",
"org.scalatest" %%% "scalatest-funsuite" % "3.2.15" % "test"
),
// skip dependency elements with a scope
pomPostProcess := { (node: XmlNode) =>
Expand Down Expand Up @@ -140,7 +140,7 @@ lazy val scalatestPlusScalaCheck =
.enablePlugins(SbtOsgi)
.settings(osgiSettings: _*).settings(
scalaVersion := defaultScalaVersion,
crossScalaVersions := List("2.12.16", defaultScalaVersion, "3.1.3"),
crossScalaVersions := List("2.12.17", defaultScalaVersion, "3.1.3"),
OsgiKeys.exportPackage := Seq(
"org.scalatestplus.scalacheck.*"
),
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ val scalaJSVersion = Option(System.getenv("SCALAJS_VERSION")).getOrElse("1.8.0")

addSbtPlugin("org.scala-js" % "sbt-scalajs" % scalaJSVersion)

addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.4.5")
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.4.9")

addSbtPlugin("com.jsuereth" % "sbt-pgp" % "2.0.1")

Expand Down

0 comments on commit ac109df

Please sign in to comment.