Oleg Nenashev
03/21/2025, 10:42 AMLearn about the state of the Configuration Cache and ongoing work towards Gradle 9 and beyond, new Develocity solution page for Gradle Build Tool, upcoming webinars, and new blogs and videos by Gradle community members.
Silvio Giebl
03/31/2025, 3:33 PMpublishToMavenCentral
and publish<PublicationName>PublicationToMavenCentral
Louis Jacomet
04/08/2025, 8:45 AMOleg Nenashev
04/13/2025, 11:15 AMChris Lee
04/21/2025, 1:40 PMOleg Nenashev
04/23/2025, 2:58 PMOleg Nenashev
04/23/2025, 4:53 PMNur Syariza
05/07/2025, 2:26 PMA problem occurred configuring project ':gradle'.> A build operation failed. Could not move temporary workspace (C:\Users\LENOVO\.gradle\caches\8.10.2\transforms\2072417fc4efeafd12cfc28f127372c8-5882201f-8c9d-4eb4-9bf6-7a60c9ac716a) to immutable location (C:\Users\LENOVO\.gradle\caches\8.10.2\transforms\2072417fc4efeafd12cfc28f127372c8) > Could not move temporary workspace (C:\Users\LENOVO\.gradle\caches\8.10.2\transforms\2072417fc4efeafd12cfc28f127372c8-5882201f-8c9d-4eb4-9bf6-7a60c9ac716a) to immutable location (C:\Users\LENOVO\.gradle\caches\8.10.2\transforms\2072417fc4efeafd12cfc28f127372c8) * Try:
Run with --stacktrace option to get the stack trace.
Run with --info or --debug option to get more log output.
Run with --scan to get full insights.
Get more help at https://help.gradle.org.BUILD FAILED in 14s Running Gradle task 'assembleRelease'... 15.8s Gradle task assembleRelease failed with exit code 1 How to solve this?
Oleg Nenashev
05/14/2025, 11:32 AMysb33r
05/23/2025, 6:16 PMLouis Jacomet
05/26/2025, 9:22 AMValentin Rocher
05/28/2025, 6:58 AMOleg Nenashev
06/02/2025, 12:23 PMSam Gammon
06/02/2025, 6:22 PM--source X/--target X/--release X
• Kotlinc is not supported yet through Gradle
https://github.com/elide-dev/gradleOleg Nenashev
06/04/2025, 9:47 AMOleg Nenashev
06/23/2025, 8:36 AMZongle Wang
06/24/2025, 6:43 AMMartin
06/29/2025, 12:31 PMZongle Wang
07/02/2025, 11:06 AMJonathan Leitschuh
07/02/2025, 6:27 PMJendrik Johannes
07/02/2025, 9:36 PMid("org.gradlex.java-module-packaging") version "1.1"
Combine it with other org.gradlex
plugins for smooth dependency management and modern Java workflows to build self-contained, installable Java apps with the Java Module System and jpackage
. 🧩 📦 🚀
Special thanks to JabRef project for collaborating closely on this — they now rely on GradleX plugins to streamline their packaging.
👉 https://github.com/gradlex-org/java-module-packagingOleg Nenashev
07/22/2025, 8:31 PMOleg Nenashev
07/25/2025, 6:36 PMOleg Nenashev
07/29/2025, 3:02 PMPratikshit singh
08/05/2025, 10:10 AMZongle Wang
08/07/2025, 3:38 AMysb33r
08/10/2025, 10:16 AMterraform-docs
tool.
In the support of these tools via Gradle, it mostly out-does terragrunt
in the mgmt of infrastructure. And it does so in a very gradlesque way. With this plugin suite, you can.
• Manage multiple source sets of infrastructure.
• Declare (tf) workspaces per source set.
• Do 98% of all thing you would do with these tools, with a strong convention i.e. If you have source set called database
and you have a workspace declared as production
, you can apply it with a tfDatabaseApplyProduction
. Behind the scenes, Gradle will switch to the correct workspace, place all of the necessary secrets in the env, run in the correct source directory, and execute your tofu / terraform
command. Gone are all the accidental errors due to forgetting to change directories or switch workspaces!
• You can have dependencies between source sets. For instance, if you have have to ensure that all of your updates to your database infra has to occur before you update your data pipeline infra, you can declare that relationship in the DSL and Gradle ensures that tasks are executed in the correct order for both apply
and destroy
cases.
• You can even declare relationships between source sets in different subprojects and it will still allow the subprojects to be compatible with Isolated Projects and allow parallel execution where there are no relationships.
• You can run infrastructure tests as part of the check
lifecycle and get an HTML report.
P.S. If you thought that Gradle is just for building JVM apps, think again - it is still the best tool out there today for orchestrating the whole pipeline.ysb33r
08/14/2025, 8:00 AMOleg Nenashev
08/14/2025, 2:25 PM