Skip to content

Commit

Permalink
[duckdb] Exclude venice-duckdb from all modules
Browse files Browse the repository at this point in the history
  • Loading branch information
kvargha committed Jan 17, 2025
1 parent a8173c8 commit 014a280
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion all-modules/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
// via transitive dependencies instead of enumerating all modules individually.
dependencies {
rootProject.subprojects.each { subproject ->
if (subproject.path != project.path && subproject.subprojects.isEmpty()) {
// 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)
}
}
Expand Down

0 comments on commit 014a280

Please sign in to comment.