mirror of
https://github.com/barkeser2002/JMT-MCMT.git
synced 2026-09-25 05:50:08 +03:00
23 lines
585 B
Groovy
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}"
|
|
}
|