m-chrzan.xyz
aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle10
1 files changed, 6 insertions, 4 deletions
diff --git a/build.gradle b/build.gradle
index a3e64e4..498d29b 100644
--- a/build.gradle
+++ b/build.gradle
@@ -44,10 +44,6 @@ application {
mainClassName = 'pl.edu.mimuw.cloudatlas.interpreter.Main'
}
-run {
- standardInput = System.in
-}
-
task runAgent(type: JavaExec) {
classpath = sourceSets.main.runtimeClasspath
main = 'pl.edu.mimuw.cloudatlas.agent.Agent'
@@ -62,3 +58,9 @@ task runFetcher(type: JavaExec) {
classpath = sourceSets.main.runtimeClasspath
main = 'pl.edu.mimuw.cloudatlas.fetcher.Fetcher'
}
+
+task runInterpreter(type: JavaExec) {
+ classpath = sourceSets.main.runtimeClasspath
+ main = 'pl.edu.mimuw.cloudatlas.interpreter.Main'
+ standardInput = System.in
+}