You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: projectguard/src/main/kotlin/com/rubensousa/projectguard/plugin/internal/report/VerificationReportBuilder.kt
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -75,8 +75,8 @@ internal class VerificationReportBuilder(
75
75
report.configurations.forEach { configuration ->
76
76
// TODO: Until https://github.com/rubensousa/ProjectGuard/issues/3 is clarified,
77
77
// filter out test dependencies from the graph reports
78
-
if (configuration.id =="compileClasspath") {
79
-
val moduleDependencies = graph.getOrPut(report.module) { mutableSetOf() }
78
+
val moduleDependencies = graph.getOrPut(report.module) {mutableSetOf() }
79
+
if (DependencyGraphBuilder.isReleaseConfiguration(configuration.id)) {
0 commit comments