This is an automated email from the ASF dual-hosted git repository.
ibessonov pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/ignite-3.git
The following commit(s) were added to refs/heads/main by this push:
new ed69cc7e01 IGNITE-17653 Fixed gradle build, dependencies updated to
match pom.xml (#1063)
ed69cc7e01 is described below
commit ed69cc7e01c3f2c20d6c2ac9f49556bdc256721f
Author: Mikhail <[email protected]>
AuthorDate: Thu Sep 8 11:14:27 2022 +0300
IGNITE-17653 Fixed gradle build, dependencies updated to match pom.xml
(#1063)
---
gradle/libs.versions.toml | 4 ++--
modules/api/build.gradle | 2 ++
modules/transactions/build.gradle | 1 +
3 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml
index db380ab318..6f8a56fd19 100644
--- a/gradle/libs.versions.toml
+++ b/gradle/libs.versions.toml
@@ -50,10 +50,10 @@ hamcrest="2.2"
hamcrestOptional="2.0.0"
hamcrestPath="1.0.1"
scalecube="2.6.12"
-calcite="1.30.0"
+calcite="1.31.0"
value="2.8.8"
janino="3.1.6"
-avatica="1.20.0"
+avatica="1.22.0"
jsonpath="2.4.0"
classgraph="4.8.110"
javassist="3.28.0-GA"
diff --git a/modules/api/build.gradle b/modules/api/build.gradle
index f2a3e00ade..b24c76b57f 100644
--- a/modules/api/build.gradle
+++ b/modules/api/build.gradle
@@ -27,6 +27,8 @@ dependencies {
testImplementation libs.hamcrest.core
testImplementation libs.hamcrest.optional
+ testImplementation libs.archunit.core
+ testImplementation libs.archunit.junit5
}
description = 'ignite-api'
diff --git a/modules/transactions/build.gradle
b/modules/transactions/build.gradle
index a2d02553ed..6234f09fc5 100644
--- a/modules/transactions/build.gradle
+++ b/modules/transactions/build.gradle
@@ -25,6 +25,7 @@ dependencies {
implementation project(':ignite-network-api')
implementation project(':ignite-network')
implementation project(':ignite-raft-client')
+ implementation project(':ignite-rocksdb-common')
implementation libs.jetbrains.annotations
implementation libs.fastutil.core