Skip to content

Commit

Permalink
[Fix] Proejct List 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
seyeon22222 committed Dec 31, 2024
1 parent 8810f8d commit 21ac71b
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions gg-utils/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
))
Expand All @@ -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)
}
))
Expand Down Expand Up @@ -100,13 +104,17 @@ 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'))
jacocoAggregation(project(':gg-repo'))
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 {
Expand Down

0 comments on commit 21ac71b

Please sign in to comment.