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