From 890efc738043c7e6f20d7aea734d0eef922cd12d Mon Sep 17 00:00:00 2001 From: Justin Coyne Date: Tue, 28 Nov 2023 17:18:03 -0600 Subject: [PATCH] Remove config deprecations --- build.gradle | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build.gradle b/build.gradle index deb7f87..2fc39de 100644 --- a/build.gradle +++ b/build.gradle @@ -33,13 +33,13 @@ ext { } version = artifactVersionString - -sourceCompatibility = 1.8 -targetCompatibility = 1.8 +java { + sourceCompatibility = JavaVersion.VERSION_1_8 + targetCompatibility = JavaVersion.VERSION_1_8 +} repositories { mavenCentral() // for jacoco and kt3k.coveralls plugins - jcenter() // for mockito } configurations {