Skip to content

Commit

Permalink
Set mininal gradle version to 6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
glefloch committed Oct 4, 2021
1 parent e0d19f3 commit e2634b2
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 e2634b2

Please sign in to comment.