summaryrefslogtreecommitdiff
path: root/opendc-simulator/opendc-simulator-failures/build.gradle.kts
diff options
context:
space:
mode:
authorFabian Mastenbroek <mail.fabianm@gmail.com>2021-09-10 10:59:44 +0200
committerFabian Mastenbroek <mail.fabianm@gmail.com>2021-09-10 16:18:00 +0200
commitd24cc0cc9c4fe2145f0337d65e9a75f631365973 (patch)
treefef06ec8c23654b49eda2b15a3febf0a57a78aa5 /opendc-simulator/opendc-simulator-failures/build.gradle.kts
parent04945381d01d8c6e59befe6843f2c6f6da5e91bf (diff)
refactor(compute): Integrate fault injection into compute simulator
This change moves the fault injection logic directly into the opendc-compute-simulator module, so that it can operate at a higher abstraction. In the future, we might again split the module if we can re-use some of its logic.
Diffstat (limited to 'opendc-simulator/opendc-simulator-failures/build.gradle.kts')
-rw-r--r--opendc-simulator/opendc-simulator-failures/build.gradle.kts33
1 files changed, 0 insertions, 33 deletions
diff --git a/opendc-simulator/opendc-simulator-failures/build.gradle.kts b/opendc-simulator/opendc-simulator-failures/build.gradle.kts
deleted file mode 100644
index edd48b40..00000000
--- a/opendc-simulator/opendc-simulator-failures/build.gradle.kts
+++ /dev/null
@@ -1,33 +0,0 @@
-/*
- * Copyright (c) 2020 AtLarge Research
- *
- * Permission is hereby granted, free of charge, to any person obtaining a copy
- * of this software and associated documentation files (the "Software"), to deal
- * in the Software without restriction, including without limitation the rights
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be included in all
- * copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
- * SOFTWARE.
- */
-
-description = "Failure models for OpenDC"
-
-plugins {
- `kotlin-library-conventions`
-}
-
-dependencies {
- api(platform(projects.opendcPlatform))
- api(libs.kotlinx.coroutines)
- api(libs.commons.math3)
-}