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
I have to input Marathon's JUnit XML to another downstream finalizer task, but the MarathonRunTask does not make this easy because the output directory for it is not explicitly defined.
The following is defined, but it does not seem usable?
var fakeLockingOutput = layout.buildDirectory.file("fake-marathon-locking-output")
There's:
val extensionConfig = marathonExtension.get()
val baseOutputDir = extensionConfig.baseOutputDir?.let { File(it) } ?: layout.buildDirectory.file("reports/marathon").get().asFile
val output = File(baseOutputDir, flavorName.get())
Which I could duplicate the logic for, but it would be brittle. If the MarathonRunTask could expose a Provider<Directory> as output - that would be much preferred/appreciated!
The text was updated successfully, but these errors were encountered:
I have to input Marathon's JUnit XML to another downstream finalizer task, but the
MarathonRunTask
does not make this easy because the output directory for it is not explicitly defined.The following is defined, but it does not seem usable?
There's:
Which I could duplicate the logic for, but it would be brittle. If the
MarathonRunTask
could expose aProvider<Directory>
as output - that would be much preferred/appreciated!The text was updated successfully, but these errors were encountered: