Eli Graber
03/06/2025, 7:25 AMgradle/wrapper/gradle-wrapper.properties
, update gradle/wrapper/gradle-wrapper.jar
, and update `gradlew`/`gradlew.bat`.
My project is rather large, so running that task causes their job to fail with an OOM. Is there any way to run a "lightweight" wrapper task so my whole project doesn't have tobe configured, etc?Eli Graber
03/06/2025, 7:25 AMJendrik Johannes
03/06/2025, 7:55 AM// In case of 'wrapper' our project should appear empty
if (gradle.startParameter.taskNames == listOf("wrapper")) {
rootProject.buildFileName = "does-not-exist.gradle"
// do not do all your 'include', so the project has no subprojects
}
Vampire
03/06/2025, 8:26 AMephemient
03/06/2025, 8:33 AMEli Graber
03/06/2025, 9:27 AM