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

[#3475] fix(all): Fix the problem of multiple version jars in the release tar. #3476

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -634,6 +634,7 @@ tasks {
it.name != "integration-test" &&
it.name != "bundled-catalog"
) {
delete("${it.name}/build/libs")
dependsOn("${it.name}:build")
from("${it.name}/build/libs")
into("distribution/package/libs")
Expand Down
1 change: 1 addition & 0 deletions catalogs/catalog-hadoop/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ tasks {
}

val copyCatalogLibs by registering(Copy::class) {
delete("build/libs")
dependsOn("jar", "runtimeJars")
from("build/libs")
into("$rootDir/distribution/package/catalogs/hadoop/libs")
Expand Down
1 change: 1 addition & 0 deletions catalogs/catalog-hive/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@ tasks {
}

val copyCatalogLibs by registering(Copy::class) {
delete("build/libs")
dependsOn("jar", "runtimeJars")
from("build/libs")
into("$rootDir/distribution/package/catalogs/hive/libs")
Expand Down
1 change: 1 addition & 0 deletions catalogs/catalog-jdbc-doris/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ tasks {
into("build/libs")
}
val copyCatalogLibs by registering(Copy::class) {
delete("build/libs")
dependsOn("jar", "runtimeJars")
from("build/libs")
into("$rootDir/distribution/package/catalogs/jdbc-doris/libs")
Expand Down
1 change: 1 addition & 0 deletions catalogs/catalog-jdbc-mysql/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ tasks {
}

val copyCatalogLibs by registering(Copy::class) {
delete("build/libs")
dependsOn("jar", "runtimeJars")
from("build/libs")
into("$rootDir/distribution/package/catalogs/jdbc-mysql/libs")
Expand Down
1 change: 1 addition & 0 deletions catalogs/catalog-jdbc-postgresql/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ tasks {
}

val copyCatalogLibs by registering(Copy::class) {
delete("build/libs")
dependsOn("jar", "runtimeJars")
from("build/libs")
into("$rootDir/distribution/package/catalogs/jdbc-postgresql/libs")
Expand Down
1 change: 1 addition & 0 deletions catalogs/catalog-kafka/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ tasks {
}

val copyCatalogLibs by registering(Copy::class) {
delete("build/libs")
dependsOn(jar, runtimeJars)
from("build/libs")
into("$rootDir/distribution/package/catalogs/kafka/libs")
Expand Down
1 change: 1 addition & 0 deletions catalogs/catalog-lakehouse-iceberg/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ tasks {
}

val copyCatalogLibs by registering(Copy::class) {
delete("build/libs")
dependsOn("jar", "runtimeJars")
from("build/libs")
into("$rootDir/distribution/package/catalogs/lakehouse-iceberg/libs")
Expand Down
Loading