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

@ -1,5 +1,5 @@
Compile and Run Tests with TestNG
```console
./run compile test
./bld compile test
```

View file

@ -23,7 +23,8 @@ public class ExamplesBuild extends BaseProject {
version = version(0, 1, 0);
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)));
}
public static void main(String[] args) {