@@ -9,10 +9,14 @@ plugins {
9
9
10
10
repositories {
11
11
jcenter()
12
+ maven {
13
+ name " Mesosphere Public Repo"
14
+ url " https://downloads.mesosphere.com/maven"
15
+ }
12
16
}
13
17
14
18
ext {
15
- usiBranch = ' master '
19
+ usiVersion = ' 0.1.5 '
16
20
scalaVersion = ' 2.12'
17
21
akkaVersion = ' 2.5.19'
18
22
}
@@ -21,10 +25,10 @@ dependencies {
21
25
// This dependency is exported to consumers, that is to say found on their compile classpath.
22
26
api ' org.apache.commons:commons-math3:3.6.1'
23
27
api ' com.google.guava:guava:26.0-jre'
24
- api ( ' com.mesosphere.usi: core' ) { version { branch = usiBranch } }
25
- api ( ' com.mesosphere.usi: core-models' ) { version { branch = usiBranch } }
26
- api ( ' com.mesosphere.usi: mesos-client' ) { version { branch = usiBranch } }
27
- api ( ' com.mesosphere.usi: persistence' ) { version { branch = usiBranch } }
28
+ api group : ' com.mesosphere.usi' , name : ' core' , version : usiVersion
29
+ api group : ' com.mesosphere.usi' , name : ' core-models' , version : usiVersion
30
+ api group : ' com.mesosphere.usi' , name : ' mesos-client' , version : usiVersion
31
+ api group : ' com.mesosphere.usi' , name : ' persistence' , version : usiVersion
28
32
api group : ' org.slf4j' , name : ' slf4j-api' , version : ' 1.7.25'
29
33
30
34
// Test dependencies
@@ -33,7 +37,7 @@ dependencies {
33
37
testImplementation ' org.glassfish:javax.json:1.0.4'
34
38
testImplementation ' org.junit.jupiter:junit-jupiter-api:5.3.1'
35
39
testRuntimeOnly ' org.junit.jupiter:junit-jupiter-engine:5.3.1'
36
- testImplementation( ' com.mesosphere.usi: test-utils' ) { version { branch = usiBranch } }
40
+ testImplementation group : ' com.mesosphere.usi' , name : ' test-utils' , version : usiVersion
37
41
testImplementation ' org.awaitility:awaitility:3.1.6'
38
42
39
43
compileOnly ' com.github.spotbugs:spotbugs-annotations:3.1.3'
0 commit comments