Skip to content

Commit

Permalink
Updated project manifest info
Browse files Browse the repository at this point in the history
  • Loading branch information
Visual-Vincent committed May 23, 2021
1 parent fa6116c commit 7986c07
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 6 deletions.
18 changes: 12 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,15 @@ apply plugin: 'net.minecraftforge.gradle'
apply plugin: 'eclipse'
apply plugin: 'maven-publish'

version = '1.16.5-0.1'
ext {
modVersion = '0.1'
mcVersion = '1.16.5'
modAuthor = 'Visual Vincent'
}

version = "${mcVersion}-v${modVersion}"
group = 'com.mydoomsite.astreaserver' // http://maven.apache.org/guides/mini/guide-naming-conventions.html
archivesBaseName = 'AstreaAdmin'
archivesBaseName = 'AstraeaAdmin'

java.toolchain.languageVersion = JavaLanguageVersion.of(8) // Mojang ships Java 8 to end users, so your mod should target Java 8.

Expand Down Expand Up @@ -143,12 +149,12 @@ dependencies {
jar {
manifest {
attributes([
"Specification-Title": "examplemod",
"Specification-Vendor": "examplemodsareus",
"Specification-Version": "1", // We are version 1 of ourselves
"Specification-Title": project.name,
"Specification-Vendor": "${modAuthor}",
"Specification-Version": "${modVersion}",
"Implementation-Title": project.name,
"Implementation-Version": "${version}",
"Implementation-Vendor" :"examplemodsareus",
"Implementation-Vendor": "${modAuthor}",
"Implementation-Timestamp": new Date().format("yyyy-MM-dd'T'HH:mm:ssZ")
])
}
Expand Down
1 change: 1 addition & 0 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
rootProject.name = 'Astraea Server Administration'

0 comments on commit 7986c07

Please sign in to comment.