1 Star 0 Fork 0

github_repo/trino_sql_parser

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
build.gradle 1.19 KB
一键复制 编辑 原始数据 按行查看 历史
Sadayuki Furuhashi 提交于 2022-08-03 08:05 +08:00 . Upgrade Trino from 351 to 391
plugins {
id 'com.github.johnrengelman.shadow' version '7.1.2'
}
apply plugin: 'com.github.johnrengelman.shadow'
apply plugin: 'java'
apply plugin: 'idea'
group = 'trino-sql-parser-support-process'
version = '1.0.0'
dependencies {
implementation 'io.trino:trino-parser:391'
implementation "com.fasterxml.jackson.core:jackson-databind:2.9.9"
implementation "com.fasterxml.jackson.datatype:jackson-datatype-guava:2.9.9"
implementation "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.9.9"
}
repositories {
mavenCentral()
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
compileJava.options.encoding = 'UTF-8'
compileTestJava.options.encoding = 'UTF-8'
tasks.withType(JavaCompile) {
options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
}
shadowJar {
manifest {
attributes 'Implementation-Title': project.name,
'Implementation-Version': project.version,
'Implementation-Vendor-Id': project.group,
'Specification-Title': project.name,
'Specification-Version': project.version,
'Main-Class': 'TrinoSqlParserSupportProcess'
}
mergeServiceFiles {
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/github_repo/trino_sql_parser.git
git@gitee.com:github_repo/trino_sql_parser.git
github_repo
trino_sql_parser
trino_sql_parser
master

搜索帮助