Skip to content
This repository has been archived by the owner on May 3, 2022. It is now read-only.

Commit

Permalink
Revert "build.gradle: Bugfix snapshot postfix"
Browse files Browse the repository at this point in the history
This reverts commit 42daa8d.
  • Loading branch information
krakowski committed Oct 12, 2018
1 parent 7c804fa commit 8fc950e
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ buildscript {
}

dependencies {
classpath "de.hhu.bsinfo:dxbuild:0.3.0" + (Boolean.valueOf(System.getProperty('snapshot')) ? '-SNAPSHOT' : '')
classpath "de.hhu.bsinfo:dxbuild:0.2.0" + (Boolean.valueOf(System.getProperty('snapshot')) ? '-SNAPSHOT' : '')
}
}

Expand All @@ -28,7 +28,7 @@ plugins {

apply plugin: 'dxbuild'
group = 'de.hhu.bsinfo'
version = '0.6.0' + (Boolean.valueOf(System.getProperty("snapshot")) ? "-SNAPSHOT" : "")
version = '0.5.0' + (Boolean.valueOf(System.getProperty("snapshot")) ? "-SNAPSHOT" : "")

sourceCompatibility = '1.8'
targetCompatibility = '1.8'
Expand Down Expand Up @@ -85,11 +85,11 @@ dependencies {
compileOnly 'org.projectlombok:lombok:1.18.2'

api 'commons-cli:commons-cli:1.4'
api 'de.hhu.bsinfo:dxmem:0.6.0' + (Boolean.valueOf(System.getProperty('snapshot')) ? '-SNAPSHOT' : '')
api 'de.hhu.bsinfo:dxnet:0.6.0' + (Boolean.valueOf(System.getProperty('snapshot')) ? '-SNAPSHOT' : '')
api 'de.hhu.bsinfo:dxlog:0.6.0' + (Boolean.valueOf(System.getProperty('snapshot')) ? '-SNAPSHOT' : '')
api 'de.hhu.bsinfo:dxmon:0.3.0' + (Boolean.valueOf(System.getProperty('snapshot')) ? '-SNAPSHOT' : '')
nativeApi 'de.hhu.bsinfo:dxutils:0.6.0' + (Boolean.valueOf(System.getProperty('snapshot')) ? '-SNAPSHOT' : '')
api 'de.hhu.bsinfo:dxmem:0.5.0' + (Boolean.valueOf(System.getProperty('snapshot')) ? '-SNAPSHOT' : '')
api 'de.hhu.bsinfo:dxnet:0.5.0' + (Boolean.valueOf(System.getProperty('snapshot')) ? '-SNAPSHOT' : '')
api 'de.hhu.bsinfo:dxlog:0.5.0' + (Boolean.valueOf(System.getProperty('snapshot')) ? '-SNAPSHOT' : '')
api 'de.hhu.bsinfo:dxmon:0.2.0' + (Boolean.valueOf(System.getProperty('snapshot')) ? '-SNAPSHOT' : '')
nativeApi 'de.hhu.bsinfo:dxutils:0.5.0' + (Boolean.valueOf(System.getProperty('snapshot')) ? '-SNAPSHOT' : '')

implementation 'com.google.guava:guava:26.0-jre'
implementation 'org.apache.zookeeper:zookeeper:3.4.13'
Expand Down

0 comments on commit 8fc950e

Please sign in to comment.