Update build.gradle

This commit is contained in:
Mysticpasta1 2023-03-05 03:18:30 -06:00
parent d66be53fb8
commit 3335a0e866

View File

@ -12,7 +12,7 @@ java.toolchain.languageVersion = JavaLanguageVersion.of(17)
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.19'
mappings channel: 'official', version: '1.19.2'
//accessTransformer = file('src/main/resources/META-INF/accesstransformer.cfg')
runs {
client {
@ -23,7 +23,7 @@ minecraft {
property 'forge.logging.console.level', 'debug'
mods {
citadel {
webdisplays {
source sourceSets.main
}
}
@ -39,7 +39,7 @@ minecraft {
property 'forge.logging.console.level', 'debug'
mods {
citadel {
webdisplays {
source sourceSets.main
}
}
@ -52,7 +52,7 @@ minecraft {
property 'forge.logging.console.level', 'debug'
args '--mod', 'examplemod', '--all', '--output', file('src/generated/resources/'), '--existing', sourceSets.main.resources.srcDirs[0]
mods {
citadel {
webdisplays {
source sourceSets.main
}
}
@ -87,8 +87,8 @@ sourceSets {
jar {
manifest {
attributes([
"Specification-Title": "mcef",
"Specification-Vendor": "forgecef",
"Specification-Title": "webdisplays",
"Specification-Vendor": "webdisplays",
"Specification-Version": "1", // We are version 1 of ourselves
"Implementation-Title": project.name,
"Implementation-Version": "${version}",