fix versions and bump to 1.0.0
This commit is contained in:
parent
bd3a82161c
commit
903f6ef4e1
|
@ -17,7 +17,7 @@ apply plugin: 'com.github.johnrengelman.shadow'
|
||||||
//Only edit below this line, the above code adds and enables the necessary things for Forge to be setup.
|
//Only edit below this line, the above code adds and enables the necessary things for Forge to be setup.
|
||||||
|
|
||||||
|
|
||||||
version = "0.2.0"
|
version = "1.0.0"
|
||||||
group = "matterlink" // http://maven.apache.org/guides/mini/guide-naming-conventions.html
|
group = "matterlink" // http://maven.apache.org/guides/mini/guide-naming-conventions.html
|
||||||
archivesBaseName = "CivilEngineering"
|
archivesBaseName = "CivilEngineering"
|
||||||
|
|
||||||
|
@ -37,6 +37,9 @@ minecraft {
|
||||||
// simply re-run your setup task after changing the mappings to update your workspace.
|
// simply re-run your setup task after changing the mappings to update your workspace.
|
||||||
mappings = "snapshot_20171003"
|
mappings = "snapshot_20171003"
|
||||||
// makeObfSourceJar = false // an Srg named sources jar is made by default. uncomment this to disable.
|
// makeObfSourceJar = false // an Srg named sources jar is made by default. uncomment this to disable.
|
||||||
|
|
||||||
|
replaceIn 'src/main/kotlin/matterlink/MatterLink.kt'
|
||||||
|
replace '@VERSION@', project.version
|
||||||
}
|
}
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
|
|
|
@ -16,7 +16,7 @@ import java.util.*
|
||||||
|
|
||||||
const val MODID = "matterlink"
|
const val MODID = "matterlink"
|
||||||
const val NAME = "MatterLink"
|
const val NAME = "MatterLink"
|
||||||
const val VERSION = "0.2.0"
|
const val VERSION = "@VERSION@"
|
||||||
|
|
||||||
@Mod(
|
@Mod(
|
||||||
modid = MODID,
|
modid = MODID,
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
"modid": "matterlink",
|
"modid": "matterlink",
|
||||||
"name": "MatterLink",
|
"name": "MatterLink",
|
||||||
"description": "Minecraft Server Matterbridge link",
|
"description": "Minecraft Server Matterbridge link",
|
||||||
"version": "1.0",
|
"version": "${version}",
|
||||||
"mcversion": "1.12.2",
|
"mcversion": "${mcversion}",
|
||||||
"authorList":["Arcanitor", "NikkyAi"],
|
"authorList":["Arcanitor", "NikkyAi"],
|
||||||
"credits": "Blame Nikky for talking me into this."
|
"credits": "Blame Nikky for talking me into this."
|
||||||
}]
|
}]
|
Loading…
Reference in New Issue