From f1daebc9d49910d9300da6616bc30baf2ab9650d Mon Sep 17 00:00:00 2001 From: Fabian Mastenbroek Date: Sat, 23 Apr 2022 11:43:22 +0200 Subject: build: Enable testing for all library modules This change updates the Gradle build configuration to ensure that all library modules (that will be published) use testing and are included in coverage reports. This should ensure the public modules remain well tested. --- opendc-experiments/opendc-experiments-capelin/build.gradle.kts | 1 + 1 file changed, 1 insertion(+) (limited to 'opendc-experiments') diff --git a/opendc-experiments/opendc-experiments-capelin/build.gradle.kts b/opendc-experiments/opendc-experiments-capelin/build.gradle.kts index 2def3dc5..9495f4ca 100644 --- a/opendc-experiments/opendc-experiments-capelin/build.gradle.kts +++ b/opendc-experiments/opendc-experiments-capelin/build.gradle.kts @@ -26,6 +26,7 @@ description = "Experiments for the Capelin work" plugins { `experiment-conventions` `testing-conventions` + `jacoco-conventions` `benchmark-conventions` } -- cgit v1.2.3 From e1a5b581ae957cc5b07c6083557cd3bcc137894b Mon Sep 17 00:00:00 2001 From: Fabian Mastenbroek Date: Sat, 23 Apr 2022 12:11:44 +0200 Subject: 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. --- opendc-experiments/build.gradle.kts | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'opendc-experiments') 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" +} -- cgit v1.2.3