From 132f8f4d7dc13537e3d3013069ef58c713061211 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobi=20Sch=C3=A4fer?= Date: Sat, 1 Jun 2024 18:55:45 +0200 Subject: [PATCH] Revert "Bump minimum Java version to 17 (LTS)" This reverts commit ebf9b22f559f62a92fb0fd08ec3d51174dc85437. --- README.md | 6 +++--- build.gradle | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 4046dbc5..2a134485 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ ## TL;DR -- Make sure you have Java 17 or higher installed +- Make sure you have Java 11 or higher installed - Download and unpack the [latest release](https://github.com/antville/helma/releases) - Invoke `./bin/helma`, resp. `./bin/helma.bat`, depending on your platform - Direct your web browser to @@ -21,9 +21,9 @@ Although Helma became a Grande Dame of server-side JavaScript already decades ag ## System Requirements -You need a Java virtual machine version 17 or higher to run Helma. +You need a Java virtual machine version 11 or higher to run Helma. -Please consult the documentation of your platform on how to obtain and install Java. +Please consult the documentation of your platform how to obtain and install Java. You also can directly download a [Java runtime or development kit](https://www.oracle.com/java/technologies/javase-downloads.html#javasejdk) from Oracle. diff --git a/build.gradle b/build.gradle index 99434d44..e5150e09 100644 --- a/build.gradle +++ b/build.gradle @@ -18,8 +18,8 @@ allprojects { apply plugin: 'java' compileJava { - sourceCompatibility = JavaVersion.VERSION_17 - targetCompatibility = JavaVersion.VERSION_17 + sourceCompatibility = JavaVersion.VERSION_11 + targetCompatibility = JavaVersion.VERSION_11 } repositories {