From a4937f78c93901e2fdb0ca73929be2589710b86c Mon Sep 17 00:00:00 2001 From: Angeline Date: Wed, 1 Apr 2020 04:15:25 -0500 Subject: [PATCH] change: Do not build separate JARs for mod installation, include license information --- build.gradle | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/build.gradle b/build.gradle index 797e0d23..0fc856d2 100644 --- a/build.gradle +++ b/build.gradle @@ -87,15 +87,12 @@ tasks.withType(JavaCompile) { task sourcesJar(type: Jar, dependsOn: classes) { classifier = "sources" from sourceSets.main.allSource -} - -jar { - from "LICENSE.txt" + from "LICENSE" } task modJar(type: RemappingJar, dependsOn: classes) { - classifier = "mod" from sourceSets.main.output + from "LICENSE" } build.dependsOn modJar