diff --git a/maven/src/main/java/com/buschmais/jqassistant/scm/maven/AbstractMojo.java b/maven/src/main/java/com/buschmais/jqassistant/scm/maven/AbstractMojo.java index c81a0cdb1..8634b5abe 100644 --- a/maven/src/main/java/com/buschmais/jqassistant/scm/maven/AbstractMojo.java +++ b/maven/src/main/java/com/buschmais/jqassistant/scm/maven/AbstractMojo.java @@ -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) {