apply plugin: 'org.gretty'
import org.akhikhl.gretty.AppBeforeIntegrationTestTask
task('MyBeforeIntegration', type: AppBeforeIntegrationTestTask) {
// ...
}
class VerySpecialBeforeIntegration extends AppBeforeIntegrationTestTask {
// ...
}
task('MyBeforeIntegration2', type: VerySpecialBeforeIntegration) {
// ...
}