-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
40 lines (32 loc) · 1.06 KB
/
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
39
40
plugins {
id 'java'
}
group = 'pl.gomati'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
allprojects {
ext {
//DEPENDENCY VERSIONS
lombokVersion = '1.18.32'
mockitoJupiterVersion = '5.10.0'
jUnitVersion = '5.9.1'
}
}
dependencies {
//lombok
compileOnly group: 'org.projectlombok', name: 'lombok', version: lombokVersion
testCompileOnly group: 'org.projectlombok', name: 'lombok', version: lombokVersion
annotationProcessor group: 'org.projectlombok', name: 'lombok', version: lombokVersion
testAnnotationProcessor group: 'org.projectlombok', name: 'lombok', version: lombokVersion
// functional java
implementation 'com.oath.cyclops:cyclops:10.4.1'
//tests
testImplementation group: 'org.mockito', name: 'mockito-core', version: mockitoJupiterVersion
testImplementation group: 'org.mockito', name: 'mockito-junit-jupiter', version: mockitoJupiterVersion
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter', version: jUnitVersion
}
test {
useJUnitPlatform()
}