Skip to content

Commit

Permalink
Updated to ScalaTest 3.2.19.
Browse files Browse the repository at this point in the history
  • Loading branch information
cheeseng committed Jun 25, 2024
1 parent b212ade commit deb8ac7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,21 @@ ScalaTest + ScalaCheck provides integration support between ScalaTest and ScalaC

**Usage**

To use it for ScalaTest 3.2.18 and ScalaCheck 1.18.x:
To use it for ScalaTest 3.2.19 and ScalaCheck 1.18.x:

SBT:

```
libraryDependencies += "org.scalatestplus" %% "scalacheck-1-18" % "3.2.18.0" % "test"
libraryDependencies += "org.scalatestplus" %% "scalacheck-1-18" % "3.2.19.0" % "test"
```

Maven:

```
<dependency>
<groupId>org.scalatestplus</groupId>
<artifactId>scalacheck-1-18_2.13</artifactId>
<version>3.2.18.0</version>
<artifactId>scalacheck-1-18_3</artifactId>
<version>3.2.19.0</version>
<scope>test</scope>
</dependency>
```
Expand Down
8 changes: 4 additions & 4 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.12"
val defaultScalaVersion = "2.13.13"

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.18",
organization := "org.scalatestplus",
version := "3.2.18.0",
version := "3.2.19.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,7 +68,7 @@ val sharedSettings = Seq(
),
resolvers += "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots",
libraryDependencies ++= Seq(
"org.scalatest" %%% "scalatest-core" % "3.2.18",
"org.scalatest" %%% "scalatest-core" % "3.2.19",
"org.scalacheck" %%% "scalacheck" % "1.18.0",
"org.scalatest" %%% "scalatest-shouldmatchers" % "3.2.18" % "test",
"org.scalatest" %%% "scalatest-funspec" % "3.2.18" % "test",
Expand Down Expand Up @@ -140,7 +140,7 @@ lazy val scalatestPlusScalaCheck =
.enablePlugins(SbtOsgi)
.settings(osgiSettings: _*).settings(
scalaVersion := defaultScalaVersion,
crossScalaVersions := List("2.12.17", defaultScalaVersion, "3.3.1"),
crossScalaVersions := List("2.12.19", defaultScalaVersion, "3.3.3"),
OsgiKeys.exportPackage := Seq(
"org.scalatestplus.scalacheck.*"
),
Expand Down

0 comments on commit deb8ac7

Please sign in to comment.