io.pivotal.hugo-course
Owner: Shipkin
Hugo course deploy plugin
https://github.com/pivotal-education/hugo-course
Sources: https://github.com/pivotal-education/hugo-course
Add this plugin to your build using the plugins DSL:
plugins {
id("io.pivotal.hugo-course") version "1.0.1-RELEASE"
}
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("io.pivotal.hugo-course:io.pivotal.hugo-course.gradle.plugin:1.0.1-RELEASE") }
It can then be applied in the precompiled script plugin:plugins { id("io.pivotal.hugo-course") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.pivotal.hugo-course:io.pivotal.hugo-course.gradle.plugin:1.0.1-RELEASE") } } apply(plugin = "io.pivotal.hugo-course")
- Applying plugins to all subprojects .