You've redecorated. I like it!

This commit is contained in:
Andrey Nikitin 2023-01-29 00:15:31 +03:00
parent 6846d04a01
commit 79ad4777b3
21 changed files with 55 additions and 57 deletions

View file

@ -10,9 +10,9 @@ buildscript {
apply plugin: 'net.minecraftforge.gradle'
group = 'de.srendi.cctutorial'
group = 'su.a71.tardim_ic'
version = '1.0'
archivesBaseName = 'cctutorial'
archivesBaseName = 'tardim_ic'
java.toolchain.languageVersion = JavaLanguageVersion.of(17)
@ -66,10 +66,10 @@ minecraft {
property 'forge.logging.console.level', 'debug'
// Specify the modid for data generation, where to output the resulting resource, and where to look for existing resources.
args '--mod', 'cctutorial', '--all', '--output', file('src/generated/resources/'), '--existing', file('src/main/resources/')
args '--mod', 'tardim_ic', '--all', '--output', file('src/generated/resources/'), '--existing', file('src/main/resources/')
mods {
cctutorial {
tardim_ic {
source sourceSets.main
}
}
@ -101,12 +101,12 @@ dependencies {
jar {
manifest {
attributes([
"Specification-Title" : "cctutorial",
//"Specification-Vendor": "cctutorial authors",
"Specification-Title" : "tardim_ic",
//"Specification-Vendor": "tardim_ic authors",
"Specification-Version" : "1", // We are version 1 of ourselves
"Implementation-Title" : project.name,
"Implementation-Version" : project.version,
//"Implementation-Vendor": "cctutorial authors",
//"Implementation-Vendor": "tardim_ic authors",
"Implementation-Timestamp": new Date().format("yyyy-MM-dd'T'HH:mm:ssZ")
])
}