Skip to content

Instantly share code, notes, and snippets.

@xconnecting
Created November 8, 2012 00:54
Show Gist options
  • Save xconnecting/4035705 to your computer and use it in GitHub Desktop.
Save xconnecting/4035705 to your computer and use it in GitHub Desktop.
Sample: Gradle task class
package com.example
import org.gradle.api.DefaultTask;
import org.gradle.api.tasks.TaskAction;
class GreetingTask extends DefaultTask {
def greeting = 'Hello'
@TaskAction
def greet() {
println greeting
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment