18 lines
630 B
Groovy
18 lines
630 B
Groovy
compileJava {
|
|
options.release = 11
|
|
}
|
|
|
|
dependencies {
|
|
api "com.github.jsqlparser:jsqlparser:5.0"
|
|
api project(":mybatis-plus-jsqlparser-support:mybatis-plus-jsqlparser-common")
|
|
implementation "${lib."slf4j-api"}"
|
|
implementation "de.ruedigermoeller:fst:3.0.3"
|
|
implementation "com.github.ben-manes.caffeine:caffeine:2.9.3"
|
|
testImplementation "io.github.classgraph:classgraph:4.8.177"
|
|
testImplementation "${lib."spring-context-support"}"
|
|
testImplementation "${lib.h2}"
|
|
testImplementation group: 'com.google.guava', name: 'guava', version: '33.3.1-jre'
|
|
}
|
|
|
|
compileJava.dependsOn(processResources)
|