-
Notifications
You must be signed in to change notification settings - Fork 19
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
Relocate antlr-runtime #54
Conversation
Codecov Report
@@ Coverage Diff @@
## main #54 +/- ##
=========================================
Coverage 79.92% 79.92%
Complexity 1753 1753
=========================================
Files 97 97
Lines 7611 7611
Branches 1117 1117
=========================================
Hits 6083 6083
Misses 1021 1021
Partials 507 507
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
generated-antlr/build.gradle.kts
Outdated
dependencies { | ||
include(dependency("org.antlr:antlr4-runtime")) | ||
} | ||
relocate("org.antlr.v4.runtime", "org.projectnessie.cel.parser.gen.antlr.v4.runtime") |
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.
Does it make sense if we keep the shaded package name as it is and add shaded
prefix (something similar to Iceberg)? e.g: org.projectnessie.cel.shaded.org.antlr.v4.runtime
. In order to distinguish that is shaded from org.antlr.v4.runtime
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.
Yup - updated the package name
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
Fixes #52