Skip to content

Commit

Permalink
Added --verbose to commands.
Browse files Browse the repository at this point in the history
  • Loading branch information
nevenc committed May 25, 2024
1 parent 12ef938 commit 12122b1
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,8 @@ pwd
az spring app deploy \
--name hello-world \
--source-path . \
--build-env BP_JVM_VERSION=17
--build-env BP_JVM_VERSION=17 \
--verbose
```

* Alternatively, you can deploy an application using JAR file, e.g.
Expand All @@ -249,7 +250,8 @@ az spring app deploy \
az spring app deploy \
--name hello-world \
--artifact-path target/demo-0.0.1-SNAPSHOT.jar \
--build-env BP_JVM_VERSION=17
--build-env BP_JVM_VERSION=17 \
--verbose
```
> Note: You could skip the `--build-env BP_JVM_VERSION=17` as that is now the default Java version for Microsoft Java Buildpack. You could use `--build-env BP_JVM_VERSION=21` for Java 21 applications.
Expand Down

0 comments on commit 12122b1

Please sign in to comment.