diff --git a/build.gradle b/build.gradle index 700db60..93ffb68 100644 --- a/build.gradle +++ b/build.gradle @@ -6,6 +6,15 @@ plugins { id 'net.neoforged.gradle.userdev' version '7.0.133' } +tasks.named('wrapper', Wrapper).configure { + // Define wrapper values here so as to not have to always do so when updating gradlew.properties + // Wrapper.DistributionType.ALL will download the full gradle sources that comes with documentation attached on + // cursor hover of gradle classes and methods. If you want a smaller gradle footprint on your machine, + // switch this to be Wrapper.DistributionType.BIN and then run the Gradle wrapper task twice. + // (Verify by checking gradle/wrapper/gradle-wrapper.properties to see if distributionUrl now points to `-bin`) + distributionType = Wrapper.DistributionType.ALL +} + version = mod_version group = mod_group_id diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar index d64cd49..e644113 100644 Binary files a/gradle/wrapper/gradle-wrapper.jar and b/gradle/wrapper/gradle-wrapper.jar differ