Added support for TestNG 7.9.0

This commit is contained in:
Erik C. Thauvin 2023-12-28 17:25:52 -08:00
parent ef4a259a33
commit 47e23dc23c
4 changed files with 5 additions and 4 deletions

View file

@ -53,6 +53,6 @@ Don't forget to add a TestNG `test` dependency to your build file, as it is not
```java
repositories = List.of(MAVEN_CENTRAL);
scope(test).include(dependency("org.testng", "testng", version(7, 8, 0)));
scope(test).include(dependency("org.testng", "testng", version(7, 9, 0)));
```