buildscript { repositories { maven { url = 'https://files.minecraftforge.net' } mavenCentral() // potential replacement in case of problems: https://dist.creeper.host/Sponge/maven maven { url = 'https://repo.spongepowered.org/maven/' } // used to download and compile dependencies from git repos maven { url 'https://jitpack.io' } gradlePluginPortal() } dependencies { // Note to self: Don't try to update ForgeGradle! // As of 11-27-2021 Mixins don't work on Gradle 7, // which the newer versions of ForgeGradle use classpath group: 'net.minecraftforge.gradle', name: 'ForgeGradle', version: '3+', changing: true classpath group: 'org.spongepowered', name: 'mixingradle', version: '0.7-SNAPSHOT' } } plugins { id "com.github.johnrengelman.shadow" version "4.0.4" } apply plugin: 'net.minecraftforge.gradle' apply plugin: 'org.spongepowered.mixin' // Only edit below this line, the above code adds and enables the necessary things for Forge to be setup. apply plugin: 'eclipse' apply plugin: 'maven-publish' version = 'a1.5.3' group = 'com.seibel.lod' archivesBaseName = 'Distant-Horizons_1.16.5' sourceCompatibility = targetCompatibility = compileJava.sourceCompatibility = compileJava.targetCompatibility = '1.8' // Need this here so eclipse task generates correctly. println('Java: ' + System.getProperty('java.version') + ' JVM: ' + System.getProperty('java.vm.version') + '(' + System.getProperty('java.vendor') + ') Arch: ' + System.getProperty('os.arch')) minecraft { // The mappings can be changed at any time, and must be in the following format. // snapshot_YYYYMMDD Snapshot are built nightly. // stable_# Stables are built at the discretion of the MCP team. // Use non-default mappings at your own risk. they may not always work. // Simply re-run your setup task after changing the mappings to update your workspace. mappings channel: 'official', version: '1.16.5' // makeObfSourceJar = false // an Srg named sources jar is made by default. uncomment this to disable. accessTransformer = file('src/main/resources/META-INF/accesstransformer.cfg') // Default run configurations. // These can be tweaked, removed, or duplicated as needed. runs { client { workingDirectory project.file('run') arg "-mixin.config=lod.mixins.json" // Recommended logging data for a userdev environment // The markers can be changed as needed. // "SCAN": For mods scan. // "REGISTRIES": For firing of registry events. // "REGISTRYDUMP": For getting the contents of all registries. property 'forge.logging.markers', 'REGISTRIES' // Recommended logging level for the console // You can set various levels here. // Please read: https://stackoverflow.com/questions/2031163/when-to-use-the-different-log-levels property 'forge.logging.console.level', 'debug' mods { examplemod { source sourceSets.main } } } server { workingDirectory project.file('run') arg "-mixin.config=lod.mixins.json" // Recommended logging data for a userdev environment // The markers can be changed as needed. // "SCAN": For mods scan. // "REGISTRIES": For firing of registry events. // "REGISTRYDUMP": For getting the contents of all registries. property 'forge.logging.markers', 'REGISTRIES' // Recommended logging level for the console // You can set various levels here. // Please read: https://stackoverflow.com/questions/2031163/when-to-use-the-different-log-levels property 'forge.logging.console.level', 'debug' mods { examplemod { source sourceSets.main } } } data { workingDirectory project.file('run') // Recommended logging data for a userdev environment // The markers can be changed as needed. // "SCAN": For mods scan. // "REGISTRIES": For firing of registry events. // "REGISTRYDUMP": For getting the contents of all registries. property 'forge.logging.markers', 'REGISTRIES' // Recommended logging level for the console // You can set various levels here. // Please read: https://stackoverflow.com/questions/2031163/when-to-use-the-different-log-levels property 'forge.logging.console.level', 'debug' // Specify the modid for data generation, where to output the resulting resource, and where to look for existing resources. args '--mod', 'lod', '--all', '--output', file('src/generated/resources/'), '--existing', file('src/main/resources/') mods { examplemod { source sourceSets.main } } } } } sourceSets { main { java { // add Distant Horizon's Core source folders srcDirs("core/src/main/java"); srcDirs("core/src/main/resources") } resources { // Include resources generated by data generators. srcDir("src/generated/resources") } } } // this is required so that we can use // jitpack in the dependencies section below repositories { mavenCentral() // used to download and compile dependencies from git repos maven { url 'https://jitpack.io' } } configurations { shadowMe compileOnly.extendsFrom(embed) } dependencies { // Specify the version of Minecraft to use, If this is any group other then 'net.minecraft' it is assumed // that the dep is a ForgeGradle 'patcher' dependency. And it's patches will be applied. // The userdev artifact is a special name and will get all sorts of transformations applied to it. minecraft 'net.minecraftforge:forge:1.16.5-36.1.0' // required to generate the mixin refmap annotationProcessor 'org.spongepowered:mixin:0.8:processor' implementation 'org.tukaani:xz:1.9' shadowMe 'org.tukaani:xz:1.9' implementation 'org.apache.commons:commons-compress:1.21' shadowMe 'org.apache.commons:commons-compress:1.21' // these were added to hopefully allow for cloning // configuredFeatures to allow for safe // multi threaded feature generation. Sadly I couldn't find // a way to duplicate lambda functions (which features use) // so for now I'm not sure what to do. //implementation 'io.github.kostaskougios:cloning:1.10.3' // //implementation ('com.esotericsoftware:kryo:5.1.1') { // exclude group: "org.objenesis" //} //implementation 'org.objenesis:objenesis:3.2' // You may put jars on which you depend on in ./libs or you may define them like so.. // compile "some.group:artifact:version:classifier" // compile "some.group:artifact:version" // Real examples // compile 'com.mod-buildcraft:buildcraft:6.0.8:dev' // adds buildcraft to the dev env // compile 'com.googlecode.efficient-java-matrix-library:ejml:0.24' // adds ejml to the dev env // The 'provided' configuration is for optional dependencies that exist at compile-time but might not at runtime. // provided 'com.mod-buildcraft:buildcraft:6.0.8:dev' // These dependencies get remapped to your current MCP mappings // deobf 'com.mod-buildcraft:buildcraft:6.0.8:dev' // For more info... // http://www.gradle.org/docs/current/userguide/artifact_dependencies_tutorial.html // http://www.gradle.org/docs/current/userguide/dependency_management.html } task copyCoreResources(type: Copy) { from file("core/src/main/resources/shaders") into file("src/generated/resources/shaders") } task copyCoreResourcesAtRuntime(type: Copy) { from file("core/src/main/resources/shaders") into file("build/resources/main/shaders") } compileJava.dependsOn(copyCoreResources).dependsOn(copyCoreResourcesAtRuntime) jar { classifier 'withoutDependencies' } shadowJar { duplicatesStrategy = DuplicatesStrategy.INCLUDE configurations = [project.configurations.getByName("shadowMe")] relocate 'org.tukaani', 'shaded.tukaani' relocate 'org.apache.commons.compress', 'shaded.apache.commons.compress' classifier '' } reobf { shadowJar { dependsOn tasks.createMcpToSrg mappings = tasks.createMcpToSrg.outputs.files.singleFile } } artifacts { archives tasks.shadowJar } // Example for how to get properties into the manifest for reading by the runtime.. jar { manifest { attributes([ "Specification-Title": "LOD", "Specification-Version": "1", // We are version 1 of ourselves "Implementation-Title": project.name, "Implementation-Version": "1", "Implementation-Timestamp": new Date().format("yyyy-MM-dd'T'HH:mm:ssZ"), "MixinConfigs": "lod.mixins.json", ]) } } // Example configuration to allow publishing using the maven-publish task // This is the preferred method to reobfuscate your jar file jar.finalizedBy('reobfJar') // However if you are in a multi-project build, dev time needs unobfed jar files, so you can delay the obfuscation until publishing by doing //publish.dependsOn('reobfJar') publishing { publications { mavenJava(MavenPublication) { artifact jar } } repositories { maven { url "file:///${project.projectDir}/mcmodsrepo" } } } mixin { add sourceSets.main, "lod.refmap.json" config "lod.mixins.json" }