-
Notifications
You must be signed in to change notification settings - Fork 37
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add lombok dependencies to data loader project #2030
base: master
Are you sure you want to change the base?
Conversation
ext { | ||
apacheCommonsLangVersion = '3.14.0' | ||
apacheCommonsIoVersion = '2.16.1' | ||
lombokVersion = '1.18.34' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I noticed ext
block that defines dependency versions is written in the root build.gradle
. How about moving this block into it? It has commonsLangVersion = '3.14.0'
always.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good point. I will use the commonsLangVersions
. That said, I added the ext in this build.gradle file to separate some dependencies that only apply to the data-loader subprojects. I don't think Lombok will be used in other (sub)projects.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Left several minor comments. Other than that, LGTM! Thank you!
@@ -1,9 +1,11 @@ | |||
subprojects { | |||
group = "scalardb.dataloader" | |||
|
|||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unnecessary empty line?
@@ -23,5 +25,12 @@ subprojects { | |||
testImplementation "org.mockito:mockito-core:${mockitoVersion}" | |||
testImplementation "org.mockito:mockito-inline:${mockitoVersion}" | |||
testImplementation "org.mockito:mockito-junit-jupiter:${mockitoVersion}" | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ditto. Unnecessary empty line?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, thank you!
Description
The following PR adds the dependencies to the shared
build.gradle
file for all data loader sub-projects.Related issues and/or PRs
NA
Changes made
Checklist
[ ] I have commented my code, particularly in hard-to-understand areas.[ ] I have updated the documentation to reflect the changes.[ ] Any remaining open issues linked to this PR are documented and up-to-date (Jira, GitHub, etc.).[ ] Tests (unit, integration, etc.) have been added for the changes.Additional notes (optional)
NA
Release notes
NA