Update cheatsheets

This commit is contained in:
ivuorinen
2024-02-21 11:19:49 +00:00
parent 4e88a1b42f
commit 3d653cc7e6
4803 changed files with 127002 additions and 0 deletions

25
cs-launch Normal file
View File

@@ -0,0 +1,25 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# cs launch
> Launch an application from the name directly from 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 JVM memory ones:
`cs launch --java-opt {{-Doption_name1:option_value1 -Doption_name2:option_value2 ...}} --java-opt {{-Xjvm_option1 -Xjvm_option2 ...}} {{application_name}}`