Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

scalatest 3.2.17 #735

Merged
merged 1 commit into from
Oct 15, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,9 @@ object Dependencies {

val sslConfigVersion = "0.6.1"

val scalaTestVersion = "3.2.14"
val scalaTestBaseVersion = "3.2.10"
val scalaTestScalaCheckVersion = "1-16"
val scalaCheckVersion = "1.15.1"
val scalaTestVersion = "3.2.17"
val scalaTestScalaCheckVersion = "1-17"
val scalaCheckVersion = "1.17.0"

val Versions =
Seq(crossScalaVersions := allScalaVersions, scalaVersion := allScalaVersions.head,
Expand Down Expand Up @@ -152,13 +151,13 @@ object Dependencies {
"org.scalatestplus" %% "junit-4-13" % (scalaTestVersion + ".0") % Test
}
val scalatestTestNG = Def.setting {
"org.scalatestplus" %% "testng-6-7" % (scalaTestBaseVersion + ".0") % Test
"org.scalatestplus" %% "testng-7-5" % (scalaTestVersion + ".0") % Test
}
val scalatestScalaCheck = Def.setting {
"org.scalatestplus" %% s"scalacheck-$scalaTestScalaCheckVersion" % (scalaTestVersion + ".0") % Test
}
val scalatestMockito = Def.setting {
"org.scalatestplus" %% "mockito-3-4" % (scalaTestBaseVersion + ".0") % Test
"org.scalatestplus" %% "mockito-4-11" % (scalaTestVersion + ".0") % Test
}

val pojosr = "com.googlecode.pojosr" % "de.kalpatec.pojosr.framework" % "0.2.1" % Test
Expand Down
Loading