m-chrzan.xyz
aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorMartin <marcin.j.chrzanowski@gmail.com>2019-11-24 22:09:41 +0100
committerGitHub <noreply@github.com>2019-11-24 22:09:41 +0100
commitac7aa67be63bea11246b5d39d1ff2bd7d16d2a1c (patch)
treed88a506d46f4c9410d0575805bde01528192bb5e /build.gradle
parente24fbbecfb9b631d9467b204a1b87c593746886b (diff)
Pass registry address to fetcher (#41)
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle1
1 files changed, 1 insertions, 0 deletions
diff --git a/build.gradle b/build.gradle
index 751927a..237ff87 100644
--- a/build.gradle
+++ b/build.gradle
@@ -59,6 +59,7 @@ task runClient(type: JavaExec) {
task runFetcher(type: JavaExec) {
classpath = sourceSets.main.runtimeClasspath
main = 'pl.edu.mimuw.cloudatlas.fetcher.Fetcher'
+ args("localhost", 1099)
}
task runInterpreter(type: JavaExec) {