Skip to content

Commit

Permalink
Clarify the supported Oracle JDK and OpenJDK versions; add a note abo…
Browse files Browse the repository at this point in the history
…ut other JDKs and versions (#1085)

Co-authored-by: Toshihiro Suzuki <brfrn169@gmail.com>
  • Loading branch information
josh-wong and brfrn169 committed Sep 19, 2023
1 parent 6947db3 commit e76ded3
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 9 deletions.
18 changes: 13 additions & 5 deletions docs/getting-started-with-scalardb-by-using-kotlin.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,20 @@ The electronic money application is simplified for this tutorial and isn't suita

## Install a JDK

Because ScalarDB is written in Java, you must have one of the following Java Development Kits (JDKs) installed in your environment.
Because ScalarDB is written in Java, you must have one of the following Java Development Kits (JDKs) installed in your environment:

* [Oracle JDK 8](https://www.oracle.com/java/technologies/downloads/#java8)
* [Oracle JDK 11](https://www.oracle.com/java/technologies/downloads/#java11)
* [OpenJDK 8](https://openjdk.org/install/)
- [Oracle JDK](https://www.oracle.com/java/technologies/downloads/) LTS version (8, 11, or 17)
- [OpenJDK](https://openjdk.org/install/) LTS version (8, 11, or 17)

{% capture notice--info %}
**Note**

We recommend using the LTS versions mentioned above, but other non-LTS versions may work.

In addition, other JDKs should work with ScalarDB, but we haven't tested them.
{% endcapture %}

<div class="notice--info">{{ notice--info | markdownify }}</div>

## Clone the `scalardb` repository

Expand Down Expand Up @@ -305,4 +314,3 @@ The balance for merchant1 is 100
## Reference

To see the source code for the electronic money application used in this tutorial, see [`ElectronicMoney.kt`](./getting-started-kotlin/src/main/kotlin/sample/ElectronicMoney.kt).

17 changes: 13 additions & 4 deletions docs/getting-started-with-scalardb.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,20 @@ The electronic money application is simplified for this tutorial and isn't suita

## Install a JDK

Because ScalarDB is written in Java, you must have one of the following Java Development Kits (JDKs) installed in your environment.
Because ScalarDB is written in Java, you must have one of the following Java Development Kits (JDKs) installed in your environment:

* [Oracle JDK 8](https://www.oracle.com/java/technologies/downloads/#java8)
* [Oracle JDK 11](https://www.oracle.com/java/technologies/downloads/#java11)
* [OpenJDK 8](https://openjdk.org/install/)
- [Oracle JDK](https://www.oracle.com/java/technologies/downloads/) LTS version (8, 11, or 17)
- [OpenJDK](https://openjdk.org/install/) LTS version (8, 11, or 17)

{% capture notice--info %}
**Note**

We recommend using the LTS versions mentioned above, but other non-LTS versions may work.

In addition, other JDKs should work with ScalarDB, but we haven't tested them.
{% endcapture %}

<div class="notice--info">{{ notice--info | markdownify }}</div>

## Clone the `scalardb` repository

Expand Down

0 comments on commit e76ded3

Please sign in to comment.