From 21ac71bfee772b96e6d1954316be606add4447aa Mon Sep 17 00:00:00 2001 From: seykim Date: Tue, 31 Dec 2024 19:34:46 +0900 Subject: [PATCH] =?UTF-8?q?[Fix]=20Proejct=20List=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- gg-utils/build.gradle | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/gg-utils/build.gradle b/gg-utils/build.gradle index 5cd09ebf3..0d494e2b0 100644 --- a/gg-utils/build.gradle +++ b/gg-utils/build.gradle @@ -48,7 +48,9 @@ integrationTestCoverageReport { getClassDirectories().setFrom(files( [project(':gg-data'), project(':gg-admin-repo'), project(':gg-repo'), project(':gg-pingpong-api'), - project(':gg-auth'), project(':gg-utils')].collect { + project(':gg-auth'), project(':gg-utils'), + project(':gg-recruit-api'), project(':gg-agenda-api'), + project(':gg-calendar-api')].collect { it.fileTree(dir: "${it.buildDir}/classes/java/main", exclude: jacocoExcludes) } )) @@ -65,7 +67,9 @@ unitTestCoverageReport { getClassDirectories().setFrom(files( [project(':gg-data'), project(':gg-admin-repo'), project(':gg-repo'), project(':gg-pingpong-api'), - project(':gg-auth'), project(':gg-utils')].collect { + project(':gg-auth'), project(':gg-utils'), + project(':gg-recruit-api'), project(':gg-agenda-api'), + project(':gg-calendar-api')].collect { it.fileTree(dir: "${it.buildDir}/classes/java/main", exclude: jacocoExcludes) } )) @@ -100,6 +104,8 @@ dependencies { testFixturesImplementation project(":gg-admin-repo") testFixturesImplementation project(":gg-pingpong-api") testFixturesImplementation project(":gg-recruit-api") + testFixturesImplementation project(":gg-agenda-api") + testFixturesImplementation project(":gg-calendar-api") jacocoAggregation(project(':gg-data')) jacocoAggregation(project(':gg-auth')) @@ -107,6 +113,8 @@ dependencies { jacocoAggregation(project(':gg-admin-repo')) jacocoAggregation(project(':gg-pingpong-api')) jacocoAggregation(project(':gg-recruit-api')) + jacocoAggregation(project(':gg-agenda-api')) + jacocoAggregation(project(':gg-calendar-api')) } test {