Minecraft mod development framework used by Forge and FML for the gradle build system
this repository is only for ForgeGradle 2.3.
Here is repository for ForgeGradle 1.2. If you're modding for 1.7.x and 1.8, use it.
This project is a fork of ForgeGradle branch 'FG_2.3'.
Example project is now Work In Progress. please wait.
- Download MDK from official Forge
- Follow How to use this ForgeGradle instead of official ForgeGradle to replace MDK
- add
mavenCentral()
if not added in repositories in buildscript block. - replace "net.minecraftforge.gradle:ForgeGradle:2.3-SNAPSHOT" with "com.anatawa12.forge:ForgeGradle:2.3-1.0.1"
if you aren't add any libraries for buildscript, you may able to use buildscript block shown below:
buildscript {
repositories {
mavenCentral()
maven {
name = "forge"
url = "https://maven.minecraftforge.net"
}
}
dependencies {
classpath("com.anatawa12.forge:ForgeGradle:2.3-1.0.+") {
changing = true
}
}
}