-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
41 lines (31 loc) · 905 Bytes
/
build.gradle
File metadata and controls
41 lines (31 loc) · 905 Bytes
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
plugins {
id 'java'
id "me.champeau.jmh" version "0.6.6"
}
group 'com.aivean.recarr'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
mavenLocal()
}
compileJava.dependsOn ':record-array:build'
compileTestJava.dependsOn ':record-array:build'
compileJmhJava.dependsOn ':record-array:build'
dependencies {
implementation project(':record-array')
annotationProcessor fileTree(dir: 'record-array/build/libs', include: '*.jar')
testImplementation 'org.testng:testng:7.4.0'
jmh 'org.openjdk.jmh:jmh-core:1.32'
jmh 'org.openjdk.jmh:jmh-generator-annprocess:1.32'
jmhImplementation project(':record-array')
jmhAnnotationProcessor fileTree(dir: 'record-array/build/libs', include: '*.jar')
}
jmh {
excludes = ['.*BenchmarkASM.*']
}
if (project.hasProperty('jmhInclude')) {
jmh.setIncludes([project.property('jmhInclude')])
}
test {
useTestNG()
}