summaryrefslogtreecommitdiff
path: root/opendc/opendc-workflows/build.gradle.kts
diff options
context:
space:
mode:
authorGeorgios Andreadis <g.andreadis@student.tudelft.nl>2020-02-11 14:46:19 +0100
committerGeorgios Andreadis <g.andreadis@student.tudelft.nl>2020-02-11 14:46:19 +0100
commitcd293b79ef2066ffcb605b9c625d6ab0a9af1d16 (patch)
treef5ea605d60538480705a0561e5152f1ed74b2188 /opendc/opendc-workflows/build.gradle.kts
parent65a91a92afd8b6e71f08f5cbe345af30606c4861 (diff)
parent8e16b076e9c7c8c086446853e48dfff80cb45ca1 (diff)
Merge branch 'feat/2.x-model' into 'feat/2.x'
Reimplement OpenDC model using 2.x API See merge request opendc/opendc-simulator!21
Diffstat (limited to 'opendc/opendc-workflows/build.gradle.kts')
-rw-r--r--opendc/opendc-workflows/build.gradle.kts39
1 files changed, 39 insertions, 0 deletions
diff --git a/opendc/opendc-workflows/build.gradle.kts b/opendc/opendc-workflows/build.gradle.kts
new file mode 100644
index 00000000..6aa044e8
--- /dev/null
+++ b/opendc/opendc-workflows/build.gradle.kts
@@ -0,0 +1,39 @@
+/*
+ * MIT License
+ *
+ * Copyright (c) 2019 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 = "Workflow service for OpenDC"
+
+/* Build configuration */
+plugins {
+ `kotlin-library-convention`
+}
+
+dependencies {
+ api(project(":opendc:opendc-core"))
+ implementation(kotlin("stdlib"))
+
+ 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}")
+}