diff options
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/build.gradle b/build.gradle index 732e30d..a3e64e4 100644 --- a/build.gradle +++ b/build.gradle @@ -35,6 +35,8 @@ dependencies { // For query language parser implementation files('./lib/JLex.jar') implementation files('./lib/cup.jar') + + implementation 'com.google.code.gson:gson:2.8.6' } application { @@ -55,3 +57,8 @@ task runClient(type: JavaExec) { classpath = sourceSets.main.runtimeClasspath main = 'pl.edu.mimuw.cloudatlas.client.Client' } + +task runFetcher(type: JavaExec) { + classpath = sourceSets.main.runtimeClasspath + main = 'pl.edu.mimuw.cloudatlas.fetcher.Fetcher' +} |