Skip to content
Merged
Changes from 1 commit
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
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@
<dependency>
<groupId>com.vmlens</groupId>
<artifactId>api</artifactId>
<version>1.2.14</version>
<version>1.2.15</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 and avoid potential version mismatches, consider defining the VMLens version as a property in the <properties> section and using it for both this dependency and the vmlens-maven-plugin (line 354). This is a common practice in this pom.xml for other dependencies like Mockito.

For example:

  1. Add <vmlens.version>1.2.15</vmlens.version> to the <properties> block at the top of the file.
  2. Use ${vmlens.version} for the version here and for the plugin.

<scope>test</scope>
</dependency>

Expand Down Expand Up @@ -351,7 +351,7 @@
<plugin>
<groupId>com.vmlens</groupId>
<artifactId>vmlens-maven-plugin</artifactId>
<version>1.2.14</version>
<version>1.2.15</version>
<executions>
<execution>
<id>test</id>
Expand Down
Loading