Skip to content

Commit 12122b1

Browse files
committed
Added --verbose to commands.
1 parent 12ef938 commit 12122b1

File tree

1 file changed

+4
-2
lines changed
  • azure-spring-apps-enterprise/workshops/azure-spring-apps-enterprise/day/04-hello-world-application

1 file changed

+4
-2
lines changed

azure-spring-apps-enterprise/workshops/azure-spring-apps-enterprise/day/04-hello-world-application/README.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,8 @@ pwd
240240
az spring app deploy \
241241
--name hello-world \
242242
--source-path . \
243-
--build-env BP_JVM_VERSION=17
243+
--build-env BP_JVM_VERSION=17 \
244+
--verbose
244245
```
245246

246247
* Alternatively, you can deploy an application using JAR file, e.g.
@@ -249,7 +250,8 @@ az spring app deploy \
249250
az spring app deploy \
250251
--name hello-world \
251252
--artifact-path target/demo-0.0.1-SNAPSHOT.jar \
252-
--build-env BP_JVM_VERSION=17
253+
--build-env BP_JVM_VERSION=17 \
254+
--verbose
253255
```
254256
> 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.
255257

0 commit comments

Comments
 (0)