This is an automated email from the ASF dual-hosted git repository.
vladimirsitnikov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/calcite.git
The following commit(s) were added to refs/heads/master by this push:
new 4a8e105 [CALCITE-3888] Switch avatica-server to be test dependency
for core
4a8e105 is described below
commit 4a8e105933a7638bb672afca07ac6da380671edc
Author: Jiahui Jiang <[email protected]>
AuthorDate: Mon Mar 30 22:21:18 2020 -0400
[CALCITE-3888] Switch avatica-server to be test dependency for core
`avatica-server` was a test only dependencies for `calcite-core`.
But during the switch to gradle in 1.22.0, it's configured to be an
implementation dependency.
This PR switches it back to testImplementation only.
---
core/build.gradle.kts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/core/build.gradle.kts b/core/build.gradle.kts
index caa7df2..ef0b761 100644
--- a/core/build.gradle.kts
+++ b/core/build.gradle.kts
@@ -52,7 +52,6 @@ dependencies {
implementation("com.yahoo.datasketches:sketches-core")
implementation("commons-codec:commons-codec")
implementation("net.hydromatic:aggdesigner-algorithm")
- implementation("org.apache.calcite.avatica:avatica-server")
implementation("org.apache.commons:commons-dbcp2")
implementation("org.apache.commons:commons-lang3")
implementation("commons-io:commons-io")
@@ -69,6 +68,7 @@ dependencies {
testImplementation("net.hydromatic:foodmart-queries")
testImplementation("net.hydromatic:quidem")
testImplementation("net.hydromatic:scott-data-hsqldb")
+ testImplementation("org.apache.calcite.avatica:avatica-server")
testImplementation("org.apache.commons:commons-pool2")
testImplementation("log4j:log4j") {
because("SqlHintsConverterTest needs to implement a MockAppender")