We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d6c1c7 commit fbe298fCopy full SHA for fbe298f
src/main/java/org/scm4j/releaser/cli/CLI.java
@@ -14,6 +14,7 @@
14
import org.scm4j.releaser.exceptions.cmdline.*;
15
16
import java.io.PrintStream;
17
+import java.util.concurrent.ForkJoinPool;
18
19
public class CLI {
20
public static final int EXIT_CODE_OK = 0;
@@ -90,6 +91,7 @@ protected IAction getTagAction(CommandLine cmd) {
90
91
public int exec(String[] args) {
92
try {
93
out.println("scm4j-releaser " + CLI.class.getPackage().getSpecificationVersion());
94
+ out.println("parallelism: " + ForkJoinPool.commonPool().getParallelism());
95
long startMS = System.currentTimeMillis();
96
CommandLine cmd = new CommandLine(args);
97
validateCommandLine(cmd);
0 commit comments