### Plugin Management and Plugins Block Configuration Source: https://github.com/gtnewhorizons/gtnhgradle/blob/master/README.MD Configure the pluginManagement repositories and apply the GTNH settings convention plugin. Keep the old blowdryerSetup as-is. ```groovy pluginManagement { repositories { maven { // RetroFuturaGradle name "GTNH Maven" url "https://nexus.gtnewhorizons.com/repository/public/" mavenContent { includeGroup("com.gtnewhorizons") includeGroupByRegex("com\.gtnewhorizons\..+") } } gradlePluginPortal() mavenCentral() mavenLocal() } } plugins { id 'com.gtnewhorizons.gtnhsettingsconvention' version '1.0.7' } ``` -------------------------------- ### Disabling Git Version Detection Source: https://github.com/gtnewhorizons/gtnhgradle/blob/master/README.MD Disable git-based version detection. Ensure the project.version is set manually. ```properties # Disable git-based version detection, make sure to set project.version to a sensible value yourself gtnh.modules.gitVersion = false ``` -------------------------------- ### Disabling Modern Java Utilities Source: https://github.com/gtnewhorizons/gtnhgradle/blob/master/README.MD Disables lwjgl3ify-based utilities for working with and running modern Java versions. ```properties # Disables lwjgl3ify-based utilities for working with and running with modern Java versions gtnh.modules.modernJava = false ``` -------------------------------- ### Disabling Code Style Checks Source: https://github.com/gtnewhorizons/gtnhgradle/blob/master/README.MD Disable all GTNH code style checks, including Spotless autoformatting and CheckStyle rules. ```properties # Disable all GTNH code style checks (like Spotless autoformatting, CheckStyle rules, and any future additions) gtnh.modules.codeStyle = false ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.