File tree Expand file tree Collapse file tree 2 files changed +10
-7
lines changed
Expand file tree Collapse file tree 2 files changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -51,6 +51,8 @@ subprojects {
5151 shadowPluginVersion = ' 7.1.2'
5252 // Make JDK11+ use the same version as JDK8 uses
5353 googleJavaFormatVersion = ' 1.7'
54+ commonsIoVersion = ' 2.16.1'
55+ lombokVersion = ' 1.18.34'
5456 }
5557
5658 repositories {
Original file line number Diff line number Diff line change 11subprojects {
22 group = " scalardb.dataloader"
3-
4- ext {
5- apacheCommonsLangVersion = ' 3.14.0'
6- apacheCommonsIoVersion = ' 2.16.1'
7- }
83 dependencies {
94 // AssertJ
105 testImplementation(" org.assertj:assertj-core:${ assertjVersion} " )
@@ -16,12 +11,18 @@ subprojects {
1611 testImplementation(" org.junit.jupiter:junit-jupiter-engine:${ junitVersion} " )
1712
1813 // Apache Commons
19- implementation(" org.apache.commons:commons-lang3:${ apacheCommonsLangVersion } " )
20- implementation(" commons-io:commons-io:${ apacheCommonsIoVersion } " )
14+ implementation(" org.apache.commons:commons-lang3:${ commonsLangVersion } " )
15+ implementation(" commons-io:commons-io:${ commonsIoVersion } " )
2116
2217 // Mockito
2318 testImplementation " org.mockito:mockito-core:${ mockitoVersion} "
2419 testImplementation " org.mockito:mockito-inline:${ mockitoVersion} "
2520 testImplementation " org.mockito:mockito-junit-jupiter:${ mockitoVersion} "
21+
22+ // Lombok
23+ compileOnly " org.projectlombok:lombok:${ lombokVersion} "
24+ annotationProcessor " org.projectlombok:lombok:${ lombokVersion} "
25+ testCompileOnly " org.projectlombok:lombok:${ lombokVersion} "
26+ testAnnotationProcessor " org.projectlombok:lombok:${ lombokVersion} "
2627 }
2728}
You can’t perform that action at this time.
0 commit comments