forked from deephaven/deephaven-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUtil.gradle
28 lines (23 loc) · 865 Bytes
/
Util.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
plugins {
id 'java-library'
id 'io.deephaven.project.register'
}
dependencies {
api project(':engine-query-constants')
implementation project(':Base')
implementation project(':log-factory')
implementation libs.jdom2
implementation libs.commons.compress
implementation project(':DataStructures')
implementation project(':Configuration')
testRuntimeOnly project(path: ':configs')
testRuntimeOnly project(path: ':test-configs')
testRuntimeOnly project(':log-to-slf4j')
testRuntimeOnly libs.slf4j.simple
testImplementation project(':base-test-utils')
testImplementation project(path: ':Base', configuration: 'tests')
testImplementation platform(libs.junit.bom)
testImplementation libs.junit.jupiter
testRuntimeOnly libs.junit.jupiter.engine
testRuntimeOnly libs.junit.platform.launcher
}