diff options
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 2 |
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) { |