apply plugin: 'org.gretty'
import org.akhikhl.gretty.AppAfterIntegrationTestTask
task('MyAfterIntegration', type: AppAfterIntegrationTestTask) {
// ...
}
class VerySpecialAfterIntegration extends AppAfterIntegrationTestTask {
// ...
}
task('MyAfterIntegration2', type: VerySpecialAfterIntegration) {
// ...
}