From bcff8a04bc3b2febc0d0a974627beb92f9de022f 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 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 3b1e7d797..976fd5afa 100644 --- a/build.gradle +++ b/build.gradle @@ -42,8 +42,8 @@ allprojects { } java { - sourceCompatibility = JavaVersion.VERSION_1_8 - targetCompatibility = JavaVersion.VERSION_1_8 + sourceCompatibility = JavaVersion.VERSION_11 + targetCompatibility = JavaVersion.VERSION_11 } repositories {