diff options
| -rw-r--r-- | build.gradle | 7 |
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' | |||
| 19 | apply plugin: 'maven' | 19 | apply plugin: 'maven' |
| 20 | 20 | ||
| 21 | group = 'cuchaz' | 21 | group = 'cuchaz' |
| 22 | version = '0.10.4b' | 22 | version = '0.11.0' |
| 23 | |||
| 24 | def ENV = System.getenv() | ||
| 25 | if (ENV.BUILD_NUMBER) { | ||
| 26 | version = version + "." + "${System.getenv().BUILD_NUMBER}" | ||
| 27 | } | ||
| 23 | 28 | ||
| 24 | sourceCompatibility = 1.8 | 29 | sourceCompatibility = 1.8 |
| 25 | targetCompatibility = 1.8 | 30 | targetCompatibility = 1.8 |