forked from deephaven/deephaven-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPlot.gradle
36 lines (28 loc) · 1.01 KB
/
Plot.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
29
30
31
32
33
34
35
36
plugins {
id 'io.deephaven.project.register'
id 'java-library'
}
dependencies {
api project(':engine-api')
implementation project(':Base')
implementation project(':engine-table')
implementation project(':engine-function')
implementation project(':engine-tuple')
implementation project(':log-factory')
implementation project(':Configuration')
api libs.groovy
implementation libs.groovy.json
compileOnly libs.autoservice
annotationProcessor libs.autoservice.compiler
compileOnly libs.javax.inject
implementation libs.guava
implementation libs.commons.lang3
testImplementation project(':engine-test-utils')
testImplementation TestTools.projectDependency(project, 'engine-time')
testImplementation project(path: ':Base', configuration: 'tests')
testRuntimeOnly project(':configs')
testRuntimeOnly project(':test-configs')
testRuntimeOnly project(':Numerics')
testRuntimeOnly project(':log-to-slf4j')
testRuntimeOnly libs.slf4j.simple
}