-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
60 lines (48 loc) · 1.36 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
group 'com.austinv11.bench'
version '1.0.0'
buildscript {
repositories {
jcenter()
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "me.champeau.gradle:jmh-gradle-plugin:0.3.1"
}
}
apply plugin: 'java'
apply plugin: "me.champeau.gradle.jmh"
sourceCompatibility = 1.8
repositories {
jcenter()
}
jmh {
jmhVersion = 1.12
warmupIterations = 10
iterations = 10
resultFormat = 'CSV'
verbosity = "EXTRA"
duplicateClassesStrategy = 'warn'
benchmarkMode = ['all']
// threads = 10
timeUnit = 'ms'
}
dependencies {
compileOnly 'org.openjdk.jmh:jmh-core:1.12'
compileOnly 'org.openjdk.jmh:jmh-generator-annprocess:1.12'
//http://fastutil.di.unimi.it/
compile 'it.unimi.dsi:fastutil:7.1.0'
//https://www.eclipse.org/collections/
compile 'org.eclipse.collections:eclipse-collections-api:8.0.0'
compile 'org.eclipse.collections:eclipse-collections:8.0.0'
//https://koloboke.com/
compile 'com.koloboke:koloboke-api-jdk8:1.0.0'
compile 'com.koloboke:koloboke-impl-jdk8:1.0.0'
//http://trove.starlight-systems.com/
compile 'net.sf.trove4j:trove4j:3.0.3'
//https://github.com/vsonnier/hppcrt
compile 'com.github.vsonnier:hppcrt:0.7.4'
//https://github.com/real-logic/Agrona
compile 'org.agrona:agrona:0.9.3'
}