com.github.bmsantos.gradle.cola.ColaGradlePlugin.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cola-gradle-plugin Show documentation
Show all versions of cola-gradle-plugin Show documentation
COLA Tests is a plugin that automatically injects BDD stories into normal JUnit POJOs.
package com.github.bmsantos.gradle.cola
import org.gradle.api.Project
import org.gradle.api.Task
import org.gradle.api.Plugin
class ColaGradlePlugin implements Plugin {
void apply(Project project) {
project.extensions.create('cola', ColaConfig)
project.task('colac', type: ColaCompileTask, description: 'Cola Tests Compiler Task')
}
}