Cache url as parameter.

This commit is contained in:
Amine Bou 2018-03-28 21:11:25 +02:00
parent 68dc5a6acf
commit 99a305f3e2

View File

@ -7,13 +7,9 @@ buildCache {
enabled = !isCiServer
}
remote(HttpBuildCache) {
url = 'http://amine-bou.fr:8885/cache/'
url = System.getProperty("cacheUrl")
push = isCiServer
println "push ? " + isCiServer
credentials {
username = System.getProperty("cacheUser")
password = System.getProperty("cachePassword")
}
println "url ? " + System.getProperty("cacheUrl")
}
}