-
Notifications
You must be signed in to change notification settings - Fork 0
Prepare for v4 #7
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?
Conversation
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.
Pull Request Overview
This PR renames the Java package namespace from no.fint.model to no.novari.model and prepares the CI workflow for v4 by upgrading Java and GitHub Actions versions.
- Refactored package declarations across all
Fint*model interfaces and classes. - Removed unused imports in
FintMainObject.java. - Updated
.github/workflows/publish.yamlto use JDK 21 and bump action versions.
Reviewed Changes
Copilot reviewed 12 out of 14 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| src/main/java/no/novari/model/FintRelation.java | Updated package declaration to no.novari.model. |
| src/main/java/no/novari/model/FintReference.java | Updated package declaration to no.novari.model. |
| src/main/java/no/novari/model/FintObject.java | Updated package declaration to no.novari.model. |
| src/main/java/no/novari/model/FintMultiplicity.java | Updated package declaration to no.novari.model. |
| src/main/java/no/novari/model/FintModelObject.java | Updated package declaration to no.novari.model. |
| src/main/java/no/novari/model/FintMainObject.java | Updated package declaration and removed unused imports. |
| src/main/java/no/novari/model/FintIdentifikator.java | Updated package declaration to no.novari.model. |
| src/main/java/no/novari/model/FintComplexDatatypeObject.java | Updated package declaration to no.novari.model. |
| src/main/java/no/novari/model/FintAbstractObject.java | Updated package declaration to no.novari.model. |
| .github/workflows/publish.yaml | Bumped actions versions, switched to JDK 21. |
Files not reviewed (2)
- Jenkinsfile: Language not supported
- gradle/wrapper/gradle-wrapper.properties: Language not supported
Comments suppressed due to low confidence (2)
.github/workflows/publish.yaml:19
- The
adoptdistribution is deprecated inactions/setup-java@v4; update this totemurinto align with the action’s supported distributions.
distribution: 'adopt'
src/main/java/no/novari/model/FintRelation.java:1
- Renaming the package from
no.fint.modeltono.novari.modelis a breaking change; ensure module declarations or documentation reflect this update and provide migration guidance for existing consumers.
package no.novari.model;
No description provided.