-
Notifications
You must be signed in to change notification settings - Fork 38.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Upgrade to Gradle 7.2 #26870
Comments
I've got a draft commit for this, fixing quite a few things in our build. The I'm moving this back to the backlog and marking it as blocked in the meantime. |
In the meantime, Gradle 7.1 has been released. |
I've got a draft commit for this issue here. The build runs fine but the dokka generation takes 10+min on my laptop and the result is quite large (almost 40MB). I'm wondering if I've messed up the configuration or if there's a way to limit the scope here so that the plugin has less things to consider. The new version of the plugin simplifies our setup quite a bit. @sdeleuze Could you have a look here? You can locally trigger the generation with: |
This commit upgrades Gradle to 7.2. Gradle configuration names are updated accordingly. This also upgrades Gradle build plugins. See gh-26870
|
Thanks, @quaff. We've noticed those warnings as well. Reopening to address those two warnings. I'll address the first one for |
This upgrade avoids warnings about the following on Gradle 7.1+. - The Report.destination property has been deprecated. - The JavaExec.main property has been deprecated. See spring-projectsgh-26870
This comment has been minimized.
This comment has been minimized.
This upgrade avoids warnings about the following on Gradle 7.1+. - The Report.destination property has been deprecated. - The JavaExec.main property has been deprecated. See spring-projectsgh-26870
This upgrade avoids the warning about the following on Gradle 7.1+. - The SourceDirectorySet.outputDir property has been deprecated. Closes spring-projectsgh-26870
The migration to Gradle 7.2 resulted in a regression for our Eclipse IDE support: several projects ended up with recursive classpath entries in their generated .classpath files which prevent those projects from being built within Eclipse. This commit addresses this issue with a solution that may well be a "hack". Nonetheless, a working hack is better than not being able to import into Eclipse at all. See gh-26870
This commit upgrades Gradle to 7.2. Gradle configuration names are updated accordingly. This also upgrades Gradle build plugins. See spring-projectsgh-26870
This upgrade avoids warnings about the following on Gradle 7.1+. - The Report.destination property has been deprecated. - The JavaExec.main property has been deprecated. See spring-projectsgh-26870
This upgrade avoids the warning about the following on Gradle 7.1+. - The SourceDirectorySet.outputDir property has been deprecated. Closes spring-projectsgh-26870
The migration to Gradle 7.2 resulted in a regression for our Eclipse IDE support: several projects ended up with recursive classpath entries in their generated .classpath files which prevent those projects from being built within Eclipse. This commit addresses this issue with a solution that may well be a "hack". Nonetheless, a working hack is better than not being able to import into Eclipse at all. See spring-projectsgh-26870
Here is tasks I can remember
compile
runtime
testCompile
testRuntime
The text was updated successfully, but these errors were encountered: