Skip to content

Commit

Permalink
Kafka Connect: Disable publish tasks in runtime project (#11032)
Browse files Browse the repository at this point in the history
  • Loading branch information
bryanck authored Aug 30, 2024
1 parent 4b71d40 commit a07f862
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions kafka-connect/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,11 @@ project(':iceberg-kafka-connect:iceberg-kafka-connect-runtime') {
}
}

// there are no Maven artifacts so disable publishing tasks...
project.afterEvaluate {
project.tasks.matching { it.group == 'publishing' }.each {it.enabled = false}
}

tasks.jar.enabled = false

tasks.distTar.enabled = false
Expand Down

0 comments on commit a07f862

Please sign in to comment.