m-chrzan.xyz
aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorMagdalena GrodziƄska <mag.grodzinska@gmail.com>2020-01-12 14:59:48 +0100
committerGitHub <noreply@github.com>2020-01-12 14:59:48 +0100
commit936b20454adad57eb7e0897d2090af0591910f19 (patch)
tree45dee00d1c152cea4a3c62e0f0570fa3ea17e897 /build.gradle
parent100e3d23b47d9d772d64dd0c7e596cd20de218b9 (diff)
parent5995da144818842e69b9d0afa9f392a9e6419508 (diff)
Merge pull request #110 from m-chrzan/setting_zones_3
Setting zones 3
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) {