有没有办法使用命令行参数配置 JUnit 5 线程数?

Is there a way to configure JUnit 5 thread count using a command line argument?

目前,要设置线程数,我必须在 junit-platform.properties 文件中更新以下 属性:

junit.jupiter.execution.parallel.config.fixed.parallelism=5

有没有办法使用命令行参数配置线程数?

谢谢@Slaw。 以下命令非常有用:

mvn clean -Djunit.jupiter.execution.parallel.config.fixed.parallelism='10' test