This is an automated email from the ASF dual-hosted git repository.
vterentev pushed a commit to branch fix-playground-ci-nightly
in repository https://gitbox.apache.org/repos/asf/beam.git
The following commit(s) were added to refs/heads/fix-playground-ci-nightly by
this push:
new c40cf46b3ef Add Calcite dependency
c40cf46b3ef is described below
commit c40cf46b3efcc96dc4efa92d8c5bdf6ae0519b03
Author: Vitaly Terentyev <[email protected]>
AuthorDate: Wed Oct 1 19:12:27 2025 +0400
Add Calcite dependency
---
examples/java/sql/build.gradle | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/examples/java/sql/build.gradle b/examples/java/sql/build.gradle
index d85e6e64160..b5e41ee4e4d 100644
--- a/examples/java/sql/build.gradle
+++ b/examples/java/sql/build.gradle
@@ -56,10 +56,14 @@ dependencies {
implementation project(path: ":sdks:java:core", configuration: "shadow")
implementation project(path: ":sdks:java:extensions:sql", configuration:
"shadow")
implementation library.java.slf4j_api
+ implementation library.java.vendored_calcite_1_40_0
+ runtimeOnly library.java.vendored_calcite_1_40_0
runtimeOnly project(path: ":runners:direct-java", configuration: "shadow")
runtimeOnly library.java.hadoop_client
runtimeOnly library.java.bigdataoss_gcs_connector
testImplementation project(path: ":runners:direct-java", configuration:
"shadow")
+ testImplementation project(path: ":sdks:java:extensions:sql", configuration:
"shadow")
+ testImplementation library.java.vendored_calcite_1_40_0
testImplementation library.java.hamcrest
testImplementation library.java.junit
testImplementation library.java.mockito_core