Matt Groth

Results 128 comments of Matt Groth

I've been able to successfully remove the shadow jars from the maven publications by manually removing them from the artifacts of the publication. But I cannot remove the task dependency....

@rjrudin Thanks for following up on this. I no longer apply the shadow plugin in any of my modules that are publishing to a maven repo. This has been my...

Hey, sure I will clarify. Let's say I just have `:core` and `:lib`. I want to only have on test source set in `:core`. `:lib` will be on the classpath...

Almost. In my example, `:lib` has no test source set. All tests for `:lib` classes are contained in the `:core` test source set. The `:core` test source set also contains...

Can I ask for clarification about the difference between `equals` (`==`) between data and non-data objects? I am focusing on jvm for this question, but I'm curious about other platforms...

@elizarov I second @spand 's desire to spread a sealed hierarchy throughout multiple packages in a module. My use case is that I want the code defining the sealed hierarchy...

Thanks for explaining. If I understand correctly, implementing `Iterable` would only incur boxing when the `iterator` method is called. I don't have one specific use case, but it seems all...

@cortinico Great point. I didn't think about cases like this. I could not fully solve this problem yet, but I made some progress. This will try to see if a...

Updated the code above. It is hacky and should be used with caution.