mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-22 15:35:24 +02:00
Create mvn.md
This commit is contained in:
parent
30c8d98ee9
commit
99d109399a
1 changed files with 17 additions and 0 deletions
17
pages/common/mvn.md
Normal file
17
pages/common/mvn.md
Normal file
|
@ -0,0 +1,17 @@
|
|||
# mvn
|
||||
|
||||
> Runnign Apache Maven.
|
||||
|
||||
- Most common usage is to invoke a life cicle phase:
|
||||
|
||||
`mvn package`
|
||||
`mvn install`
|
||||
`mvn deploy`
|
||||
|
||||
- Invoke more that one phase with arguments:
|
||||
|
||||
`mvn clean -P a_profile package clean`
|
||||
|
||||
- Running an spring boot project with remote debug:
|
||||
|
||||
`mvn spring-boot:run -Drun.jvmArguments="-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5005"`
|
Loading…
Add table
Reference in a new issue