From 59f358441ab5e6c974db6073fde087b31e10b5f4 Mon Sep 17 00:00:00 2001 From: Andrew Steinborn Date: Thu, 5 Nov 2020 16:42:46 -0500 Subject: [PATCH] Bump Velocity to Java 11 minimum Fixes #381. There is generally a consensus that we should move forward with this. We do not anticipate a Velocity 2.0.0 release until well after the release of the next Java LTS version (Java 17). This commit doesn't clean up anything for the new Java version yet. --- build.gradle | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build.gradle b/build.gradle index 5e9b007b4..79a309050 100644 --- a/build.gradle +++ b/build.gradle @@ -44,6 +44,11 @@ allprojects { } } + java { + sourceCompatibility = JavaVersion.VERSION_11 + targetCompatibility = JavaVersion.VERSION_11 + } + repositories { mavenLocal() mavenCentral()