com.github.mictaege.arete_gradle.SpecificationWriter.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of arete-gradle Show documentation
Show all versions of arete-gradle Show documentation
This repository contains the Arete Gradle Plugin.
The newest version!
package com.github.mictaege.arete_gradle
interface SpecificationWriter {
fun writeSpec(step: SpecificationStep)
fun finishPlan(plan: SpecificationPlan)
companion object {
val allWriter = arrayListOf(ConsoleWriter(), HtmlWriter())
}
}