-
Notifications
You must be signed in to change notification settings - Fork 82
[23.x] Sync dependencies with latest odlparent #2594
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -49,12 +49,12 @@ | |
| <plugin> | ||
| <groupId>org.opendaylight.yangtools</groupId> | ||
| <artifactId>yang-maven-plugin</artifactId> | ||
| <version>14.0.20</version> | ||
| <version>14.0.21</version> | ||
| <dependencies> | ||
| <dependency> | ||
| <groupId>org.opendaylight.yangtools</groupId> | ||
| <artifactId>binding-codegen</artifactId> | ||
| <version>14.0.20</version> | ||
| <version>14.0.21</version> | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| </dependency> | ||
| </dependencies> | ||
| <executions> | ||
|
|
||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -93,7 +93,7 @@ | |||||
| <plugin> | ||||||
| <groupId>org.apache.maven.plugins</groupId> | ||||||
| <artifactId>maven-jar-plugin</artifactId> | ||||||
| <version>3.4.2</version> | ||||||
| <version>3.5.0</version> | ||||||
| <configuration> | ||||||
| <archive> | ||||||
| <manifest> | ||||||
|
|
@@ -192,7 +192,7 @@ | |||||
| <groupId>com.puppycrawl.tools</groupId> | ||||||
| <artifactId>checkstyle</artifactId> | ||||||
| <!-- This should match the dependency management on com.puppycrawl.tools:checkstyle above --> | ||||||
| <version>12.1.1</version> | ||||||
| <version>12.1.2</version> | ||||||
| </dependency> | ||||||
| <dependency> | ||||||
| <groupId>com.github.sevntu-checkstyle</groupId> | ||||||
|
|
@@ -202,7 +202,7 @@ | |||||
| <dependency> | ||||||
| <groupId>org.opendaylight.odlparent</groupId> | ||||||
| <artifactId>checkstyle</artifactId> | ||||||
| <version>14.1.6</version> | ||||||
| <version>14.1.7</version> | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. To improve maintainability and avoid hardcoding the same version in multiple places, consider defining a property for the
Suggested change
|
||||||
| </dependency> | ||||||
| </dependencies> | ||||||
| </plugin> | ||||||
|
|
@@ -219,7 +219,7 @@ | |||||
| <dependency> | ||||||
| <groupId>org.opendaylight.odlparent</groupId> | ||||||
| <artifactId>spotbugs</artifactId> | ||||||
| <version>14.1.6</version> | ||||||
| <version>14.1.7</version> | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||||||
| </dependency> | ||||||
| <!-- The SpotBugs Maven plugin uses SLF4J-2 --> | ||||||
| <dependency> | ||||||
|
|
||||||
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.
To improve maintainability and avoid hardcoding the same version in multiple places, consider defining a property for the
yangtoolsversion in the<properties>section and using it here. For example, you could add<yangtools.version>14.0.21</yangtools.version>.