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

Update command to install jar into local repo quickly #8

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
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 \
saragluna marked this conversation as resolved.
Show resolved Hide resolved
-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