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-spanner-executor/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@
<dependency>
<groupId>org.apache.maven.surefire</groupId>
<artifactId>surefire-junit4</artifactId>
<version>3.5.4</version>
<version>3.5.5</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 ensure that the Surefire and Failsafe plugins and their related dependencies are always on the same version, it's best to manage their version using a Maven property.

Please add the following property in the <properties> section:

<surefire.version>3.5.5</surefire.version>

Then, use this property for this dependency (as suggested) and also for the maven-failsafe-plugin on line 294, which is currently on version 3.5.4.

Suggested change
<version>3.5.5</version>
<version>${surefire.version}</version>

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

Expand Down