Skip to content

Commit 4ad48da

Browse files
authored
Replace jar-path with artifact-path
Since `--jar-path` option is deprecated, we need to update the flag to `--artifact-path` to reflect the polyglot evolution of ASA
1 parent 3bad5de commit 4ad48da

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/spring-apps/quickstart-deploy-apps.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -228,11 +228,11 @@ Use the following steps to create and deploys apps on Azure Spring Apps using th
228228
```azurecli
229229
az spring app deploy \
230230
--name api-gateway \
231-
--jar-path spring-petclinic-api-gateway/target/spring-petclinic-api-gateway-2.5.1.jar \
231+
--artifact-path spring-petclinic-api-gateway/target/spring-petclinic-api-gateway-2.5.1.jar \
232232
--jvm-options="-Xms2048m -Xmx2048m"
233233
az spring app deploy \
234234
--name customers-service \
235-
--jar-path spring-petclinic-customers-service/target/spring-petclinic-customers-service-2.5.1.jar \
235+
--artifact-path spring-petclinic-customers-service/target/spring-petclinic-customers-service-2.5.1.jar \
236236
--jvm-options="-Xms2048m -Xmx2048m"
237237
```
238238

0 commit comments

Comments
 (0)