Skip to content

Commit

Permalink
fix resource copy to distribution
Browse files Browse the repository at this point in the history
  • Loading branch information
bryanck committed Jul 24, 2024
1 parent a4ae527 commit 86d9aca
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 12 deletions.
18 changes: 6 additions & 12 deletions kafka-connect/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -192,35 +192,29 @@ project(':iceberg-kafka-connect:iceberg-kafka-connect-runtime') {
distributions {
main {
contents {
from(processResources.destinationDir) {
include 'manifest.json'
}
from "${processResources.destinationDir}/manifest.json"
into('lib/') {
from configurations.runtimeClasspath
}
into('doc/') {
from '$rootDir/LICENSE'
from '$rootDir/README.md'
from "$rootDir/LICENSE"
}
into('assets/') {
from '$rootDir/logos'
from "${processResources.destinationDir}/iceberg.png"
}
}
}
hive {
contents {
from(processResources.destinationDir) {
include 'manifest.json'
}
from "${processResources.destinationDir}/manifest.json"
into('lib/') {
from configurations.hive
}
into('doc/') {
from '$rootDir/LICENSE'
from '$rootDir/README.md'
from "$rootDir/LICENSE"
}
into('assets/') {
from '$rootDir/logos'
from "${processResources.destinationDir}/iceberg.png"
}
}
}
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 86d9aca

Please sign in to comment.