m-chrzan.xyz
aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorMagdalena GrodziƄska <mag.grodzinska@gmail.com>2020-01-12 15:25:07 +0100
committerGitHub <noreply@github.com>2020-01-12 15:25:07 +0100
commit7e079f18eb919c0c64b40321e2860420f866a60a (patch)
tree85cccc543ba5531f88f0d9c2216dbd9136ae2ab6 /build.gradle
parent3ebdb1ce162e13c5accf7f3e65a35863504026dd (diff)
parentf2841b8bfe142a2d6643cfe9bb9aca99cb8f6d23 (diff)
Merge branch 'master' into optimize_tests_lol
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) {