Re-add extra flourishes to the archive base name.

This commit is contained in:
Tyler Hancock 2021-09-28 01:41:24 -06:00
parent f72cac02ad
commit d4e9a8dd17
No known key found for this signature in database
GPG Key ID: D10D32949D03E695
3 changed files with 3 additions and 3 deletions

View File

@ -3,7 +3,7 @@ plugins {
id('org.spongepowered.gradle.vanilla') version '0.2.1-SNAPSHOT'
}
archivesBaseName = mod_name
archivesBaseName = "${mod_name}-common-${minecraft_version}"
repositories {
mavenCentral()

View File

@ -7,7 +7,7 @@ plugins {
sourceCompatibility = JavaVersion.VERSION_16
targetCompatibility = JavaVersion.VERSION_16
archivesBaseName = mod_name
archivesBaseName = "${mod_name}-fabric-${minecraft_version}"
repositories {
}

View File

@ -12,7 +12,7 @@ apply plugin: 'net.minecraftforge.gradle'
apply plugin: 'eclipse'
apply plugin: 'maven-publish'
archivesBaseName = mod_name
archivesBaseName = "${mod_name}-forge-${minecraft_version}"
java.toolchain.languageVersion = JavaLanguageVersion.of(16)