I am trying to develop a minecraft 1.8.9 Forge mod, but I keep getting this error:
Starting a Gradle Daemon, 1 incompatible and 2 stopped Daemons could not be reused, use --status for details
FAILURE: Build failed with an exception.
* Where:
Build file 'C:\Users\User\Desktop\Project\build.gradle' line: 3
* What went wrong:
Plugin [id: 'net.minecraftforge.gradle.forge', artifact: 'com.github.asbyth:ForgeGradle:ddb1eb0'] was not found in any of the following sources:
- Gradle Core Plugins (plugin is not in 'org.gradle' namespace)
- Plugin Repositories (could not resolve plugin artifact 'com.github.asbyth:ForgeGradle:ddb1eb0')
Searched in the following repositories:
MavenRepo
maven(https://maven.minecraftforge.net/)
maven2(https://jitpack.io/)
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
* Get more help at https://help.gradle.org
BUILD FAILED in 5s
I am unsure what to do now so I went here
btw my build.gradle file:
plugins {
id "java"
id "net.minecraftforge.gradle.forge"
}
group 'me.github.shurpe'
version '1.0'
sourceCompatibility = targetCompatibility = 1.8
compileJava.options.encoding = "UTF-8"
minecraft {
version = "1.8.9-11.15.1.2318-1.8.9"
runDir = "run"
mappings = "stable_22"
makeObfSourceJar = false
}
jar {
exclude "**/mcmod.info"
}