Make MDK show info on how to switch to full gradle sources (#65)

* Switch MDK to use full gradle sources

This will significantly improve error reporting in the buildscripts and lead to a better development experience.

* Add wrapper task with comment for how to change it to bin

* Have bin be default with all documentation
This commit is contained in:
TelepathicGrunt 2024-06-16 07:32:29 -04:00 committed by GitHub
parent 6b865f6fd0
commit b457e9ecb2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 9 additions and 0 deletions

View file

@ -6,6 +6,15 @@ plugins {
id 'net.neoforged.gradle.userdev' version '7.0.142'
}
tasks.named('wrapper', Wrapper).configure {
// Define wrapper values here so as to not have to always do so when updating gradlew.properties.
// Switching this to Wrapper.DistributionType.ALL will download the full gradle sources that comes with
// documentation attached on cursor hover of gradle classes and methods. However, this comes with increased
// file size for Gradle. If you do switch this to ALL, run the Gradle wrapper task twice afterwards.
// (Verify by checking gradle/wrapper/gradle-wrapper.properties to see if distributionUrl now points to `-all`)
distributionType = Wrapper.DistributionType.BIN
}
version = mod_version
group = mod_group_id

Binary file not shown.