-
Notifications
You must be signed in to change notification settings - Fork 23
Add an automatic module name to the MANIFEST #717
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
Conversation
WalkthroughFour module POMs were updated to add a maven-jar-plugin configuration that writes an Automatic-Module-Name into each JAR manifest (org.verapdf.feature.reporting, org.verapdf.metadata.fixer, org.verapdf.validation.model, org.verapdf.wcag.validation). The top-level Changes
Estimated code review effort🎯 2 (Simple) | ⏱️ ~10 minutes
Poem
Pre-merge checks and finishing touches✅ Passed checks (3 passed)
✨ Finishing touches🧪 Generate unit tests (beta)
📜 Recent review detailsConfiguration used: CodeRabbit UI Review profile: CHILL Plan: Pro 📒 Files selected for processing (5)
🚧 Files skipped from review as they are similar to previous changes (2)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (3)
🔇 Additional comments (3)
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.
Actionable comments posted: 0
🧹 Nitpick comments (1)
validation-model/pom.xml (1)
77-89: Automatic-Module-Name configuration is correct; version management should be addressed codebase-wide.The Automatic-Module-Name metadata addition is valid and follows Java 9+ module naming conventions. However, verification confirms that the maven-jar-plugin lacks version management in the parent POM—a pattern affecting four modules: validation-model, feature-reporting, metadata-fixer, and wcag-validation. While this change doesn't introduce the issue, consider adding
<version>3.3.0</version>(or the latest stable version) to all four modules' maven-jar-plugin configurations to ensure reproducible builds, or define it centrally in the parent's<pluginManagement>section.
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (4)
feature-reporting/pom.xml(1 hunks)metadata-fixer/pom.xml(1 hunks)validation-model/pom.xml(1 hunks)wcag-validation/pom.xml(1 hunks)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (5)
- GitHub Check: Codacy Static Code Analysis
- GitHub Check: Checkout and Build (25)
- GitHub Check: Checkout and Build (11)
- GitHub Check: Checkout and Build (17)
- GitHub Check: Checkout and Build (8)
🔇 Additional comments (3)
feature-reporting/pom.xml (1)
78-92: Module name configuration is accurate and consistent.The
org.verapdf.feature.reportingmodule name is correctly configured and aligns with the module's purpose and artifact ID. Configuration structure matches the pattern applied across other modules in this PR.wcag-validation/pom.xml (1)
66-78: WCAG module name configuration is correct.The
org.verapdf.wcag.validationmodule name properly identifies this module for Java 9+ modularity support and is consistently formatted with the other changes in this PR.metadata-fixer/pom.xml (1)
61-73: Metadata Fixer module name configuration is correct and consistent with other modules.The
org.verapdf.metadata.fixermodule name properly declares the module for Java 9+ support and follows the same configuration pattern as the other three modules in this PR.
Summary by CodeRabbit