-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
34 lines (27 loc) · 724 Bytes
/
build.gradle
File metadata and controls
34 lines (27 loc) · 724 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
plugins {
id 'java-library'
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
allprojects {
group = "${group}"
version = "${version}"
}
sourceCompatibility = "${javaVersion}"
targetCompatibility = "${javaVersion}"
dependencies {
compileOnly 'org.projectlombok:lombok:'+"${lombookVersion}"
annotationProcessor 'org.projectlombok:lombok:'+"${lombookVersion}"
testCompile 'org.junit.jupiter:junit-jupiter-api:'+"${junitJupiterVersion}"
testCompile 'org.junit.jupiter:junit-jupiter-engine:'+"${junitJupiterVersion}"
testImplementation 'org.assertj:assertj-core:'+"${assertJVersion}"
}
test {
useJUnitPlatform()
}