about summary refs log tree commit diff stats
path: root/pages/jdk.md
blob: b74ecfd89c4192a4c060111e39a1614385412f9a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!--
title: jdk 11
description: Using JDK 11
author: gbmor
-->

# jdk 11

To use JDK 11 for development, you will need to make the following additions
to your `~/.kshrc` file:

```
export PATH=/usr/local/jdk-11/bin:$PATH
export JAVA_HOME=/usr/local/jdk-11
```

Afterwards, you may call `java`, `javac`, etc as expected.

JDK 1.8.0 is also available by replacing `jdk-11` in the above two lines
with `jdk-1.8.0`

[back](/)