Support for gradle files

This commit is contained in:
Paul Chaignon
2014-11-28 23:00:35 -05:00
parent cfd95360cb
commit 4ed58c743d
4 changed files with 46 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
apply plugin: GreetingPlugin
greeting.message = 'Hi from Gradle'
class GreetingPlugin implements Plugin<Project> {
void apply(Project project) {
// Add the 'greeting' extension object
project.extensions.create("greeting", GreetingPluginExtension)
// Add a task that uses the configuration
project.task('hello') << {
println project.greeting.message
}
}
}
class GreetingPluginExtension {
def String message = 'Hello from GreetingPlugin'
}