Skip to content

[23.x] Sync dependencies with latest odlparent#2594

Merged
ihrasko merged 4 commits intoPANTHEONtech:23.xfrom
Tobianas:23.x_latest_odlparent
Mar 13, 2026
Merged

[23.x] Sync dependencies with latest odlparent#2594
ihrasko merged 4 commits intoPANTHEONtech:23.xfrom
Tobianas:23.x_latest_odlparent

Conversation

@Tobianas
Copy link
Contributor

No description provided.

Adopt:
- odlparent-14.1.7
- infrautils-7.0.10
- yangtools-14.0.21

JIRA: LIGHTY-418
Signed-off-by: tobias.pobocik <tobias.pobocik@pantheon.tech>
(cherry picked from commit 60e3abf)
https://checkstyle.org/releasenotes.html#Release_12.1.1

JIRA: LIGHTY-418
Signed-off-by: tobias.pobocik <tobias.pobocik@pantheon.tech>
(cherry picked from commit 0345b3c)
https://docs.junit.org/5.14.1/release-notes/#release-notes-5.14.1

JIRA: LIGHTY-418
Signed-off-by: tobias.pobocik <tobias.pobocik@pantheon.tech>
(cherry picked from commit bba097b)
https://github.com/apache/maven-jar-plugin/releases/tag/maven-jar-plugin-3.5.0

JIRA: LIGHTY-418
Signed-off-by: tobias.pobocik <tobias.pobocik@pantheon.tech>
(cherry picked from commit 9ed6eee)
@gemini-code-assist
Copy link

Summary of Changes

Hello, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

This pull request focuses on a series of dependency and plugin version updates across the project's core modules. The primary goal is to synchronize the project with the latest stable releases of its upstream components, including odlparent, infrautils, yangtools, and various Maven plugins and build tools. This ensures the project benefits from the latest bug fixes, security patches, and performance improvements, contributing to overall stability and maintainability.

Highlights

  • Dependency Updates: Updated odlparent from version 14.1.6 to 14.1.7, infrautils-artifacts from 7.1.9 to 7.1.10, yangtools-artifacts from 14.0.20 to 14.0.21, and junit-bom from 5.14.0 to 5.14.1 in lighty-core/dependency-versions/pom.xml.
  • Plugin Updates: Updated yang-maven-plugin and its binding-codegen dependency from version 14.0.20 to 14.0.21 in lighty-core/lighty-binding-parent/pom.xml.
  • Build Tool Updates: Updated maven-jar-plugin from version 3.4.2 to 3.5.0, checkstyle from 12.1.1 to 12.1.2, and odlparent checkstyle and spotbugs dependencies from 14.1.6 to 14.1.7 in lighty-core/lighty-parent/pom.xml.

🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console.

Changelog
  • lighty-core/dependency-versions/pom.xml
    • Updated odlparent version to 14.1.7.
    • Updated infrautils-artifacts version to 7.1.10.
    • Updated yangtools-artifacts version to 14.0.21.
    • Updated junit-bom version to 5.14.1.
  • lighty-core/lighty-binding-parent/pom.xml
    • Updated yang-maven-plugin version to 14.0.21.
    • Updated binding-codegen dependency version to 14.0.21.
  • lighty-core/lighty-parent/pom.xml
    • Updated maven-jar-plugin version to 3.5.0.
    • Updated checkstyle version to 12.1.2.
    • Updated odlparent checkstyle version to 14.1.7.
    • Updated odlparent spotbugs version to 14.1.7.
Activity
  • No specific activity has been recorded for this pull request yet.
Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point by creating a comment using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for GitHub and other Google products, sign up here.

You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

Copy link

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request updates several dependencies to their latest versions, including odlparent, infrautils, yangtools, and some Maven plugins. The version bumps are applied consistently across the relevant pom.xml files. I've added a few suggestions to use Maven properties for repeated version numbers to improve maintainability.

Note: Security Review has been skipped due to the limited scope of the PR.

<groupId>org.opendaylight.yangtools</groupId>
<artifactId>yang-maven-plugin</artifactId>
<version>14.0.20</version>
<version>14.0.21</version>

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

To improve maintainability and avoid hardcoding the same version in multiple places, consider defining a property for the yangtools version in the <properties> section and using it here. For example, you could add <yangtools.version>14.0.21</yangtools.version>.

Suggested change
<version>14.0.21</version>
<version>${yangtools.version}</version>

<groupId>org.opendaylight.yangtools</groupId>
<artifactId>binding-codegen</artifactId>
<version>14.0.20</version>
<version>14.0.21</version>

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Use the yangtools.version property here as well for consistency.

Suggested change
<version>14.0.21</version>
<version>${yangtools.version}</version>

<groupId>org.opendaylight.odlparent</groupId>
<artifactId>checkstyle</artifactId>
<version>14.1.6</version>
<version>14.1.7</version>

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

To improve maintainability and avoid hardcoding the same version in multiple places, consider defining a property for the odlparent version in the <properties> section and using it here and for the spotbugs dependency. For example, you could add <odlparent.version>14.1.7</odlparent.version>.

Suggested change
<version>14.1.7</version>
<version>${odlparent.version}</version>

<groupId>org.opendaylight.odlparent</groupId>
<artifactId>spotbugs</artifactId>
<version>14.1.6</version>
<version>14.1.7</version>

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Use the odlparent.version property here as well for consistency.

Suggested change
<version>14.1.7</version>
<version>${odlparent.version}</version>

@Tobianas Tobianas changed the title 23.x Synd dependencies with latest odlparent [23.x] Sync dependencies with latest odlparent Mar 12, 2026
@ihrasko ihrasko merged commit 357bbc9 into PANTHEONtech:23.x Mar 13, 2026
5 of 6 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants