-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
28 lines (22 loc) · 740 Bytes
/
build.gradle
File metadata and controls
28 lines (22 loc) · 740 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
plugins {
id 'java'
}
group 'me.sizableshrimp.adventofcode'
version '0.1.0'
targetCompatibility = sourceCompatibility = 15
repositories {
mavenCentral()
}
dependencies {
implementation 'org.projectlombok:lombok:1.18.16'
annotationProcessor 'org.projectlombok:lombok:1.18.16'
implementation 'one.util:streamex:0.7.3'
// implementation 'com.fasterxml.jackson.core:jackson-databind:2.12.0'
testImplementation 'org.openjdk.jmh:jmh-core:1.26'
testAnnotationProcessor 'org.openjdk.jmh:jmh-generator-annprocess:1.26'
}
task jmh(type: JavaExec, dependsOn: testClasses) {
group = 'build'
main = 'org.openjdk.jmh.Main'
classpath = sourceSets.test.compileClasspath + sourceSets.test.runtimeClasspath
}