From 3021528fa7cfc46440a74f5a8df8cff18653cf42 Mon Sep 17 00:00:00 2001 From: Stu Date: Mon, 29 Aug 2022 10:45:24 +0100 Subject: [PATCH] sources now published by default --- build.gradle | 6 ------ 1 file changed, 6 deletions(-) diff --git a/build.gradle b/build.gradle index d064b22..efecced 100644 --- a/build.gradle +++ b/build.gradle @@ -119,11 +119,6 @@ task groovydocJar(type: Jar, dependsOn: groovydoc) { classifier 'groovydoc' } -task sourcesJar(type: Jar) { - from sourceSets.main.allSource - classifier 'sources' -} - def propOrDefault(String property) { if (project.hasProperty(property)) { return project.getProperty(property) @@ -179,7 +174,6 @@ publishing { } from components.java artifact groovydocJar - artifact sourcesJar } } }