Skip to content

To Prod: Change to cloud-hosted-guide-getting-started #3917

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 11, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions instructions/cloud-hosted-guide-getting-started/instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ Finally, you will package the application along with Liberty's configuration int
::page{title="Getting started"}

To open a new command-line session,
select **Terminal** > **New Terminal** from the menu of the IDE.
select ***Terminal*** > ***New Terminal*** from the menu of the IDE.

Run the following command to navigate to the **/home/project** directory:
Run the following command to navigate to the ***/home/project*** directory:

```bash
cd /home/project
Expand Down Expand Up @@ -88,7 +88,7 @@ When the Liberty instance begins starting up, various messages display in your c



Open another command-line session by selecting **Terminal** > **New Terminal** from the menu of the IDE.
Open another command-line session by selecting ***Terminal*** > ***New Terminal*** from the menu of the IDE.


To access the ***system*** microservice, see the ***http\://localhost:9080/system/properties*** URL, and you see a list of the various system properties of your JVM:
Expand Down Expand Up @@ -747,19 +747,19 @@ Replace the pom.xml file.
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.12.0</version>
<version>5.12.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-client</artifactId>
<version>6.2.11.Final</version>
<version>6.2.12.Final</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-json-binding-provider</artifactId>
<version>6.2.11.Final</version>
<version>6.2.12.Final</version>
<scope>test</scope>
</dependency>
<dependency>
Expand All @@ -777,7 +777,7 @@ Replace the pom.xml file.
<plugin>
<groupId>io.openliberty.tools</groupId>
<artifactId>liberty-maven-plugin</artifactId>
<version>3.11.2</version>
<version>3.11.3</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand All @@ -787,13 +787,13 @@ Replace the pom.xml file.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.5.2</version>
<version>3.5.3</version>
</plugin>
<!-- Plugin to run functional tests -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>3.5.2</version>
<version>3.5.3</version>
<configuration>
<systemPropertyVariables>
<http.port>${liberty.var.http.port}</http.port>
Expand Down
Loading