Skip to content

To Prod: Change to cloud-hosted-guide-jpa-intro #3920

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
16 changes: 8 additions & 8 deletions instructions/cloud-hosted-guide-jpa-intro/instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ You will use JPA annotations to define an entity class whose fields are persiste
::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 @@ -481,19 +481,19 @@ Replace the ***backendServices/pom.xml*** configuration file.
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</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 Down Expand Up @@ -534,7 +534,7 @@ Replace the ***backendServices/pom.xml*** configuration file.
<plugin>
<groupId>io.openliberty.tools</groupId>
<artifactId>liberty-maven-plugin</artifactId>
<version>3.11.2</version>
<version>3.11.3</version>
<configuration>
<copyDependencies>
<location>${project.build.directory}/liberty/wlp/usr/shared/resources</location>
Expand All @@ -557,13 +557,13 @@ Replace the ***backendServices/pom.xml*** configuration 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 integration 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>
<backend.http.port>${backend.service.http.port}</backend.http.port>
Expand Down
Loading