Skip to content

Commit c37e23f

Browse files
authored
Update java-get-started.md
1 parent cca7027 commit c37e23f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/container-apps/java-get-started.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ The following image is a screenshot of how your application looks once deployed
3131
| Azure CLI | Install the [Azure CLI](/cli/azure/install-azure-cli).|
3232
| Container Apps CLI extension | Use version `0.3.47` or higher. Use the `az extension add --name containerapp --upgrade --allow-preview` command to install the latest version. |
3333
| Java | Install the [Java Development Kit](/java/openjdk/install). Use version 17 or later. |
34-
| Maven | Install the [Maven](https://maven.apache.org/download.cgi).|
34+
| Apache Maven | Download and install [Apache Maven](https://maven.apache.org/download.cgi).|
3535

3636
## Prepare the project
3737

@@ -67,7 +67,7 @@ cd spring-petclinic
6767
Clean the Maven build area, compile the project's code, and create a JAR file, all while skipping any tests.
6868

6969
```bash
70-
mvn clean package -DskipTests
70+
mvn clean verify
7171
```
7272

7373
After you execute the build command, a file named *petclinic.jar* is generated in the */target* folder.
@@ -88,7 +88,7 @@ cd spring-framework-petclinic
8888
Clean the Maven build area, compile the project's code, and create a WAR file, all while skipping any tests.
8989

9090
```bash
91-
mvn clean package -DskipTests
91+
mvn clean verify
9292
```
9393

9494
After you execute the build command, a file named *petclinic.war* is generated in the */target* folder.

0 commit comments

Comments
 (0)