-
Notifications
You must be signed in to change notification settings - Fork 9
Hellraise #86
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
base: master
Are you sure you want to change the base?
Hellraise #86
Conversation
Fixed Gradle dependencies problem using old version of gradle Functional version, tests passed successfully
- Migrated build system from **Maven** to **Gradle** - Dependencies updated to the latest compatible versions - Partial fixes applied to unit and integration tests
|
|
vsbogd
left a comment
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 see few changes (some of which are massive) in this PR:
- migration to Gradle
- migration to JVM 21
- migration to new libraries versions
- fixing issues (not sure whether they are related to changes above or not)
Good practice is to deliver such changes one by one in separate PRs to be able review and discuss them carefully. When a single PR contains all changes then it is difficult to understand which changes in code are caused by which migration. Also some of migrations are questionable. For instance I don't see what is the reason of migration to Gradle build system.
| <version>${protobuf.version}</version> | ||
| <version>4.31.1</version> |
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.
This version is shared across few locations Please update properties above instead of updating specific version tags.
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.
What is this script for?
Changes