You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`net.minecraftforge.gradleutils.ide.automatic.sources`
- Enabled if set to `true`.
- Automatically downloads sources and JavaDocs on IntelliJ IDEA or
Eclipse.
`net.minecraftforge.gradleutils.compilation.defaults`
- Enabled if set to `true`.
- Sets all Java, Groovy, and Javadoc compilation tasks to encode in
UTF-8.
- Sets Groovy compilation tasks to compile with the Indy optimization.
- Sets a human-readable window title for Javadoc and Groovydoc tasks
using either `gradleutils.displayName` or `project.name`.
- Sets the apiNote, implNote, and implSpec tags for Javadoc tasks.
- Emits a warning if there is an enabled Groovydoc task but the default
charset is not UTF-8.
- It is a Gradle limitation that Groovydoc is invoked via its internal
ant builder rather than in a forked JVM.
if (task.enabled &&Charset.defaultCharset() !==StandardCharsets.UTF_8) {
199
+
project.logger.warn('WARNING: Current charset is not UTF-8 but {}! This will affect the output of Groovydoc task {}', Charset.defaultCharset(), task.name)
0 commit comments