From d40362a8272aec4ca198dc61c0645c710b50fe1e Mon Sep 17 00:00:00 2001 From: Harald Pehl Date: Fri, 10 Nov 2023 08:55:13 +0100 Subject: [PATCH] WFLY-18428: Fix more typos; place the 'Get Started' link in the middle --- _layouts/index.html | 2 +- getstarted.adoc | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/_layouts/index.html b/_layouts/index.html index 14b916dd..24b78043 100644 --- a/_layouts/index.html +++ b/_layouts/index.html @@ -10,9 +10,9 @@

WildFly

A powerful, modular, & lightweight application server that helps you build amazing applications.

Now available: WildFly {{latestRelease.version_shortname}}

+ Download WildFly Get Started Try WildFly Preview - Download WildFly
diff --git a/getstarted.adoc b/getstarted.adoc index 3c5421dd..760e65d1 100644 --- a/getstarted.adoc +++ b/getstarted.adoc @@ -9,7 +9,7 @@ permalink: /get-started/ === Step 0. Install Java & Maven -You need Java (at least version `11`, and preferably the latest LTS version) and Maven installed on your machine to create a Maven project that contains the source code of the Jakarta EE application. +You need Java (at least version `11`, and preferably `17`) and Maven installed on your machine to create a Maven project that contains the source code of the Jakarta EE application. You can verify they are installed by executing the commands: @@ -34,11 +34,11 @@ The `getting-started` project that is generated contains a simple "Hello World" exposes a HTTP endpoint with the Jakarta-RS API. The Maven project is configured to "provision" (install and configure) -WildFly that hosts your application. +the WildFly that hosts your application. === Step 2. Build the Application -You can build the application by executing the command: +You can build the application by executing the commands: [source,bash] ---- @@ -46,7 +46,7 @@ cd getting-started mvn package verify ---- -This Maven command compiles the Jakarta EE application, provisions WildFly, deploys the application in WildFly and +This Maven command compiles the Jakarta EE application, provisions WildFly, deploys the application into WildFly and runs integration tests against it. When this command is finished, you have a fully functional, tested application running on WildFly. @@ -61,11 +61,11 @@ The `target/server` contains a fully functional WildFly server with your applica The application is accessible at http://localhost:8080/. -To stop the application, type `Ctrl + C` in the terminal where your started WildFly. +To stop the application, type `Ctrl + C` in the terminal where you started WildFly. === Step 4. Continuous Development -You can develop your application and see the updates in the running application immediately by using the `wildfly:dev` from the root +You can develop your application and see the updates in the running application immediately by using the `wildfly:dev` goal from the root of your project: [source,bash]