-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
28 lines (21 loc) · 789 Bytes
/
Copy pathbuild.gradle
File metadata and controls
28 lines (21 loc) · 789 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 'com.apulbere'
version '1.0-SNAPSHOT'
sourceCompatibility = 12
repositories {
mavenCentral()
}
test {
useJUnitPlatform()
}
dependencies {
annotationProcessor group: 'org.projectlombok', name: 'lombok', version: '1.18.8'
implementation group: 'org.projectlombok', name: 'lombok', version: '1.18.8'
testCompile group: 'org.hamcrest', name: 'hamcrest', version: '2.1'
testCompile group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: '5.5.0-M1'
testCompile group: 'org.junit.jupiter', name: 'junit-jupiter-params', version: '5.5.0-M1'
testAnnotationProcessor group: 'org.projectlombok', name: 'lombok', version: '1.18.8'
testImplementation group: 'org.projectlombok', name: 'lombok', version: '1.18.8'
}