mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 13:02:08 +02:00

* pages/*, style-guide: update pages, fix Markdown (commit 1) * Update pages * style-guide.de: update page * Apply suggestions from code review Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> * Apply suggestions from code review Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> * pip3: remove search command * rpm: update path placeholder Co-authored-by: pixel <pixel+github@chrissx.de> * Update pages/linux/pkgfile.md Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> --------- Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> Co-authored-by: pixel <pixel+github@chrissx.de>
873 B
873 B
cs launch
Launch an application from the name directly from one or more Maven dependencies without the need of installing it. More information: https://get-coursier.io/docs/cli-launch.
- Launch a specific application with arguments:
cs launch {{application_name}} -- {{argument1 argument2 ...}}
- Launch a specific application version with arguments:
cs launch {{application_name}}:{{application_version}} -- {{argument1 argument2 ...}}
- Launch a specific version of an application specifying which is the main file:
cs launch {{group_id}}:{{artifact_id}}:{{artifact_version}} --main-class {{path/to/main_class_file}}
- Launch an application with specific java options and a jvm memory ones:
cs launch --java-opt {{-Doption_name1:option_value1 -Doption_name2:option_value2 ...}} --java-opt {{-Xjvm_option1 -Xjvm_option2 ...}} {{application_name}}