Skip to content

Instantly share code, notes, and snippets.

@xconnecting
Created November 8, 2012 00:53
Show Gist options
  • Save xconnecting/4035701 to your computer and use it in GitHub Desktop.
Save xconnecting/4035701 to your computer and use it in GitHub Desktop.
Sample: Gradle plugin class
package com.example
import org.gradle.api.Plugin
import org.gradle.api.Project
class Greeting implements Plugin<Project> {
void apply(Project target) {
target.task('greet', type: GreetingTask)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment