Skip to content

Commit

Permalink
Merge pull request #20530 from glefloch/fix/min-gradle-version
Browse files Browse the repository at this point in the history
Set mininal gradle version to 6.1
  • Loading branch information
aloubyansky authored Oct 4, 2021
2 parents 576a8b1 + e2634b2 commit cdfc995
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -271,8 +271,8 @@ private void registerModel() {
}

private void verifyGradleVersion() {
if (GradleVersion.current().compareTo(GradleVersion.version("5.0")) < 0) {
throw new GradleException("Quarkus plugin requires Gradle 5.0 or later. Current version is: " +
if (GradleVersion.current().compareTo(GradleVersion.version("6.1")) < 0) {
throw new GradleException("Quarkus plugin requires Gradle 6.1 or later. Current version is: " +
GradleVersion.current());
}
}
Expand Down

0 comments on commit cdfc995

Please sign in to comment.