From d447295f535c3587c82d809397cb1a5f23ab1b4b Mon Sep 17 00:00:00 2001 From: Fabian Mastenbroek Date: Thu, 6 Oct 2022 11:08:03 +0200 Subject: build: Remove unused distribution conventions This change removes the distribution conventions used by the root project of OpenDC. Previously, we used this to build a single distribution for OpenDC containing the experiment uberjars and scripts to start OpenDC. However, with the introduction of the Quarkus-based web server, we have decided to split releases into (potentially) multiple distributions (e.g., one for the web server, one for just the web runner, etc.). Furthermore, the implementation of this convention caused issues with several other Gradle plugins. --- build.gradle.kts | 1 - 1 file changed, 1 deletion(-) (limited to 'build.gradle.kts') diff --git a/build.gradle.kts b/build.gradle.kts index 87a338b9..bda23ae8 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -23,7 +23,6 @@ plugins { `dokka-conventions` `jacoco-aggregation` - `distribution-conventions` } allprojects { -- cgit v1.2.3 From 00a28ee84606754d186c39e9aa39d2ad2c277c91 Mon Sep 17 00:00:00 2001 From: Fabian Mastenbroek Date: Thu, 6 Oct 2022 11:11:32 +0200 Subject: build: Update next version to 3.0 This change updates the build script in preparation for the OpenDC v3.0 release changing the version numbers to the appropriate values. --- build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'build.gradle.kts') diff --git a/build.gradle.kts b/build.gradle.kts index bda23ae8..73f002b1 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -26,5 +26,5 @@ plugins { } allprojects { - version = "2.1-rc1" + version = "3.0-rc1" } -- cgit v1.2.3