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

com.github.bmsantos.gradle.cola.ColaGradlePlugin.groovy Maven / Gradle / Ivy

Go to download

COLA Tests is a plugin that automatically injects BDD stories into normal JUnit POJOs.

There is a newer version: 0.5.0
Show newest version
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')
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy