Skip to content

Commit d3151d5

Browse files
committed
Updated to use ScalaTest 3.2.18.
1 parent 184cd4a commit d3151d5

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed

README.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ ScalaTest + JUnit provides integration support between ScalaTest and JUnit 5.
33

44
**Usage**
55

6-
To use it for ScalaTest 3.2.17 and JUnit 5.10:
6+
To use it for ScalaTest 3.2.18 and JUnit 5.10:
77

88
SBT:
99

1010
```
11-
libraryDependencies += "org.scalatestplus" %% "junit-5-10" % "3.2.17.0" % Test
11+
libraryDependencies += "org.scalatestplus" %% "junit-5-10" % "3.2.18.0" % Test
1212
```
1313

1414
Maven:
@@ -17,7 +17,7 @@ Maven:
1717
<dependency>
1818
<groupId>org.scalatestplus</groupId>
1919
<artifactId>junit-5-10_2.13</artifactId>
20-
<version>3.2.17.0</version>
20+
<version>3.2.18.0</version>
2121
<scope>test</scope>
2222
</dependency>
2323
```
@@ -26,12 +26,12 @@ Gradle:
2626

2727
```
2828
dependencies {
29-
implementation "org.scala-lang:scala-library:2.13.11"
29+
implementation "org.scala-lang:scala-library:2.13.12"
3030
31-
testImplementation "org.scalatest:scalatest_2.13:3.2.17"
32-
testImplementation "org.junit.platform:junit-platform-launcher:1.10.0"
33-
testRuntimeOnly "org.junit.platform:junit-platform-engine:1.10.0"
34-
testRuntimeOnly "org.scalatestplus:junit-5-9_2.13:3.2.17.0"
31+
testImplementation "org.scalatest:scalatest_2.13:3.2.18"
32+
testImplementation "org.junit.platform:junit-platform-launcher:1.10.1"
33+
testRuntimeOnly "org.junit.platform:junit-platform-engine:1.10.1"
34+
testRuntimeOnly "org.scalatestplus:junit-5-10_2.13:3.2.18.0"
3535
}
3636
3737
test {
@@ -48,12 +48,12 @@ Gradle (Kotlin):
4848

4949
```
5050
dependencies {
51-
implementation("org.scala-lang:scala-library:2.13.11")
51+
implementation("org.scala-lang:scala-library:2.13.12")
5252
53-
testImplementation("org.scalatest:scalatest_2.13:3.2.17")
54-
testRuntimeOnly("org.junit.platform:junit-platform-engine:1.10.0")
55-
testRuntimeOnly("org.junit.platform:junit-platform-launcher:1.10.0")
56-
testRuntimeOnly("org.scalatestplus:junit-5-9_2.13:3.2.17.0")
53+
testImplementation("org.scalatest:scalatest_2.13:3.2.18")
54+
testRuntimeOnly("org.junit.platform:junit-platform-engine:1.10.1")
55+
testRuntimeOnly("org.junit.platform:junit-platform-launcher:1.10.1")
56+
testRuntimeOnly("org.scalatestplus:junit-5-10_2.13:3.2.18.0")
5757
}
5858
5959
tasks {

build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ name := "junit-5.10"
55

66
organization := "org.scalatestplus"
77

8-
version := "3.3.0.0-alpha.1"
8+
version := "3.2.18.0"
99

1010
homepage := Some(url("https://github.com/scalatest/scalatestplus-junit"))
1111

@@ -46,7 +46,7 @@ Compile / unmanagedSourceDirectories ++= {
4646
}
4747
}
4848

49-
val scalatestVersion = "3.3.0-alpha.1"
49+
val scalatestVersion = "3.2.18"
5050
val junitVersion = "5.10.1"
5151
val junitEngineVersion = "1.10.1"
5252

0 commit comments

Comments
 (0)