org.ajoberstar.github-pages
Owner: Andrew Oberstar
Git plugins for Gradle
http://github.com/ajoberstar/gradle-git
Version 0.10.0-milestone.1+fcc896a
Created 03 January 2017.
No version description available.
Add this plugin to your build using the plugins DSL:
plugins {
id("org.ajoberstar.github-pages") version "0.10.0-milestone.1+fcc896a"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("org.ajoberstar.github-pages:org.ajoberstar.github-pages.gradle.plugin:0.10.0-milestone.1+fcc896a") }
It can then be applied in the precompiled script plugin:plugins { id("org.ajoberstar.github-pages") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.ajoberstar.github-pages:org.ajoberstar.github-pages.gradle.plugin:0.10.0-milestone.1+fcc896a") } } apply(plugin = "org.ajoberstar.github-pages")
- Applying plugins to all subprojects .