|
|
@ -10,10 +10,6 @@ repositories { |
|
|
|
jcenter() |
|
|
|
} |
|
|
|
|
|
|
|
dependencies { |
|
|
|
testCompile group: 'junit', name: 'junit', version: '4.12' |
|
|
|
} |
|
|
|
|
|
|
|
subprojects { |
|
|
|
|
|
|
|
apply plugin: 'java' |
|
|
@ -23,11 +19,19 @@ subprojects { |
|
|
|
jcenter() |
|
|
|
} |
|
|
|
|
|
|
|
test { |
|
|
|
useJUnitPlatform() |
|
|
|
} |
|
|
|
|
|
|
|
dependencies { |
|
|
|
compileOnly 'org.projectlombok:lombok:1.18.16' |
|
|
|
annotationProcessor 'org.projectlombok:lombok:1.18.16' |
|
|
|
|
|
|
|
testCompileOnly 'org.projectlombok:lombok:1.18.16' |
|
|
|
testAnnotationProcessor 'org.projectlombok:lombok:1.18.16' |
|
|
|
|
|
|
|
testImplementation('org.junit.jupiter:junit-jupiter:5.7.0') |
|
|
|
testImplementation('org.mockito:mockito-core:3.7.0') |
|
|
|
testImplementation('org.hamcrest:hamcrest-core:2.2') |
|
|
|
} |
|
|
|
} |