Skip to content
Merged
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 pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.10.1</version>
<version>2.13.2</version>

Choose a reason for hiding this comment

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

medium

For better maintainability and consistency, it's a good practice to manage dependency versions in the <properties> section. This pom.xml already does this for other versions like java.version.

Please add a new property to the <properties> section:

<gson.version>2.13.2</gson.version>

Then, use this property to specify the version.

Suggested change
<version>2.13.2</version>
<version>${gson.version}</version>

</dependency>

<dependency>
Expand Down
Loading