Skip to content

Commit

Permalink
Update command to install jar into local repo quickly (#8)
Browse files Browse the repository at this point in the history
* Update the command of install jars into local repository quickly.
* Break line for powershell command.
  • Loading branch information
rujche authored Apr 1, 2022
1 parent 922faea commit 0d04265
Showing 1 changed file with 25 additions and 11 deletions.
36 changes: 25 additions & 11 deletions sdk/spring/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,23 +19,37 @@ You can use the following command to install jars into your local repository qui

```shell
mvn clean install \
-f sdk/spring/ \
-Dcheckstyle.skip=true \
-Dcodesnippet.skip \
-Denforcer.skip \
-Djacoco.skip=true \
-Dmaven.javadoc.skip=true \
-Drevapi.skip=true \
-DskipTests \
-Dspotbugs.skip=true \
-Pdev \
-T 4 \
-ntp \
-o \
-Dcheckstyle.skip \
-Dcodesnippet.skip \
-Denforcer.skip \
-Djacoco.skip \
-Dmaven.javadoc.skip \
-Dmaven.test.skip \
-Drevapi.skip \
-Dspotbugs.skip
-f sdk/spring/pom.xml
```

If you are using PowerShell, please use the following command instead:
```shell
mvn clean install -f sdk/spring/ -Pdev -T 4 -o "-Dcheckstyle.skip" "-Dcodesnippet.skip" "-Denforcer.skip" "-Djacoco.skip" "-Dmaven.javadoc.skip" "-Dmaven.test.skip" "-Drevapi.skip" "-Dspotbugs.skip"
```powershell
mvn clean install `
"-Dcheckstyle.skip" `
"-Dcodesnippet.skip" `
"-Denforcer.skip" `
"-Djacoco.skip" `
"-Dmaven.javadoc.skip" `
"-Drevapi.skip" `
"-DskipTests" `
"-Dspotbugs.skip" `
-Pdev `
-T 4 `
-ntp `
-o `
-f sdk/spring/pom.xml
```


Expand Down

0 comments on commit 0d04265

Please sign in to comment.