Skip to content

3.3.0.0-RC1 #27

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
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
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,21 +14,21 @@ If ScalaTest has saved you time, helped you ship better software, or become a ke

**Usage**

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

SBT:

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

Maven:

```
<dependency>
<groupId>org.scalatestplus</groupId>
<artifactId>testng-7-10_3</artifactId>
<version>3.2.19.0</version>
<artifactId>testng-7-11_3</artifactId>
<version>3.3.0.0-RC1</version>
<scope>test</scope>
</dependency>
```
Expand All @@ -39,4 +39,5 @@ Please use the following commands to publish to Sonatype:

```
$ sbt +publishSigned
$ sbt sonaUpload
```
19 changes: 8 additions & 11 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import java.io.PrintWriter
import scala.io.Source

name := "testng-7.10"
name := "testng-7.11"

organization := "org.scalatestplus"

version := "3.2.19.0"
version := "3.3.0.0"

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

Expand All @@ -26,15 +26,15 @@ developers := List(
)
)

scalaVersion := "2.13.13"
scalaVersion := "2.13.16"

crossScalaVersions := List("2.11.12", "2.12.19", "2.13.13", "3.3.3")
crossScalaVersions := List("2.11.12", "2.12.20", "2.13.16", "3.3.6")

libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest-core" % "3.2.19",
"org.testng" % "testng" % "7.10.2",
"org.scalatest" %% "scalatest-core" % "3.3.0-RC1",
"org.testng" % "testng" % "7.11.0",
"commons-io" % "commons-io" % "1.3.2" % "test",
"org.scalatest" %% "scalatest-funsuite" % "3.2.19" % "test"
"org.scalatest" %% "scalatest-funsuite" % "3.3.0-RC1" % "test"
)

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

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

publishMavenStyle := true

Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.5.8
sbt.version=1.11.4
Loading