au.com.dius.pact.consumer.PactFolder.kt Maven / Gradle / Ivy
package au.com.dius.pact.consumer
import java.lang.annotation.Inherited
/**
* Used to point Pact runner to the directory where the pact files are stored
*/
@Retention(AnnotationRetention.RUNTIME)
@Target(AnnotationTarget.CLASS, AnnotationTarget.FILE)
@Inherited
annotation class PactFolder(
/**
* @return path to subfolder of project resource folder with pacts
*/
val value: String
)