All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.energizedwork.spock.extensions.TempDirectory.groovy Maven / Gradle / Ivy

Go to download

Test harness for Gradle plugins. Hopefully retiring in favor of Gradle TestKit

There is a newer version: 10.6.1
Show newest version
package com.energizedwork.spock.extensions

import org.spockframework.runtime.extension.ExtensionAnnotation

import java.lang.annotation.ElementType
import java.lang.annotation.Retention
import java.lang.annotation.RetentionPolicy
import java.lang.annotation.Target

@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
@ExtensionAnnotation(TempDirectoryExtension)
@interface TempDirectory {
    String baseDir() default 'build/test'
    boolean clean() default false
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy