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. --- buildSrc/src/main/kotlin/java-library-conventions.gradle.kts | 2 ++ 1 file changed, 2 insertions(+) (limited to 'buildSrc') diff --git a/buildSrc/src/main/kotlin/java-library-conventions.gradle.kts b/buildSrc/src/main/kotlin/java-library-conventions.gradle.kts index 6a091a37..4af3d496 100644 --- a/buildSrc/src/main/kotlin/java-library-conventions.gradle.kts +++ b/buildSrc/src/main/kotlin/java-library-conventions.gradle.kts @@ -23,6 +23,8 @@ plugins { id("java-conventions") id("publishing-conventions") + id("testing-conventions") + id("jacoco-conventions") } java { -- cgit v1.2.3