Skip to content

Commit

Permalink
Switched version to 3.2.16.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
cheeseng committed Jul 26, 2023
1 parent e86ab83 commit 889e955
Show file tree
Hide file tree
Showing 5 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 @@ -8,7 +8,7 @@ To use it for ScalaTest 3.2.16 and JUnit 5.9:
SBT:

```
libraryDependencies += "org.scalatestplus" %% "junit-5-9" % "3.2.16.0-M7" % Test
libraryDependencies += "org.scalatestplus" %% "junit-5-9" % "3.2.16.0" % Test
```

Maven:
Expand All @@ -17,7 +17,7 @@ Maven:
<dependency>
<groupId>org.scalatestplus</groupId>
<artifactId>junit-5-9_2.13</artifactId>
<version>3.2.16.0-M7</version>
<version>3.2.16.0</version>
<scope>test</scope>
</dependency>
```
Expand All @@ -31,7 +31,7 @@ dependencies {
testImplementation "org.scalatest:scalatest_2.13:3.2.16"
testImplementation "org.junit.platform:junit-platform-launcher:1.9.1"
testRuntimeOnly "org.junit.platform:junit-platform-engine:1.9.1"
testRuntimeOnly "org.scalatestplus:junit-5-9_2.13:3.2.16.0-M7"
testRuntimeOnly "org.scalatestplus:junit-5-9_2.13:3.2.16.0"
}
test {
Expand All @@ -53,7 +53,7 @@ dependencies {
testImplementation("org.scalatest:scalatest_2.13:3.2.16")
testRuntimeOnly("org.junit.platform:junit-platform-engine:1.9.1")
testRuntimeOnly("org.junit.platform:junit-platform-launcher:1.9.1")
testRuntimeOnly("org.scalatestplus:junit-5-9_2.13:3.2.16.0-M7")
testRuntimeOnly("org.scalatestplus:junit-5-9_2.13:3.2.16.0")
}
tasks {
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ name := "junit-5.9"

organization := "org.scalatestplus"

version := "3.2.16.0-M7"
version := "3.2.16.0"

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

Expand Down
2 changes: 1 addition & 1 deletion examples/gradle-example/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ dependencies {
testImplementation "org.scalatest:scalatest_2.12:3.2.16"
testImplementation "org.junit.platform:junit-platform-launcher:1.9.1"
testRuntimeOnly "org.junit.platform:junit-platform-engine:1.9.1"
testRuntimeOnly "org.scalatestplus:junit-5-9_2.12:3.2.16.0-M7"
testRuntimeOnly "org.scalatestplus:junit-5-9_2.12:3.2.16.0"
}

test {
Expand Down
2 changes: 1 addition & 1 deletion examples/gradle-kotlin-dsl-example/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dependencies {
testImplementation("org.scalatest:scalatest_2.12:3.2.16")
testRuntimeOnly("org.junit.platform:junit-platform-engine:1.9.1")
testRuntimeOnly("org.junit.platform:junit-platform-launcher:1.9.1")
testRuntimeOnly("org.scalatestplus:junit-5-9_2.12:3.2.16.0-M7")
testRuntimeOnly("org.scalatestplus:junit-5-9_2.12:3.2.16.0")
}

tasks {
Expand Down
2 changes: 1 addition & 1 deletion examples/maven-example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
<dependency>
<groupId>org.scalatestplus</groupId>
<artifactId>junit-5-9_${scala.compat.version}</artifactId>
<version>${scalatest.version}.0-M7</version>
<version>${scalatest.version}.0</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down

0 comments on commit 889e955

Please sign in to comment.