forked from avavilau/query-test-task
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
38 lines (30 loc) · 779 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
plugins {
id "me.champeau.jmh" version "0.6.4"
id "io.freefair.lombok" version "6.0.0-m2"
id 'java'
}
apply plugin: 'java'
apply plugin: "io.freefair.lombok"
version '1.0-SNAPSHOT'
sourceCompatibility = '11'
repositories {
mavenCentral()
}
jmh {
jmhVersion = '1.31'
}
compileJava.options.encoding = 'UTF-8'
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
dependencies {
implementation 'it.unimi.dsi:fastutil-core:8.5.4'
implementation 'com.google.jimfs:jimfs:1.2'
implementation 'commons-io:commons-io:2.11.0'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.1'
testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.7.1'
testImplementation 'junit:junit:4.13.2'
}
test {
useJUnitPlatform()
}