diff --git a/README.md b/README.md index 5186f89..26d65e4 100644 --- a/README.md +++ b/README.md @@ -14,12 +14,12 @@ 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: @@ -27,8 +27,8 @@ Maven: ``` org.scalatestplus - testng-7-10_3 - 3.2.19.0 + testng-7-11_3 + 3.3.0.0-RC1 test ``` @@ -39,4 +39,5 @@ Please use the following commands to publish to Sonatype: ``` $ sbt +publishSigned +$ sbt sonaUpload ``` diff --git a/build.sbt b/build.sbt index 24ec112..2732738 100644 --- a/build.sbt +++ b/build.sbt @@ -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")) @@ -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") @@ -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 diff --git a/project/build.properties b/project/build.properties index 88dc997..9651bb5 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.5.8 \ No newline at end of file +sbt.version=1.11.4 \ No newline at end of file