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

Commit

Permalink
build.gradle: Bugfix snapshot postfix
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan Nothaas committed Oct 12, 2018
1 parent f1b960d commit 42daa8d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 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.2.0-SNAPSHOT"
classpath "de.hhu.bsinfo:dxbuild:0.2.0" + (Boolean.valueOf(System.getProperty('snapshot')) ? '-SNAPSHOT' : '')
}
}

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.5.0-SNAPSHOT'
api 'de.hhu.bsinfo:dxnet:0.5.0-SNAPSHOT'
api 'de.hhu.bsinfo:dxlog:0.5.0-SNAPSHOT'
api 'de.hhu.bsinfo:dxmon:0.2.0-SNAPSHOT'
nativeApi 'de.hhu.bsinfo:dxutils:0.5.0-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 42daa8d

Please sign in to comment.