Change required JDK version to 11

I haven't tested on 7 (and I'm not sure if the jawt shared lib files are
even in the correct place), so I think it's better to require the
version I've been testing on.

This is also consistent with the requirement for the main openrs2
project.
master
Graham 5 years ago
parent 5b3b705c40
commit 65258fc695
  1. 8
      README.md

@ -12,7 +12,7 @@ jagmisc native libraries.
Building OpenRS2 Natives requires the following pieces of software on all
platforms:
* [Java Development Kit][jdk] (version 7 or later)
* [Java Development Kit][jdk] (version 11)
* [Apache Maven][maven] (version 3.3.9 or later)
### Platform-specific dependencies
@ -70,9 +70,9 @@ Graphics Library][mesa] on UNIX-like systems (e.g. Linux).
The easiest way to install all the dependencies is with your system's package
manager. For example:
* Debian-based systems: `apt install openjdk-12-jdk maven gcc libgl1-mesa-dev`
* RPM-based systems: `yum install java-12-openjdk-devel maven gcc mesa-libGL-devel`
* ArchLinux-based systems: `pacman -S jdk-openjdk maven gcc mesa`
* Debian-based systems: `apt install openjdk-11-jdk maven gcc libgl1-mesa-dev`
* RPM-based systems: `yum install java-11-openjdk-devel maven gcc mesa-libGL-devel`
* ArchLinux-based systems: `pacman -S jdk11-openjdk maven gcc mesa`
`-headless` packages are not sufficient as the `gl-natives` module is linked
with `libjawt`.

Loading…
Cancel
Save