We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ef599c commit 7cec643Copy full SHA for 7cec643
build.gradle
@@ -9,7 +9,13 @@ buildscript {
9
}
10
apply plugin: 'net.minecraftforge.gradle.forge'
11
12
-version = "1.12-20180411-snapshot"
+file("build.properties").withReader {
13
+ def prop = new Properties()
14
+ prop.load(it)
15
+ project.ext.config = new ConfigSlurper().parse prop
16
+}
17
+
18
+version = config.clientcommandsVersion
19
group = "net.earthcomputer.clientcommands"
20
archivesBaseName = "clientcommands"
21
build.properties
@@ -0,0 +1,2 @@
1
2
+clientcommandsVersion = 1.12-20180415-snapshot
0 commit comments