m-chrzan.xyz
aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorMarcin Chrzanowski <marcin.j.chrzanowski@gmail.com>2020-01-12 16:12:53 +0100
committerMarcin Chrzanowski <marcin.j.chrzanowski@gmail.com>2020-01-12 16:12:53 +0100
commit94d88e27bc6ac28a2c92de76f193920b664040dd (patch)
tree217ca58c3bdbd6051dbd3601a39659b0f1ed554e /build.gradle
parenta91ffb770782450b0dd23f0510cd80ec531f7339 (diff)
parentd88caa2d3fdb3cc5d17a4367583e8ab385ead3b6 (diff)
Merge branch 'master' into gossip-gc
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle2
1 files changed, 2 insertions, 0 deletions
diff --git a/build.gradle b/build.gradle
index 13be045..d7909f7 100644
--- a/build.gradle
+++ b/build.gradle
@@ -116,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) {