Hey folks. Suppose I have a project with two inclu...
# community-support
k
Hey folks. Suppose I have a project with two included builds:
Copy code
includeBuild("included1")
includeBuild("included2")
And let's say that both included builds make use of the Detekt plugin. What I want to do in my project is to aggregate the Detekt reports from the two included builds together and create an aggregate report. (The Detekt plugin comes with a task that can perform aggregation.) The question is: it it possible to do so? I read somewhere that reports like these are "non-publishable", so I might not be able to pull the original reports in the first place.