diff options
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/build.gradle b/build.gradle index cb7eb3c..375214f 100644 --- a/build.gradle +++ b/build.gradle @@ -13,9 +13,9 @@ apply plugin: 'net.minecraftforge.gradle' apply plugin: 'eclipse' apply plugin: 'maven-publish' -version = '1.0' -group = 'com.yourname.modid' // http://maven.apache.org/guides/mini/guide-naming-conventions.html -archivesBaseName = 'modid' +version = '1.16.1-1.0' +group = 'com.romangraef.tagtooltip' // http://maven.apache.org/guides/mini/guide-naming-conventions.html +archivesBaseName = 'tagtooltip' sourceCompatibility = targetCompatibility = compileJava.sourceCompatibility = compileJava.targetCompatibility = '1.8' // Need this here so eclipse task generates correctly. @@ -44,7 +44,7 @@ minecraft { property 'forge.logging.console.level', 'debug' mods { - examplemod { + tagtooltip { source sourceSets.main } } @@ -60,7 +60,7 @@ minecraft { property 'forge.logging.console.level', 'debug' mods { - examplemod { + tagtooltip { source sourceSets.main } } @@ -75,10 +75,10 @@ minecraft { // Recommended logging level for the console property 'forge.logging.console.level', 'debug' - args '--mod', 'examplemod', '--all', '--output', file('src/generated/resources/') + args '--mod', 'tagtooltip', '--all', '--output', file('src/generated/resources/') mods { - examplemod { + tagtooltip { source sourceSets.main } } @@ -116,12 +116,12 @@ dependencies { jar { manifest { attributes([ - "Specification-Title": "examplemod", - "Specification-Vendor": "examplemodsareus", + "Specification-Title": "tagtooltip", + "Specification-Vendor": "romangraef", "Specification-Version": "1", // We are version 1 of ourselves "Implementation-Title": project.name, "Implementation-Version": "${version}", - "Implementation-Vendor" :"examplemodsareus", + "Implementation-Vendor" :"romangraef", "Implementation-Timestamp": new Date().format("yyyy-MM-dd'T'HH:mm:ssZ") ]) } |