mirror of
https://github.com/SquidDev-CC/CC-Tweaked
synced 2024-12-14 20:20:30 +00:00
Bump Forge Gradle version
This commit is contained in:
parent
815e534dc6
commit
abb9c14256
24
build.gradle
24
build.gradle
@ -8,7 +8,7 @@ buildscript {
|
|||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
classpath 'com.google.code.gson:gson:2.8.1'
|
classpath 'com.google.code.gson:gson:2.8.1'
|
||||||
classpath 'net.minecraftforge.gradle:ForgeGradle:5.0.12'
|
classpath 'net.minecraftforge.gradle:ForgeGradle:5.0.24'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -40,14 +40,6 @@ java {
|
|||||||
withJavadocJar()
|
withJavadocJar()
|
||||||
}
|
}
|
||||||
|
|
||||||
// Tragically java.toolchain.languageVersion doesn't apply to ForgeGradle's
|
|
||||||
// tasks, so we force all launchers to use the right Java version.
|
|
||||||
tasks.withType(JavaCompile).configureEach {
|
|
||||||
javaCompiler = javaToolchains.compilerFor {
|
|
||||||
languageVersion = javaVersion
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
tasks.withType(JavaExec).configureEach {
|
tasks.withType(JavaExec).configureEach {
|
||||||
javaLauncher = javaToolchains.launcherFor {
|
javaLauncher = javaToolchains.launcherFor {
|
||||||
languageVersion = javaVersion
|
languageVersion = javaVersion
|
||||||
@ -305,8 +297,8 @@ test {
|
|||||||
jacocoTestReport {
|
jacocoTestReport {
|
||||||
dependsOn('test')
|
dependsOn('test')
|
||||||
reports {
|
reports {
|
||||||
xml.enabled true
|
xml.required = true
|
||||||
html.enabled true
|
html.required = true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -370,14 +362,10 @@ tasks.register('testInGame', JavaExec.class).configure {
|
|||||||
// Copy from runTestServer. We do it in this slightly odd way as runTestServer
|
// Copy from runTestServer. We do it in this slightly odd way as runTestServer
|
||||||
// isn't created until the task is configured (which is no good for us).
|
// isn't created until the task is configured (which is no good for us).
|
||||||
JavaExec exec = tasks.getByName('runTestServer')
|
JavaExec exec = tasks.getByName('runTestServer')
|
||||||
it.setWorkingDir(exec.getWorkingDir())
|
exec.copyTo(it)
|
||||||
it.setSystemProperties(exec.getSystemProperties())
|
|
||||||
it.setBootstrapClasspath(exec.getBootstrapClasspath())
|
|
||||||
it.setClasspath(exec.getClasspath())
|
it.setClasspath(exec.getClasspath())
|
||||||
it.setMain(exec.getMain())
|
it.mainClass = exec.mainClass
|
||||||
it.setEnvironment(exec.getEnvironment())
|
|
||||||
it.setArgs(exec.getArgs())
|
it.setArgs(exec.getArgs())
|
||||||
it.setJvmArgs(exec.getJvmArgs())
|
|
||||||
|
|
||||||
it.systemProperty('forge.logging.console.level', 'info')
|
it.systemProperty('forge.logging.console.level', 'info')
|
||||||
it.systemProperty('cctest.run', 'true')
|
it.systemProperty('cctest.run', 'true')
|
||||||
@ -464,6 +452,8 @@ curseforge {
|
|||||||
relations {
|
relations {
|
||||||
incompatible "computercraft"
|
incompatible "computercraft"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
addGameVersion "${mc_version}"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
2
gradle/wrapper/gradle-wrapper.properties
vendored
2
gradle/wrapper/gradle-wrapper.properties
vendored
@ -1,5 +1,5 @@
|
|||||||
distributionBase=GRADLE_USER_HOME
|
distributionBase=GRADLE_USER_HOME
|
||||||
distributionPath=wrapper/dists
|
distributionPath=wrapper/dists
|
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0-bin.zip
|
distributionUrl=https\://services.gradle.org/distributions/gradle-7.1-bin.zip
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
zipStorePath=wrapper/dists
|
zipStorePath=wrapper/dists
|
||||||
|
Loading…
Reference in New Issue
Block a user