Skip to content

Commit

Permalink
add copy task
Browse files Browse the repository at this point in the history
  • Loading branch information
coolderli committed Oct 15, 2024
1 parent 3e8e715 commit c76a9e5
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions flink-connector/flink-runtime/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,11 @@ publishing {
}
}

tasks.register<Copy>("copy") {
from(configurations.runtimeClasspath)
into("build/libs-runtime")
}

tasks.jar {
dependsOn(tasks.named("shadowJar"))
archiveClassifier.set("empty")
Expand Down

0 comments on commit c76a9e5

Please sign in to comment.