summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--build.gradle7
1 files changed, 6 insertions, 1 deletions
diff --git a/build.gradle b/build.gradle
index 2e5f9c8c..2332c815 100644
--- a/build.gradle
+++ b/build.gradle
@@ -19,7 +19,12 @@ apply plugin: 'com.github.johnrengelman.shadow'
19apply plugin: 'maven' 19apply plugin: 'maven'
20 20
21group = 'cuchaz' 21group = 'cuchaz'
22version = '0.10.4b' 22version = '0.11.0'
23
24def ENV = System.getenv()
25if (ENV.BUILD_NUMBER) {
26 version = version + "." + "${System.getenv().BUILD_NUMBER}"
27}
23 28
24sourceCompatibility = 1.8 29sourceCompatibility = 1.8
25targetCompatibility = 1.8 30targetCompatibility = 1.8