From abe783ae7ce45ccf296ed7b7e5c1b194e7c560fa Mon Sep 17 00:00:00 2001 From: Shadowfacts Date: Wed, 22 Dec 2021 18:03:10 -0500 Subject: [PATCH] Update for new gradle --- build.gradle | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build.gradle b/build.gradle index b7247c8..7c11b01 100644 --- a/build.gradle +++ b/build.gradle @@ -2,8 +2,8 @@ apply plugin: 'java' apply plugin: 'idea' apply from: "https://github.com/shadowfacts/maven/raw/master/maven.gradle" -sourceCompatibility = 1.7 -targetCompatibility = 1.7 +sourceCompatibility = 17 +targetCompatibility = 17 group = "no.birkett" archivesBaseName = "kiwi" version = '1.0' @@ -13,5 +13,5 @@ repositories { } dependencies { - testCompile group: 'junit', name: 'junit', version: '4.11' -} \ No newline at end of file + testImplementation group: 'junit', name: 'junit', version: '4.11' +}