From 28080516cb871042fc4932a6f85cf67e1bb5481f Mon Sep 17 00:00:00 2001 From: Kunal Dabir Date: Wed, 17 Apr 2019 19:38:20 +0530 Subject: [PATCH] #24 apparently there is no alternative. reverting to setter --- build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 561c967..7d22ef8 100755 --- a/build.gradle +++ b/build.gradle @@ -93,12 +93,12 @@ jar { } task sourcesJar(type: Jar) { - archiveClassifier 'sources' + classifier = 'sources' from sourceSets.main.allSource } task groovydocJar(type: Jar, dependsOn: groovydoc) { - archiveClassifier 'groovydoc' + classifier = 'groovydoc' from groovydoc.destinationDir }