diff options
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/build.gradle b/build.gradle index 51768a0..635950d 100644 --- a/build.gradle +++ b/build.gradle @@ -58,6 +58,13 @@ jar { from sourceSets.gradlecomp.output } +task sourcesJar(type: Jar, dependsOn: classes) { + classifier = 'sources' + from sourceSets.api.allSource + from sourceSets.shared.allSource + from sourceSets.gradlecomp.allSource +} + license { header = file("$rootDir/LICENSE-header.txt") @@ -67,6 +74,7 @@ publishing { publications { mavenJava(MavenPublication) { from components.java + artifact tasks.sourcesJar pom { groupId = project.group version = project.version |