From 280334e6335b8f9ac4e99002e69d461ccb3a0f9b Mon Sep 17 00:00:00 2001 From: Adam Murdoch Date: Tue, 26 Feb 2013 09:04:25 +1100 Subject: [PATCH] Publish source and javadoc as jars, so that they are picked up correctly. --- build.gradle | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build.gradle b/build.gradle index 1aed8d3..0f8f2e3 100755 --- a/build.gradle +++ b/build.gradle @@ -236,11 +236,13 @@ javadoc { task sourceZip(type: Zip) { from sourceSets.main.allSource classifier = 'sources' + extension = 'jar' } task javadocZip(type: Zip) { from javadoc classifier = 'javadoc' + extension = 'jar' } artifacts {