summaryrefslogtreecommitdiff
path: root/simulator/opendc/opendc-runner-web/build.gradle.kts
diff options
context:
space:
mode:
authorFabian Mastenbroek <mail.fabianm@gmail.com>2020-07-16 22:04:35 +0200
committerFabian Mastenbroek <mail.fabianm@gmail.com>2020-08-24 19:48:06 +0200
commit5d528f6b1902d372eb2ef594bc96712ad74ac361 (patch)
treecc17c4b72724aba6a1038412f891c2d0e506d6a8 /simulator/opendc/opendc-runner-web/build.gradle.kts
parenta4ae44e7f5bbfb293cdce256da3c40f927605ac9 (diff)
Add prototype of web experiment runner
This change adds a bridge between the frontend and the new simulator implementation via MongoDB.
Diffstat (limited to 'simulator/opendc/opendc-runner-web/build.gradle.kts')
-rw-r--r--simulator/opendc/opendc-runner-web/build.gradle.kts5
1 files changed, 4 insertions, 1 deletions
diff --git a/simulator/opendc/opendc-runner-web/build.gradle.kts b/simulator/opendc/opendc-runner-web/build.gradle.kts
index 50789789..52a59694 100644
--- a/simulator/opendc/opendc-runner-web/build.gradle.kts
+++ b/simulator/opendc/opendc-runner-web/build.gradle.kts
@@ -36,10 +36,13 @@ application {
dependencies {
api(project(":opendc:opendc-core"))
+ implementation(project(":opendc:opendc-compute"))
+ implementation(project(":opendc:opendc-format"))
+ implementation(project(":opendc:opendc-experiments-sc20"))
implementation("com.github.ajalt:clikt:2.8.0")
implementation("io.github.microutils:kotlin-logging:1.7.10")
- implementation("org.mongodb:mongo-java-driver:3.12.6")
+ implementation("org.mongodb:mongodb-driver-sync:4.0.5")
runtimeOnly("org.apache.logging.log4j:log4j-slf4j-impl:2.13.1")
runtimeOnly(project(":odcsim:odcsim-engine-omega"))