summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabian Mastenbroek <mail.fabianm@gmail.com>2022-04-23 12:11:44 +0200
committerFabian Mastenbroek <mail.fabianm@gmail.com>2022-04-24 12:32:20 +0200
commite1a5b581ae957cc5b07c6083557cd3bcc137894b (patch)
treee6a980bcc536dfcb74dd27da86ba3f0a17430081
parentf1daebc9d49910d9300da6616bc30baf2ab9650d (diff)
build: Move modules into subgroups
This change updates the Gradle build configuration of the project to publish the different type of modules (e.g., opendc-compute, opendc-simulator) into their own groups.
-rw-r--r--opendc-compute/build.gradle.kts4
-rw-r--r--opendc-experiments/build.gradle.kts4
-rw-r--r--opendc-faas/build.gradle.kts4
-rw-r--r--opendc-harness/build.gradle.kts4
-rw-r--r--opendc-simulator/build.gradle.kts27
-rw-r--r--opendc-telemetry/build.gradle.kts6
-rw-r--r--opendc-trace/build.gradle.kts6
-rw-r--r--opendc-web/build.gradle.kts6
-rw-r--r--opendc-workflow/build.gradle.kts4
9 files changed, 65 insertions, 0 deletions
diff --git a/opendc-compute/build.gradle.kts b/opendc-compute/build.gradle.kts
index bf920306..b816ce58 100644
--- a/opendc-compute/build.gradle.kts
+++ b/opendc-compute/build.gradle.kts
@@ -21,3 +21,7 @@
*/
description = "Cloud computing fabric controller of OpenDC"
+
+subprojects {
+ group = "org.opendc.compute"
+}
diff --git a/opendc-experiments/build.gradle.kts b/opendc-experiments/build.gradle.kts
index a1a751a2..55699694 100644
--- a/opendc-experiments/build.gradle.kts
+++ b/opendc-experiments/build.gradle.kts
@@ -19,3 +19,7 @@
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
+
+subprojects {
+ group = "org.opendc.experiments"
+}
diff --git a/opendc-faas/build.gradle.kts b/opendc-faas/build.gradle.kts
index 2493639f..002582bb 100644
--- a/opendc-faas/build.gradle.kts
+++ b/opendc-faas/build.gradle.kts
@@ -21,3 +21,7 @@
*/
description = "Function-as-a-Service (FaaS) platform for OpenDC"
+
+subprojects {
+ group = "org.opendc.faas"
+}
diff --git a/opendc-harness/build.gradle.kts b/opendc-harness/build.gradle.kts
index 7a9a8463..ddb8b5bf 100644
--- a/opendc-harness/build.gradle.kts
+++ b/opendc-harness/build.gradle.kts
@@ -21,3 +21,7 @@
*/
description = "Harness for defining repeatable experiments using OpenDC"
+
+subprojects {
+ group = "org.opendc.harness"
+}
diff --git a/opendc-simulator/build.gradle.kts b/opendc-simulator/build.gradle.kts
index e69de29b..b29a2fdb 100644
--- a/opendc-simulator/build.gradle.kts
+++ b/opendc-simulator/build.gradle.kts
@@ -0,0 +1,27 @@
+/*
+ * Copyright (c) 2022 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 = "Low-level simulation components of OpenDC"
+
+subprojects {
+ group = "org.opendc.simulator"
+}
diff --git a/opendc-telemetry/build.gradle.kts b/opendc-telemetry/build.gradle.kts
index 7edfd134..6473a29e 100644
--- a/opendc-telemetry/build.gradle.kts
+++ b/opendc-telemetry/build.gradle.kts
@@ -19,3 +19,9 @@
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
+
+description = "Telemetry processing for OpenDC"
+
+subprojects {
+ group = "org.opendc.telemetry"
+}
diff --git a/opendc-trace/build.gradle.kts b/opendc-trace/build.gradle.kts
index 7edfd134..08a3d832 100644
--- a/opendc-trace/build.gradle.kts
+++ b/opendc-trace/build.gradle.kts
@@ -19,3 +19,9 @@
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
+
+description = "Workload trace processing in OpenDC"
+
+subprojects {
+ group = "org.opendc.trace"
+}
diff --git a/opendc-web/build.gradle.kts b/opendc-web/build.gradle.kts
index 7edfd134..47b19763 100644
--- a/opendc-web/build.gradle.kts
+++ b/opendc-web/build.gradle.kts
@@ -19,3 +19,9 @@
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
+
+description = "Interactive web interface for OpenDC"
+
+subprojects {
+ group = "org.opendc.web"
+}
diff --git a/opendc-workflow/build.gradle.kts b/opendc-workflow/build.gradle.kts
index 3cefa409..ae05d4ad 100644
--- a/opendc-workflow/build.gradle.kts
+++ b/opendc-workflow/build.gradle.kts
@@ -21,3 +21,7 @@
*/
description = "Workflow orchestration for OpenDC"
+
+subprojects {
+ group = "org.opendc.workflow"
+}