diff options
| author | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2021-02-23 21:55:50 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-02-23 21:55:50 +0100 |
| commit | 4a4e724bee6ccfbf961b750b1f8cf56eaf7d3b5e (patch) | |
| tree | cbbbcd759f16b8d0aa87c41b7f10dcc5fdf7087a /simulator/opendc-core | |
| parent | 60a0cf76bcd5b5c8b1b5a912b2337266e87b5321 (diff) | |
| parent | 15fcd1a10018605f59ca7a644b8f3b3960e7b6b0 (diff) | |
harness: Perform several improvements
This commit performs several improvements to the OpenDC harness and modules utilizing the harness.
Diffstat (limited to 'simulator/opendc-core')
| -rw-r--r-- | simulator/opendc-core/build.gradle.kts | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/simulator/opendc-core/build.gradle.kts b/simulator/opendc-core/build.gradle.kts index b1c2678b..7e1a4b97 100644 --- a/simulator/opendc-core/build.gradle.kts +++ b/simulator/opendc-core/build.gradle.kts @@ -24,13 +24,10 @@ description = "Base model for datacenter simulation" /* Build configuration */ plugins { - `kotlin-library-convention` + `kotlin-library-conventions` } dependencies { - api("org.jetbrains.kotlinx:kotlinx-coroutines-core:${Library.KOTLINX_COROUTINES}") - - testImplementation("org.junit.jupiter:junit-jupiter-api:${Library.JUNIT_JUPITER}") - testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:${Library.JUNIT_JUPITER}") - testImplementation("org.junit.platform:junit-platform-launcher:${Library.JUNIT_PLATFORM}") + api(platform(project(":opendc-platform"))) + api("org.jetbrains.kotlinx:kotlinx-coroutines-core") } |
