Added support for TestNG 7.10.2
This commit is contained in:
parent
155052a861
commit
b1db44062a
4 changed files with 11 additions and 10 deletions
|
@ -34,5 +34,5 @@ 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, 10, 1)));
|
||||
scope(test).include(dependency("org.testng", "testng", version(7, 10, 2)));
|
||||
```
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
bld.downloadExtensionJavadoc=false
|
||||
bld.downloadExtensionSources=true
|
||||
bld.extensions=com.uwyn.rife2:bld-testng:0.9.7
|
||||
bld.extensions=com.uwyn.rife2:bld-testng:0.9.8
|
||||
bld.extension.jacoco=com.uwyn.rife2:bld-jacoco-report:0.9.5
|
||||
bld.repositories=MAVEN_LOCAL,MAVEN_CENTRAL,RIFE2_SNAPSHOTS,RIFE2_RELEASES
|
||||
bld.downloadLocation=
|
||||
|
|
|
@ -17,11 +17,11 @@ import static rife.bld.dependencies.Scope.test;
|
|||
|
||||
/**
|
||||
* Example build.
|
||||
*
|
||||
* <ul style="list-style-type:none">
|
||||
* <li>{@code ./bld compile test}</li>
|
||||
* <li>{@code ./bld compile jacoco}</li>
|
||||
* </ul>
|
||||
*
|
||||
* <pre>{@code
|
||||
* ./bld compile test
|
||||
* ./bld compile jacoco
|
||||
* }</pre>
|
||||
*/
|
||||
public class ExamplesBuild extends BaseProject {
|
||||
public ExamplesBuild() {
|
||||
|
@ -36,7 +36,7 @@ public class ExamplesBuild extends BaseProject {
|
|||
|
||||
repositories = List.of(MAVEN_CENTRAL);
|
||||
|
||||
scope(test).include(dependency("org.testng", "testng", version(7, 10, 1)));
|
||||
scope(test).include(dependency("org.testng", "testng", version(7, 10, 2)));
|
||||
}
|
||||
|
||||
public static void main(String[] args) {
|
||||
|
|
|
@ -34,9 +34,10 @@ public class TestNgOperationBuild extends Project {
|
|||
public TestNgOperationBuild() {
|
||||
pkg = "rife.bld.extension";
|
||||
name = "bld-testng";
|
||||
version = version(0, 9, 7);
|
||||
version = version(0, 9, 8);
|
||||
|
||||
javaRelease = 17;
|
||||
|
||||
downloadSources = true;
|
||||
autoDownloadPurge = true;
|
||||
repositories = List.of(MAVEN_CENTRAL, RIFE2_RELEASES);
|
||||
|
@ -47,7 +48,7 @@ public class TestNgOperationBuild extends Project {
|
|||
.include(dependency("com.uwyn.rife2", "bld", version(1, 9, 0)));
|
||||
|
||||
scope(test)
|
||||
.include(dependency("org.testng", "testng", version(7, 10, 1)))
|
||||
.include(dependency("org.testng", "testng", version(7, 10, 2)))
|
||||
.include(dependency("org.junit.jupiter", "junit-jupiter", version(5, 10, 2)))
|
||||
.include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1, 10, 2)))
|
||||
.include(dependency("org.assertj", "assertj-core", version(3, 25, 3)));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue