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
Version 1.0.1-RELEASE (latest)
1.0.1-RELEASE
Created 02 February 2017.
Hugo course deploy plugin
Using the plugins DSL:
plugins {
id("io.pivotal.hugo-course") version "1.0.1-RELEASE"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.io.pivotal:hugo-course:1.0.1-RELEASE")
}
}
apply(plugin = "io.pivotal.hugo-course")
Using the plugins DSL:
plugins {
id "io.pivotal.hugo-course" version "1.0.1-RELEASE"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.io.pivotal:hugo-course:1.0.1-RELEASE"
}
}
apply plugin: "io.pivotal.hugo-course"