-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
38 lines (29 loc) · 796 Bytes
/
Copy pathbuild.gradle
File metadata and controls
38 lines (29 loc) · 796 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
plugins {
id 'java'
}
group 'group.name'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
//test
implementation 'org.junit.jupiter:junit-jupiter-api:5.10.2'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.10.2'
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.10.2'
implementation 'org.assertj:assertj-core:3.16.1'
//lombok
compileOnly 'org.projectlombok:lombok:1.18.32'
annotationProcessor 'org.projectlombok:lombok:1.18.32'
//logger
implementation 'org.slf4j:slf4j-api:1.7.30'
implementation 'org.slf4j:slf4j-simple:1.7.30'
}
test {
useJUnitPlatform()
}
compileJava {
options.compilerArgs += [
'--add-exports=jdk.compiler/com.sun.tools.javac.processing=ALL-UNNAMED'
]
}