Skip to content

Commit 9e1d083

Browse files
committed
Adjusted for 3.3.0.0-RC1 release.
1 parent 76e039d commit 9e1d083

File tree

3 files changed

+14
-16
lines changed

3 files changed

+14
-16
lines changed

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,21 +14,21 @@ If ScalaTest has saved you time, helped you ship better software, or become a ke
1414

1515
**Usage**
1616

17-
To use it for ScalaTest 3.2.19 and TestNG 7.10.x:
17+
To use it for ScalaTest 3.3.0-RC1 and TestNG 7.11.x:
1818

1919
SBT:
2020

2121
```
22-
libraryDependencies += "org.scalatestplus" %% "testng-7-10" % "3.2.19.0" % "test"
22+
libraryDependencies += "org.scalatestplus" %% "testng-7-11" % "3.3.0.0-RC1" % "test"
2323
```
2424

2525
Maven:
2626

2727
```
2828
<dependency>
2929
<groupId>org.scalatestplus</groupId>
30-
<artifactId>testng-7-10_3</artifactId>
31-
<version>3.2.19.0</version>
30+
<artifactId>testng-7-11_3</artifactId>
31+
<version>3.3.0.0-RC1</version>
3232
<scope>test</scope>
3333
</dependency>
3434
```
@@ -39,4 +39,5 @@ Please use the following commands to publish to Sonatype:
3939

4040
```
4141
$ sbt +publishSigned
42+
$ sbt sonaUpload
4243
```

build.sbt

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
import java.io.PrintWriter
22
import scala.io.Source
33

4-
name := "testng-7.10"
4+
name := "testng-7.11"
55

66
organization := "org.scalatestplus"
77

8-
version := "3.2.19.0"
8+
version := "3.3.0.0"
99

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

@@ -26,15 +26,15 @@ developers := List(
2626
)
2727
)
2828

29-
scalaVersion := "2.13.13"
29+
scalaVersion := "2.13.16"
3030

31-
crossScalaVersions := List("2.11.12", "2.12.19", "2.13.13", "3.3.3")
31+
crossScalaVersions := List("2.11.12", "2.12.20", "2.13.16", "3.3.6")
3232

3333
libraryDependencies ++= Seq(
34-
"org.scalatest" %% "scalatest-core" % "3.2.19",
35-
"org.testng" % "testng" % "7.10.2",
34+
"org.scalatest" %% "scalatest-core" % "3.3.0-RC1",
35+
"org.testng" % "testng" % "7.11.0",
3636
"commons-io" % "commons-io" % "1.3.2" % "test",
37-
"org.scalatest" %% "scalatest-funsuite" % "3.2.19" % "test"
37+
"org.scalatest" %% "scalatest-funsuite" % "3.3.0-RC1" % "test"
3838
)
3939

4040
Compile / packageDoc / publishArtifact := !scalaBinaryVersion.value.startsWith("3")
@@ -84,10 +84,7 @@ OsgiKeys.additionalHeaders:= Map(
8484
"Bundle-Vendor" -> "Artima, Inc."
8585
)
8686

87-
publishTo := {
88-
val nexus = "https://oss.sonatype.org/"
89-
Some("publish-releases" at nexus + "service/local/staging/deploy/maven2")
90-
}
87+
publishTo := localStaging.value
9188

9289
publishMavenStyle := true
9390

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.5.8
1+
sbt.version=1.11.4

0 commit comments

Comments
 (0)