aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorAlkalus <3060479+draknyte1@users.noreply.github.com>2019-12-30 01:43:49 +0000
committerAlkalus <3060479+draknyte1@users.noreply.github.com>2019-12-30 01:43:49 +0000
commitcc825179dce70a5f2c4a13730639e3300243e21a (patch)
tree68f8c2ea52396b3a7cd1cb715bd029710b570ac6 /build.gradle
parent78eb86ee014c2aec978ad680df2b9ae3547317c3 (diff)
downloadGT5-Unofficial-cc825179dce70a5f2c4a13730639e3300243e21a.tar.gz
GT5-Unofficial-cc825179dce70a5f2c4a13730639e3300243e21a.tar.bz2
GT5-Unofficial-cc825179dce70a5f2c4a13730639e3300243e21a.zip
$ Build script adjustments,
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle7
1 files changed, 6 insertions, 1 deletions
diff --git a/build.gradle b/build.gradle
index 110cab2a54..240e931d2f 100644
--- a/build.gradle
+++ b/build.gradle
@@ -56,10 +56,15 @@ file "build.properties" withReader {
ext.config = new ConfigSlurper().parse prop
}
+file "version.properties" withReader {
+ def prop = new Properties()
+ prop.load(it)
+ ext.config2 = new ConfigSlurper().parse prop
+}
apply plugin: 'se.bjurr.gitchangelog.git-changelog-gradle-plugin'
-version = "${config.gtpp.version}"
+version = "${config.gtpp.version}.${config2.mod.version}"
group= "gtPlusPlus"
archivesBaseName = "GT-PlusPlus"