Skip to content

Commit

Permalink
module_... properties renamed to mod_....
Browse files Browse the repository at this point in the history
  • Loading branch information
MairwunNx committed Feb 7, 2020
1 parent 6e07c84 commit 622f494
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
18 changes: 9 additions & 9 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ apply(plugin: "net.minecraftforge.gradle")
apply(plugin: "kotlin")
apply(plugin: "kotlinx-serialization")

version = module_version
group = "com.mairwunnx.$module_id"
archivesBaseName = "$module_name-Forge"
version = mod_version
group = "com.mairwunnx.$mod_id"
archivesBaseName = "$mod_name-Forge"

configurations {
embed
Expand Down Expand Up @@ -117,12 +117,12 @@ jar {
from configurations.embed.collect { it.isDirectory() ? it : zipTree(it) }
manifest {
attributes([
"Specification-Title" : module_name,
"Specification-Vendor" : module_version,
"Specification-Version" : module_vendor,
"Implementation-Title" : module_name,
"Implementation-Version" : module_version,
"Implementation-Vendor" : module_vendor,
"Specification-Title" : mod_name,
"Specification-Vendor" : mod_version,
"Specification-Version" : mod_vendor,
"Implementation-Title" : mod_name,
"Implementation-Version" : mod_version,
"Implementation-Vendor" : mod_vendor,
"Implementation-Timestamp": new Date().format("yyyy-MM-dd'T'HH:mm:ssZ")
])
}
Expand Down
8 changes: 4 additions & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ kotlin_version=1.3.61
kotlinx_serialization_version=0.14.0
permissions_version=v1.14.4-1.+
cooldown_version=v1.14.4-1.+
module_version=1.14.4-1.0.0
module_name=Random Teleport
module_id=random_teleport
module_vendor=MairwunNx (Pavel Erokhin)
mod_version=1.14.4-1.0.0
mod_name=Random Teleport
mod_id=random_teleport
mod_vendor=MairwunNx (Pavel Erokhin)

0 comments on commit 622f494

Please sign in to comment.