Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<parent>
<groupId>org.apache.maven</groupId>
<artifactId>maven-parent</artifactId>
<version>44</version>
<version>47</version>
</parent>

<groupId>org.apache.maven.surefire</groupId>
Expand Down Expand Up @@ -107,6 +107,8 @@
<jvm.args.tests>${jvm9ArgsTests} -Xms32m -Xmx144m -XX:SoftRefLRUPolicyMSPerMB=50 -Djava.awt.headless=true -Djdk.net.URLClassPath.disableClassPathURLCheck=true</jvm.args.tests>
<project.build.outputTimestamp>2025-09-10T02:02:34Z</project.build.outputTimestamp>
<slf4jVersion>1.7.36</slf4jVersion>

<versions.junit5>5.12.2</versions.junit5>
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Version 5.13+ requires change eg in RunListenerAdapterTest so use older one without additional changes.

</properties>

<dependencyManagement>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,9 @@ Map<String, Object> getConvertedOptions(Map<String, String> options) throws Test
case THREADCOUNT_PROP:
val = convert(val, String.class);
break;
// for TestNG 6.9.7 or higher
// for TestNG 6.9.7 or higher
case "suitethreadpoolsize":
// for TestNG 5.10 or higher
// for TestNG 5.10 or higher
case "dataproviderthreadcount":
val = convert(val, Integer.class);
break;
Expand Down