From c66fcf6ccd912370ab46c59ef62a518dcb2b380f Mon Sep 17 00:00:00 2001 From: raoulvdberge Date: Mon, 4 Nov 2019 19:34:06 +0100 Subject: [PATCH] Fixed problem where deobf was posted as an unobf jar. --- build.gradle | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build.gradle b/build.gradle index 64f05b986..a82ec200b 100755 --- a/build.gradle +++ b/build.gradle @@ -109,6 +109,8 @@ jar { } } +jar.finalizedBy('reobfJar') + task apiJar(type: Jar, dependsOn: 'classes') { classifier = 'api' from(sourceSets.main.output) { @@ -127,6 +129,7 @@ task deobfJar(type:Jar) { } artifacts { + archives jar archives sourcesJar archives deobfJar archives apiJar