move values to properties file

This commit is contained in:
octarine-noise
2018-10-25 10:03:56 +02:00
parent fe3030ef77
commit 0997b83367
2 changed files with 13 additions and 6 deletions

View File

@@ -1,12 +1,9 @@
apply plugin: "net.minecraftforge.gradle.forge"
apply plugin: 'kotlin'
group = 'com.github.octarine-noise'
version = "2.1.11"
archivesBaseName = rootProject.name + '-MC1.10.2'
archivesBaseName = jarName
buildscript {
ext.kotlin_version = '1.1.1'
repositories {
mavenCentral()
maven {
@@ -32,8 +29,8 @@ dependencies {
shade "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
}
minecraft {
version = '1.10.2-12.18.2.2121'
mappings = 'snapshot_20160905'
version = mc_version + "-" + forge_version
mappings = mcp_mappings
runDir = 'run'
}