#Maven exec problem
17 messages · Page 1 of 1 (latest)
⌛ This post has been reserved for your question.
Hey @zenith jungle! Please use
/closeor theClose Postbutton above when you're finished. Please remember to follow the help guidelines. This post will be automatically closed after 300 minutes of inactivity.
TIP: Narrow down your issue to simple and precise questions to maximize the chance that others will reply in here.
exec.args will be passed to your app as a system property which you can access with System.getProperty("exec.args")
that's what -Dexec.args="--2thousands" will do
so it sounds like it's on you to make 2000 copies of your app
./run java
Runnable runnable = () -> System.out.println("done");
for (int i = 0; i < 10; i++) {
new Thread(runnable).start();
}
try {
Thread.sleep(500L);
} catch (Exception e) {}
Here is your java(15.0.2) output @sweet prawn
done
done
done
done
done
done
done
done
done
done
show cmd
.
im doing another side of the project i tell u when i come back to my problem