forked from deephaven/bencher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
40 lines (31 loc) · 933 Bytes
/
build.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
37
38
39
40
plugins {
id 'java'
id 'application'
}
group 'io.deephaven'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
implementation 'com.googlecode.json-simple:json-simple:1.1.1'
implementation 'com.google.guava:guava:31.0.1-jre'
implementation 'org.apache.commons:commons-text:1.9'
// https://search.maven.org/search?q=g:io.deephaven
implementation 'io.deephaven:deephaven-java-client-session:0.9.0'
compileOnly 'io.grpc:grpc-api:1.42.1'
runtimeOnly 'io.grpc:grpc-netty:1.42.1'
implementation project(':datagen')
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0'
}
test {
useJUnitPlatform()
}
application {
mainClass = 'io.deephaven.bencher.BencherApp'
applicationDefaultJvmArgs = [
'-Doutput.prefix.path=data',
'-Djobs.prefix.path=jobs'
]
}