move custom plugin to plugins directory

This commit is contained in:
Juraj Michalek
2014-05-11 09:55:48 +02:00
parent e8f270c209
commit 7b418f5d7d
2 changed files with 1 additions and 1 deletions

View File

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