12 custom plugin

This commit is contained in:
Juraj Michalek
2014-05-09 22:50:00 +02:00
parent e3e264d8c2
commit 78f70e52c4
3 changed files with 19 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
apply from: "helloPlugin.gradle"

View File

@@ -0,0 +1,8 @@
task helloFromPlugin() {
description "Say Hello! Code implemented in plugin."
doLast {
println "Hello from plugin!"
}
}