Posted January 6, 20169 yr Hi, after a long break from Minecraft I'm finally back (if anyone noticed that I took a break ) So now I wanted to start modding MC again and run directly into a problem: FAILURE: Build failed with an exception. * What went wrong: A problem occurred configuring root project 'primeval-forest'. > Failed to notify project evaluation listener. > MISSING REPLACEMENT DATA FOR MAPPING_CHANNEL > MISSING REPLACEMENT DATA FOR MAPPING_CHANNEL * Try: Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. BUILD FAILED Total time: 6.336 secs Does anyone know what this mean and how to fix this? If you need more information, please leave a comment behind. Thx in advance. Bektor EDIT: Here is the build.gradle file: // For those who want the bleeding edge buildscript { repositories { jcenter() maven { name = "forge" url = "http://files.minecraftforge.net/maven" } } dependencies { classpath 'net.minecraftforge.gradle:ForgeGradle:2.1-SNAPSHOT' } } apply plugin: 'net.minecraftforge.gradle.forge' /* // for people who want stable - not yet functional for MC 1.8.8 - we require the forgegradle 2.1 snapshot plugins { id "net.minecraftforge.gradle.forge" version "2.0.2" } */ ext.configFile = file "build.properties" configFile.withReader { def prop = new Properties() prop.load(it) ext.config = new ConfigSlurper().parse prop } group= "minecraftplaye.primevalforest" version = "${config.minecraft_version}-${config.primeval_major}.${config.primeval_minor}.${config.primeval_build}" archivesBaseName = "primevalforest" minecraft { version = config.minecraft_version + "-" + config.forge_version if(file('../run').exists()) { runDir = "../run/assets" } else { runDir = "assets" } replace "@VERSION@", project.version replaceIn "lib/Constants.java" if(project.hasProperty("signature")) replace "@FINGERPRINT@", signature } dependencies { // 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' // the deobf configurations: 'deobfCompile' and 'deobfProvided' are the same as the normal compile and provided, // except that these dependencies get remapped to your current MCP mappings //deobfCompile 'com.mod-buildcraft:buildcraft:6.0.8:dev' //deobfProvided '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 } processResources { // this will ensure that this task is redone when the versions change. inputs.property "version", project.version inputs.property "mcversion", project.minecraft.version // replace stuff in mcmod.info, nothing else from(sourceSets.main.resources.srcDirs) { include 'mcmod.info' // replace version and mcversion expand 'version':project.version, 'mcversion':project.minecraft.version } // copy everything else, thats not the mcmod.info from(sourceSets.main.resources.srcDirs) { exclude 'mcmod.info' } } task incrementBuildNumber() { dependsOn "reobf" doLast { config.primeval_build = (config.primeval_build.toString().toInteger()) + 1 configFile.withWriter { config.toProperties().store(it, "") } } } jar { appendix = 'universal' } Its basically just the one I used in my old 1.7 projects, but this time updated to 1.8.9. build.propeties file: minecraft_version=1.8.9 primeval_major=0 forge_version=11.15.0.1684 primeval_minor=1 primeval_build=0 Developer of Primeval Forest.
January 6, 20169 yr Maybe I'm over looking it but where is your mapping entry lines in the build.gradle file ? Eg: mappings = "stable_20" my 1.8.9 Example build.gradle : https://github.com/TechStack/TechStack-s-HeavyMachineryMod/blob/1.8.8_redux/build.gradle it May or may not be the cause of this exact error. Hope it helps
January 6, 20169 yr Author Oh, thx. And nope, you've not over looked it, I did while updating the build.gradle. Now its working without any problems. Developer of Primeval Forest.
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.