Skip to content

Commit

Permalink
Change server to runtime or instance (#200)
Browse files Browse the repository at this point in the history
* Change server to runtime or instance

* Update README.adoc

* Change server to runtime or instance
  • Loading branch information
gkwan-ibm authored Aug 15, 2023
1 parent c3d074f commit 698610d
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ cd /home/project/guide-microprofile-jwt/start
```
endif::[]

When you run Open Liberty in https://openliberty.io/docs/latest/development-mode.html[dev mode^], the server listens for file changes and automatically recompiles and deploys your updates whenever you save a new change. Run the following commands to navigate to the `frontend` directory and start the `frontend` service in dev mode:
When you run Open Liberty in https://openliberty.io/docs/latest/development-mode.html[dev mode^], dev mode listens for file changes and automatically recompiles and deploys your updates whenever you save a new change. Run the following commands to navigate to the `frontend` directory and start the `frontend` service in dev mode:

[role='command']
```
Expand All @@ -172,7 +172,7 @@ cd system
mvn liberty:dev
```

After you see the following message, your application server in dev mode is ready:
After you see the following message, your Liberty instance is ready in dev mode:

[source, role="no_copy"]
----
Expand Down Expand Up @@ -294,11 +294,11 @@ The following table breaks down some of the properties:

For more information about these and other JWT properties, see the https://openliberty.io/docs/latest/microprofile-config-properties.html#jwt[MicroProfile Config properties for MicroProfile JSON Web Token documentation^].

Next, add the MicroProfile JSON Web Token feature to the server configuration file for the `system` service.
Next, add the MicroProfile JSON Web Token feature to the Liberty `server.xml` configuration file for the `system` service.

[role="code_command hotspot file=1", subs="quotes"]
----
#Replace the system server configuration file.#
#Replace the system `server.xml` configuration file.#
`system/src/main/liberty/config/server.xml`
----

Expand Down
2 changes: 1 addition & 1 deletion finish/frontend/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
<plugin>
<groupId>io.openliberty.tools</groupId>
<artifactId>liberty-maven-plugin</artifactId>
<version>3.7.1</version>
<version>3.8.2</version>
</plugin>
</plugins>
</build>
Expand Down
2 changes: 1 addition & 1 deletion finish/system/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@
<plugin>
<groupId>io.openliberty.tools</groupId>
<artifactId>liberty-maven-plugin</artifactId>
<version>3.7.1</version>
<version>3.8.2</version>
</plugin>
<!-- Plugin to run functional tests -->
<plugin>
Expand Down
2 changes: 1 addition & 1 deletion start/frontend/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
<plugin>
<groupId>io.openliberty.tools</groupId>
<artifactId>liberty-maven-plugin</artifactId>
<version>3.7.1</version>
<version>3.8.2</version>
</plugin>
</plugins>
</build>
Expand Down
2 changes: 1 addition & 1 deletion start/system/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@
<plugin>
<groupId>io.openliberty.tools</groupId>
<artifactId>liberty-maven-plugin</artifactId>
<version>3.7.1</version>
<version>3.8.2</version>
</plugin>
<!-- Plugin to run functional tests -->
<plugin>
Expand Down

0 comments on commit 698610d

Please sign in to comment.