Skip to content

Commit

Permalink
Backport to branch(3.10) : Add dependencies for data loader project (#…
Browse files Browse the repository at this point in the history
…2379)

Co-authored-by: Peckstadt Yves <[email protected]>
  • Loading branch information
feeblefakie and ypeckstadt authored Dec 4, 2024
1 parent 36106b5 commit c0e96aa
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
2 changes: 2 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@ subprojects {
shadowPluginVersion = '7.1.2'
// Make JDK11+ use the same version as JDK8 uses
googleJavaFormatVersion = '1.7'
commonsIoVersion = '2.16.1'
lombokVersion = '1.18.34'
}

repositories {
Expand Down
15 changes: 8 additions & 7 deletions data-loader/build.gradle
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
subprojects {
group = "scalardb.dataloader"

ext {
apacheCommonsLangVersion = '3.14.0'
apacheCommonsIoVersion = '2.16.1'
}
dependencies {
// AssertJ
testImplementation("org.assertj:assertj-core:${assertjVersion}")
Expand All @@ -16,12 +11,18 @@ subprojects {
testImplementation("org.junit.jupiter:junit-jupiter-engine:${junitVersion}")

// Apache Commons
implementation("org.apache.commons:commons-lang3:${apacheCommonsLangVersion}")
implementation("commons-io:commons-io:${apacheCommonsIoVersion}")
implementation("org.apache.commons:commons-lang3:${commonsLangVersion}")
implementation("commons-io:commons-io:${commonsIoVersion}")

// Mockito
testImplementation "org.mockito:mockito-core:${mockitoVersion}"
testImplementation "org.mockito:mockito-inline:${mockitoVersion}"
testImplementation "org.mockito:mockito-junit-jupiter:${mockitoVersion}"

// Lombok
compileOnly "org.projectlombok:lombok:${lombokVersion}"
annotationProcessor "org.projectlombok:lombok:${lombokVersion}"
testCompileOnly "org.projectlombok:lombok:${lombokVersion}"
testAnnotationProcessor "org.projectlombok:lombok:${lombokVersion}"
}
}

0 comments on commit c0e96aa

Please sign in to comment.