File tree 2 files changed +7
-3
lines changed
2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 14
14
// SQL dependency versions
15
15
jlineVersion= " 3.10.0"
16
16
antlrVersion= " 4.5.3"
17
+
18
+ // SQL test dependency versions
19
+ csvjdbcVersion= " 1.0.34"
20
+ h2Version= " 1.4.197"
17
21
}
18
22
19
23
configurations {
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ dependencies {
12
12
compile project(path : xpackModule(' sql:jdbc' ), configuration : ' nodeps' )
13
13
14
14
compile project(path : xpackModule(' sql:sql-action' ))
15
- compile " net.sourceforge.csvjdbc:csvjdbc:1.0.34 "
15
+ compile " net.sourceforge.csvjdbc:csvjdbc:${ csvjdbcVersion } "
16
16
17
17
// CLI testing dependencies
18
18
compile project(path : xpackModule(' sql:sql-cli' ), configuration : ' nodeps' )
@@ -54,8 +54,8 @@ subprojects {
54
54
testCompile " org.elasticsearch.test:framework:${ version} "
55
55
56
56
// JDBC testing dependencies
57
- testRuntime " net.sourceforge.csvjdbc:csvjdbc:1.0.34 "
58
- testRuntime " com.h2database:h2:1.4.197 "
57
+ testRuntime " net.sourceforge.csvjdbc:csvjdbc:${ csvjdbcVersion } "
58
+ testRuntime " com.h2database:h2:${ h2Version } "
59
59
testRuntime project(path : xpackModule(' sql:jdbc' ), configuration : ' nodeps' )
60
60
testRuntime xpackProject(' plugin:sql:sql-client' )
61
61
You can’t perform that action at this time.
0 commit comments