1.13 is dead (followup to 8bc0b0a)

This commit is contained in:
Jonas Herzig
2020-03-30 01:27:57 +02:00
parent 49ea1ae40a
commit 8b7ef8d1e3
105 changed files with 300 additions and 300 deletions

View File

@@ -31,7 +31,7 @@ buildscript {
classpath 'com.github.jengelman.gradle.plugins:shadow:4.0.2'
if (fabric) {
classpath 'fabric-loom:fabric-loom.gradle.plugin:0.2.2-SNAPSHOT'
} else if (mcVersion >= 11300) {
} else if (mcVersion >= 11400) {
classpath('net.minecraftforge.gradle:ForgeGradle:3.+'){
exclude group: 'trove', module: 'trove' // preprocessor/idea requires more recent one
}
@@ -49,7 +49,7 @@ buildscript {
}
}
def FG3 = !fabric && mcVersion >= 11300
def FG3 = !fabric && mcVersion >= 11400
def FABRIC = fabric
def jGuiVersion = project.name
@@ -97,7 +97,7 @@ def mcVersionStr = "${(int)(mcVersion/10000)}.${(int)(mcVersion/100)%100}" + (mc
sourceCompatibility = 1.8
targetCompatibility = 1.8
if (mcVersion >= 11300) {
if (mcVersion >= 11400) {
sourceSets {
api
}
@@ -163,7 +163,7 @@ if (FABRIC) {
}
afterEvaluate {
if (mcVersion >= 11300) {
if (mcVersion >= 11400) {
// No longer required in 1.13+ because all version info is in the toml file
} else {
// Note cannot use minecraft.replace because that has already been forwarded to the task by FG by now