Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
### 介绍

基于antlr4 statement 解析器,支持spark sql, tidb sql, flink sql, Spark/flink jar 运行命令解析
基于antlr4 statement 数据血缘解析器,支持spark sql,presto sql,tidb sql, flink sql, Spark/flink jar 运行命令解析

##### build

Expand Down
26 changes: 12 additions & 14 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@

<groupId>com.github.bigdata.sql.parser</groupId>
<artifactId>bigdata-sql-parser</artifactId>
<version>2.1.0-SNAPSHOT</version>
<version>1.0.0</version>

<properties>
<kotlin.version>1.2.51</kotlin.version>
<kotlin.version>1.3.72</kotlin.version>
<antlr4.version>4.7</antlr4.version>
</properties>

Expand All @@ -31,12 +31,19 @@
<artifactId>commons-collections</artifactId>
<version>3.2.2</version>
</dependency>

<dependency>
<groupId>commons-configuration</groupId>
<artifactId>commons-configuration</artifactId>
<version>1.10</version>
</dependency>

<dependency>
<groupId>com.facebook.presto</groupId>
<artifactId>presto-parser</artifactId>
<version>0.259.1</version>
</dependency>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
Expand All @@ -48,22 +55,13 @@
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.24</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>log4j-over-slf4j</artifactId>
<version>1.7.24</version>
</dependency>
<!-- logback -->
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
<version>1.2.1</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.2.1</version>
<scope>provided</scope>
</dependency>
</dependencies>

Expand Down Expand Up @@ -183,4 +181,4 @@
<url>https://repository.cloudera.com/content/repositories/releases/</url>
</repository>
</repositories>
</project>
</project>
Loading