Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correct spelling and remove redundant "small" #142

Merged
merged 1 commit into from
Apr 12, 2020
Merged
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
6 changes: 3 additions & 3 deletions src/site/apt/usage.apt.vm
Original file line number Diff line number Diff line change
Expand Up @@ -85,17 +85,17 @@ mvn exec:exec -Dexec.executable="maven" [-Dexec.workingdir="/tmp"] -Dexec.args="

** Differences compared to plain command line

The goal goes to great length to try to mimic the way the VM works, but there are some small subttle differences.
The goal goes to great length to try to mimic the way the VM works, but there are some subtle differences.
Today all differences come from the way the goal deals with <<thread management>>.

*--------------------------------------+------------------------------------------+
| command line | Java Mojo |
*--------------------------------------+------------------------------------------+
| The VM exits as soon as the only | By default daemon threads are joined |
| remaining threads are daemon threads | and interrupted once all known non |
| | daemon threads have quitted. The join |
| | daemon threads have quit. The join |
| | timeout is customisable |
| | The user might wish to further cleanup |
| | The user might wish to further |
| | cleanup by stopping the unresponsive |
| | threads. |
| | The user can disable the full extra |
Expand Down