diff options
author | aSemy <897017+aSemy@users.noreply.github.com> | 2023-03-09 14:44:14 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-09 14:44:14 +0100 |
commit | 6fcd66a956e489ee42045956164945f080ae772d (patch) | |
tree | d800d58497bec6480174f05a1caecab7d12fa7fb /runners/gradle-plugin/build.gradle.kts | |
parent | 13ec97144159a4ba73aa88430a7bf235ba211b27 (diff) | |
download | dokka-6fcd66a956e489ee42045956164945f080ae772d.tar.gz dokka-6fcd66a956e489ee42045956164945f080ae772d.tar.bz2 dokka-6fcd66a956e489ee42045956164945f080ae772d.zip |
Remove unused `sourceJar` tasks (#2909)
Sources JAR is auto-enabled using `withSourcesJar()` in `base-java` convention plugin
Diffstat (limited to 'runners/gradle-plugin/build.gradle.kts')
-rw-r--r-- | runners/gradle-plugin/build.gradle.kts | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/runners/gradle-plugin/build.gradle.kts b/runners/gradle-plugin/build.gradle.kts index 89601c69..0b6908d4 100644 --- a/runners/gradle-plugin/build.gradle.kts +++ b/runners/gradle-plugin/build.gradle.kts @@ -43,11 +43,6 @@ fun Configuration.excludeGradleCommonDependencies() { } } -val sourceJar by tasks.registering(Jar::class) { - archiveClassifier.set("sources") - from(sourceSets["main"].allSource) -} - gradlePlugin { plugins { create("dokkaGradlePlugin") { |