update a few things the automation could not handle

This commit is contained in:
2022-07-02 22:32:27 +02:00
parent c5791690f6
commit 4e6398d7f1
4 changed files with 12 additions and 13 deletions
+3 -3
View File
@@ -17,12 +17,12 @@ version = '1.0.3'
group = 'de.skate702.craftingkeys' // http://maven.apache.org/guides/mini/guide-naming-conventions.html
archivesBaseName = 'craftingkeys'
sourceCompatibility = targetCompatibility = compileJava.sourceCompatibility = compileJava.targetCompatibility = JavaLanguageVersion.of(8) // Need this here so eclipse task generates correctly.
sourceCompatibility = targetCompatibility = compileJava.sourceCompatibility = compileJava.targetCompatibility = JavaLanguageVersion.of(17)
compileJava.options.encoding = "UTF-8"
println('Java: ' + System.getProperty('java.version') + ' JVM: ' + System.getProperty('java.vm.version') + '(' + System.getProperty('java.vendor') + ') Arch: ' + System.getProperty('os.arch'))
minecraft {
mappings channel: 'official', version: '1.16.4'
mappings channel: 'official', version: '1.19'
runs {
client {
workingDirectory project.file('run')
@@ -69,7 +69,7 @@ minecraft {
sourceSets.main.resources { srcDir 'src/generated/resources' }
dependencies {
minecraft 'net.minecraftforge:forge:1.16.5-36.2.20'
minecraft 'net.minecraftforge:forge:1.19-41.0.62'
}
// Example for how to get properties into the manifest for reading by the runtime..