m-chrzan.xyz
aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle5
1 files changed, 3 insertions, 2 deletions
diff --git a/build.gradle b/build.gradle
index b0c35a2..d7909f7 100644
--- a/build.gradle
+++ b/build.gradle
@@ -57,9 +57,8 @@ ext.zoneSelectionStrategy = {
return System.getProperty("zoneStrategy") ?: "RandomUniform"
}
-// TODO nie bangla zmienianie
ext.zonePath = {
- return System.getProperty("zonePath") ?: "/uw/violet08"
+ return System.getProperty("zonePath") ?: "/uw/violet07"
}
repositories {
@@ -117,12 +116,14 @@ task runClient(type: JavaExec) {
classpath = sourceSets.main.runtimeClasspath
main = 'pl.edu.mimuw.cloudatlas.client.Client'
systemProperty 'agent_hostname', hostname()
+ systemProperty 'zone_path', zonePath()
}
task runFetcher(type: JavaExec) {
classpath = sourceSets.main.runtimeClasspath
main = 'pl.edu.mimuw.cloudatlas.fetcher.Fetcher'
args(hostname() , 1099)
+ systemProperty 'zone_path', zonePath()
}
task runInterpreter(type: JavaExec) {