Kristof
11/27/2024, 6:25 AMReportContainer
(This one to be precise: https://github.com/TNG/JGiven/blob/4de096ae84bb6e4da06418e70a3bf3ccc01d76fb/jgiven[…]/tngtech/jgiven/gradle/internal/JGivenReportsContainerImpl.java)
Unfortunately it doesn't actually implement anything but rather relies on gradle's internal TaskReportContainer
to function. Or rather, relied, as that class got deleted with gradle 8.11.
Now, I tried to implement the report container interface directly, but it appears to me that to do that I actually have to implement over 20 methods, including some from java.util.Collection. That just seems wrong.
My question is thusly: Are there any implementations that would facilitate using this interface? My Reports usually come as a collection of files (bunch of text files, bunch of asciidoc files and one js/html app)Christian Grach
11/27/2024, 7:26 AMVampire
11/27/2024, 8:01 AMChristian Grach
11/27/2024, 8:10 AMVampire
11/27/2024, 8:48 AMKristof
11/27/2024, 3:42 PMKristof
11/29/2024, 5:28 AM