From e8f270c209221bb2eae062321bcd10e49d436e29 Mon Sep 17 00:00:00 2001 From: Juraj Michalek Date: Sat, 10 May 2014 19:16:19 +0200 Subject: [PATCH] gradle plugin loaded from gist at github --- 13-plugin-from-gist/build.gradle | 2 ++ README.md | 10 ++++++++++ 2 files changed, 12 insertions(+) create mode 100644 13-plugin-from-gist/build.gradle diff --git a/13-plugin-from-gist/build.gradle b/13-plugin-from-gist/build.gradle new file mode 100644 index 0000000..1d64f4f --- /dev/null +++ b/13-plugin-from-gist/build.gradle @@ -0,0 +1,2 @@ +apply from: 'https://gist.githubusercontent.com/georgik/71663c6d8d4e01783733/raw/7836c7946d1e92236b92c39314780c2bfcda2864/gistPlugin.gradle' + diff --git a/README.md b/README.md index ef21e32..3716496 100644 --- a/README.md +++ b/README.md @@ -129,3 +129,13 @@ Gradle uses notion of plugins. Check helloPlugin.gradle file. gradle tasks gradle helloFromPlugin + + +## 13-plugin-from-gist + +Gradle allows to include code/plugins from network resource. +In this example plugin is stored as gist at Github +- https://gist.github.com/georgik/71663c6d8d4e01783733 + + gradle tasks + gradle helloFromGist