summaryrefslogtreecommitdiff
path: root/opendc-web
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 /opendc-web
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.
Diffstat (limited to 'opendc-web')
-rw-r--r--opendc-web/build.gradle.kts6
1 files changed, 6 insertions, 0 deletions
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"
+}