Skip to content

Commit

Permalink
[duckdb] Other attempt at excluding duckdb from all-modules (#1452)
Browse files Browse the repository at this point in the history
  • Loading branch information
FelixGV authored Jan 17, 2025
1 parent fbbd13b commit 3df5859
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions all-modules/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,14 @@ dependencies {
rootProject.subprojects.each { subproject ->
// Excluding venice-duckdb as it's experimental and causes build issues
if (subproject.path != project.path && subproject.subprojects.isEmpty() && subproject.path != ':venice-duckdb') {
implementation project(subproject.path)
implementation (project(subproject.path)) {
exclude group: 'org.duckdb'
exclude module: 'venice-duckdb'
}
}
}
implementation project(path: ':internal:venice-test-common', configuration: 'integrationTestUtils')
implementation (project(path: ':internal:venice-test-common', configuration: 'integrationTestUtils')) {
exclude group: 'org.duckdb'
exclude module: 'venice-duckdb'
}
}

0 comments on commit 3df5859

Please sign in to comment.