-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
49 lines (39 loc) · 967 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
41
42
43
44
45
46
47
48
49
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'me.champeau.gradle:jmh-gradle-plugin:0.2.0'
classpath 'eu.appsatori:gradle-fatjar-plugin:0.3'
}
}
apply plugin: 'me.champeau.gradle.jmh'
apply plugin: 'eu.appsatori.fatjar'
group 'pl.robakowski'
version '0.1.0-SNAPSHOT'
apply plugin: 'java'
apply plugin: 'osgi'
apply plugin: 'maven'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
jcenter()
}
dependencies {
compile 'com.esotericsoftware:kryo:4.0.0'
jmh 'com.h2database:h2:1.4.192'
jmh 'org.hibernate:hibernate-entitymanager:5.2.3.Final'
jmh 'commons-io:commons-io:2.5'
testCompile 'junit:junit:4.12'
}
jmh {
include = '.*JoinAdd'
fork = 1
jvmArgs = '-Xmx10G -Xms2G'
iterations = 10
timeOnIteration = '1s'
warmup = '1s'
warmupIterations = 3
warmupForks = 0
threads = 4
}