mirror of
https://github.com/QuiltMC/quilt-template-mod
synced 2024-08-15 00:23:32 +00:00
Automatically append Minecraft version to mod version (#17)
This commit is contained in:
parent
650130aad3
commit
6772dbcfd6
2 changed files with 2 additions and 2 deletions
|
@ -4,7 +4,7 @@ plugins {
|
|||
}
|
||||
|
||||
archivesBaseName = project.archives_base_name
|
||||
version = project.version
|
||||
version = "${project.version}+${libs.versions.minecraft.get()}"
|
||||
group = project.maven_group
|
||||
|
||||
repositories {
|
||||
|
|
|
@ -3,7 +3,7 @@ org.gradle.jvmargs = -Xmx1G
|
|||
org.gradle.parallel = true
|
||||
|
||||
# Mod Properties
|
||||
version = 1.0.0+1.19.2
|
||||
version = 1.0.0
|
||||
maven_group = com.example
|
||||
archives_base_name = example_mod
|
||||
|
||||
|
|
Loading…
Reference in a new issue