Gretty needs to be updated to support Gradle 7.
Error:
An exception occurred applying plugin request [id: ‘org.gretty’, version: ‘3.0.4’]
Failed to apply plugin ‘org.gretty’.
Cannot run Project.afterEvaluate(Closure) when the project is already evaluated.
From Gradle documentation:
Calling Project.afterEvaluate() after project evaluation is now an error
Gradle 6.x warns users about the wrong behavior and ignores the target action in this scenario.
Starting from 7.0 the same case will produce an error.
Plugins and build scripts should be adjusted to call afterEvaluate only at configuration time.
If you have such a build failure and the related afterEvaluate statement is declared in your build sources then you can simply delete it.
If afterEvaluate is declared in a plugin then report the issue to the plugin maintainers.