Skip to content

Instantly share code, notes, and snippets.

@musketyr
Created March 25, 2011 14:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save musketyr/886893 to your computer and use it in GitHub Desktop.
Save musketyr/886893 to your computer and use it in GitHub Desktop.
How should be Gaelyk plugins defined in Gradle build
// since the missing task arguments, the plugins will be defined in gaelyk block
apply plugin: 'gaelyk'
gaelyk {
// during each build will be checked this plugins against installed and any missing
// will be installed automatically
apply git: 'https://github.com/bmuschko/gaelyk-datastore-viewer-plugin.git'
apply zip: 'path/to/zipped/plugin.zip'
// if I delete or comment some installed plugin, it will be uninstalled automatically
// apply zip: 'path/to/zipped/plugin2.zip'
// in future will be great to have some easy user manager"plugin central"
// preferably build using gaelyk and running on e.g. gaelyk.appspot.com/plugins
// which will map plugin names and version to their URLs
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment