-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
24 lines (19 loc) · 945 Bytes
/
build.gradle
File metadata and controls
24 lines (19 loc) · 945 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
description = ' EVM-based datastore/domain objects.'
dependencies {
implementation project(': bytes')
implementation project(': concurrent')
implementation project(': crypto')
implementation project(': concurrent-coroutines')
implementation project(': eth')
implementation project(': merkle-trie')
implementation project(': kv')
implementation project(': units')
implementation 'org.jetbrains.kotlinx: kotlinx-coroutines-core'
implementation 'org.apache.lucene: lucene-core'
implementation 'org.jetbrains.kotlin: kotlin-stdlib'
implementation 'org.slf4j: slf4j-api'
testImplementation project(': junit')
testImplementation 'org.bouncycastle: bcprov-jdk15on'
testImplementation 'org.junit.jupiter: junit-jupiter-api'
testImplementation 'org.junit.jupiter: junit-jupiter-params'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'