Added support for TestNG 7.9.0
This commit is contained in:
parent
ef4a259a33
commit
47e23dc23c
4 changed files with 5 additions and 4 deletions
|
@ -53,6 +53,6 @@ Don't forget to add a TestNG `test` dependency to your build file, as it is not
|
||||||
|
|
||||||
```java
|
```java
|
||||||
repositories = List.of(MAVEN_CENTRAL);
|
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)));
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
Compile and Run Tests with TestNG
|
Compile and Run Tests with TestNG
|
||||||
|
|
||||||
```console
|
```console
|
||||||
./run compile test
|
./bld compile test
|
||||||
```
|
```
|
||||||
|
|
|
@ -23,7 +23,8 @@ public class ExamplesBuild extends BaseProject {
|
||||||
version = version(0, 1, 0);
|
version = version(0, 1, 0);
|
||||||
|
|
||||||
repositories = List.of(MAVEN_CENTRAL);
|
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) {
|
public static void main(String[] args) {
|
||||||
|
|
|
@ -47,7 +47,7 @@ public class TestNgOperationBuild extends Project {
|
||||||
.include(dependency("com.uwyn.rife2", "bld", version(1, 7, 5)));
|
.include(dependency("com.uwyn.rife2", "bld", version(1, 7, 5)));
|
||||||
|
|
||||||
scope(test)
|
scope(test)
|
||||||
.include(dependency("org.testng", "testng", version(7, 8, 0)))
|
.include(dependency("org.testng", "testng", version(7, 9, 0)))
|
||||||
.include(dependency("org.junit.jupiter", "junit-jupiter", version(5, 10, 1)))
|
.include(dependency("org.junit.jupiter", "junit-jupiter", version(5, 10, 1)))
|
||||||
.include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1, 10, 1)))
|
.include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1, 10, 1)))
|
||||||
.include(dependency("org.assertj", "assertj-core", version(3, 24, 2)));
|
.include(dependency("org.assertj", "assertj-core", version(3, 24, 2)));
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue