From 9c115558d5bb8dbee33d081004d2402112a0347b Mon Sep 17 00:00:00 2001 From: yushijinhun Date: Fri, 14 Aug 2020 20:51:39 +0800 Subject: [PATCH] update build dependencies --- build.gradle | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build.gradle b/build.gradle index 03648dc..d8bebab 100644 --- a/build.gradle +++ b/build.gradle @@ -1,5 +1,5 @@ plugins { - id 'com.github.johnrengelman.shadow' version '5.2.0' + id 'com.github.johnrengelman.shadow' version '6.0.0' id 'com.palantir.git-version' version '0.12.3' id 'java' } @@ -9,8 +9,8 @@ repositories { } dependencies { - compile 'org.ow2.asm:asm:8.0.1' - testCompile 'junit:junit:4.13' + implementation 'org.ow2.asm:asm:8.0.1' + testImplementation 'junit:junit:4.13' } sourceCompatibility = 8 @@ -24,7 +24,7 @@ jar { manifest { attributes ( 'Implementation-Title': project.name, - 'Implementation-Version': version, + 'Implementation-Version': project.version, 'Implementation-Vendor': 'yushijinhun', 'Implementation-Timestamp': new Date().format("yyyy-MM-dd'T'HH:mm:ssZ"), 'Automatic-Module-Name': 'moe.yushi.authlibinjector',