Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion google-cloud-bigquery-jdbc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.13</version>
<version>0.8.14</version>
Copy link
Contributor

Choose a reason for hiding this comment

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

medium

To improve maintainability, it's better to manage plugin versions using properties. This centralizes version numbers, making them easier to find and update consistently.

Consider defining a property for the JaCoCo version in your <properties> section and referencing it here:

<version>${jacoco.version}</version>

You would then need to add <jacoco.version>0.8.14</jacoco.version> to the <properties> block.

References
  1. Dependency and plugin versions in Maven pom.xml files should be defined as properties in the <properties> section and referenced in dependency or plugin declarations. This centralizes version management, improving maintainability and consistency.

</plugin>
</plugins>
</build>
Expand Down