diff options
| author | 2016-06-29 16:12:46 +0100 | |
|---|---|---|
| committer | 2016-06-29 16:12:46 +0100 | |
| commit | f67593afd9a974233342cecb7c1d1004c37fb31f (patch) | |
| tree | f60da2156281a503a20b9ecb8524441592c8185c | |
| parent | Fixed build fail (diff) | |
| download | enigma-f67593afd9a974233342cecb7c1d1004c37fb31f.tar.gz enigma-f67593afd9a974233342cecb7c1d1004c37fb31f.tar.xz enigma-f67593afd9a974233342cecb7c1d1004c37fb31f.zip | |
Update version info
| -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 |