wuchong commented on a change in pull request #8548: [FLINK-6962] [table] Add a create table SQL DDL URL: https://github.com/apache/flink/pull/8548#discussion_r288457325
########## File path: flink-table/flink-sql-parser/pom.xml ########## @@ -0,0 +1,240 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + + <modelVersion>4.0.0</modelVersion> + + <parent> + <artifactId>flink-table</artifactId> + <groupId>org.apache.flink</groupId> + <version>1.9-SNAPSHOT</version> + </parent> + + <artifactId>flink-sql-parser</artifactId> + <name>flink-sql-parser</name> + + <packaging>jar</packaging> + + <properties> + <!-- override parent pom --> + <test.excludedGroups/> + <calcite.version>1.19.0</calcite.version> + </properties> + + <dependencies> + <dependency> + <groupId>org.apache.flink</groupId> + <artifactId>flink-shaded-guava</artifactId> + </dependency> + + <dependency> + <groupId>org.apache.calcite</groupId> + <artifactId>calcite-core</artifactId> + <!-- When updating the Calcite version, make sure to update the dependency exclusions --> + <version>${calcite.version}</version> + <exclusions> + <!-- + + Dependencies that are not needed for how we use Calcite right now. + + "mvn dependency:tree" as of Calcite 1.19: + + [INFO] +- org.apache.calcite:calcite-core:jar:1.18.0:compile Review comment: 1.19.0 ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
