Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove unused Gradle tasks #2909

Merged
merged 1 commit into from Mar 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 0 additions & 5 deletions runners/gradle-plugin/build.gradle.kts
Expand Up @@ -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") {
Expand Down
5 changes: 0 additions & 5 deletions runners/maven-plugin/build.gradle.kts
Expand Up @@ -81,11 +81,6 @@ val pluginDescriptor by tasks.registering(CrossPlatformExec::class) {
outputs.dir(layout.buildDirectory.dir("maven/classes/java/main/META-INF/maven"))
}

val sourceJar by tasks.registering(Jar::class) {
archiveClassifier.set("sources")
from(java.sourceSets["main"].allSource)
}

tasks.jar {
dependsOn(pluginDescriptor, helpMojo)
metaInf {
Expand Down