This is an automated email from the ASF dual-hosted git repository. bchapuis pushed a commit to branch calcite in repository https://gitbox.apache.org/repos/asf/incubator-baremaps.git
commit 738c1bb8da846aff6776183b25603d3be7425a32 Author: Bertil Chapuis <[email protected]> AuthorDate: Tue Apr 4 14:29:29 2023 +0200 Add calcite dependency --- baremaps-core/pom.xml | 5 +++++ pom.xml | 6 ++++++ 2 files changed, 11 insertions(+) diff --git a/baremaps-core/pom.xml b/baremaps-core/pom.xml index 8502ed1d..3b370c4b 100644 --- a/baremaps-core/pom.xml +++ b/baremaps-core/pom.xml @@ -81,6 +81,11 @@ <groupId>net.ripe.ipresource</groupId> <artifactId>ipresource</artifactId> </dependency> + <dependency> + <groupId>org.apache.calcite</groupId> + <artifactId>calcite-core</artifactId> + <version>${version.lib.calcite}</version> + </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-compress</artifactId> diff --git a/pom.xml b/pom.xml index 53844624..38458407 100644 --- a/pom.xml +++ b/pom.xml @@ -80,6 +80,7 @@ <version.lib.awaitability>3.0.0</version.lib.awaitability> <version.lib.awssdk>2.17.284</version.lib.awssdk> <version.lib.caffeine>3.1.1</version.lib.caffeine> + <version.lib.calcite>1.34.0</version.lib.calcite> <version.lib.commons-compress>1.21</version.lib.commons-compress> <version.lib.fastutil>8.5.9</version.lib.fastutil> <version.lib.flatgeobuf>3.24.0</version.lib.flatgeobuf> @@ -319,6 +320,11 @@ <artifactId>baremaps-server</artifactId> <version>${project.parent.version}</version> </dependency> + <dependency> + <groupId>org.apache.calcite</groupId> + <artifactId>calcite-core</artifactId> + <version>${version.lib.calcite}</version> + </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-compress</artifactId>
