Skip to content

Commit

Permalink
#580 raised Maven minimum version to 3.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
DirkMahler committed Aug 8, 2024
1 parent c85645d commit ed471df
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,8 @@ private static String createExecutionKey(MojoExecution mojoExecution) {

@Override
public final void execute() throws MojoExecutionException, MojoFailureException {
if (!runtimeInformation.isMavenVersion("[3.5,)")) {
throw new MojoExecutionException("jQAssistant requires Maven 3.5.x or above.");
if (!runtimeInformation.isMavenVersion("[3.6.3,)")) {
throw new MojoExecutionException("jQAssistant requires Maven 3.6.3 or above.");
}
// Synchronize on this class as multiple instances of the plugin may exist in parallel builds
synchronized (AbstractMojo.class) {
Expand Down

0 comments on commit ed471df

Please sign in to comment.