Files
JMT-MCMT/sync_fu/build.gradle
jediminer543 37a816f0c8 CANTFIX because of issue with modlauncher
Here's all the code that's working
2021-12-17 12:50:54 +00:00

23 lines
585 B
Groovy

apply plugin: 'java'
apply plugin: 'net.minecraftforge.gradle'
java.toolchain.languageVersion = JavaLanguageVersion.of(16)
minecraft {
mappings channel: 'official', version: "${mc_ver}"
runs {
client {
workingDirectory project.file('run')
}
}
}
repositories {
// These repositories are only for Gradle plugins, put any other repositories in the repository block further below
maven { url = 'https://maven.minecraftforge.net' }
mavenCentral()
}
dependencies {
minecraft "net.minecraftforge:forge:${mc_ver}-${fg_ver}"
}