From d1f4b1b1c030351046f554c537f9b1a3cee82107 Mon Sep 17 00:00:00 2001 From: Quarris Date: Tue, 19 May 2020 22:44:33 +0100 Subject: [PATCH] Update build.gradle (#119) --- build.gradle | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.gradle b/build.gradle index 9a3cddab..ae7725f0 100644 --- a/build.gradle +++ b/build.gradle @@ -130,7 +130,7 @@ jar { task deobfJar(type: Jar) { from(sourceSets.main.output) - archiveName = "${baseName}-${version}-deobf.${extension}" + archiveName = "${baseName}-${version}-sources.${extension}" } artifacts { archives deobfJar @@ -145,7 +145,7 @@ publishing { from components.java artifact deobfJar { - classifier 'deobf' + classifier 'sources' } pom.withXml { @@ -160,4 +160,4 @@ publishing { url "file://" + System.getenv("local_maven") } } -} \ No newline at end of file +}