io.github.fstaudt.hugo
Owner:
François Staudt
Build Hugo static sites with Gradle!
https://github.com/fstaudt/gradle-hugo-plugin
Sources: https://github.com/fstaudt/gradle-hugo-plugin
Using the plugins DSL:
plugins {
id("io.github.fstaudt.hugo") version "0.6.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.fstaudt.hugo:gradle-hugo-plugin:0.6.1")
}
}
apply(plugin = "io.github.fstaudt.hugo")
Using the plugins DSL:
plugins {
id "io.github.fstaudt.hugo" version "0.6.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.fstaudt.hugo:gradle-hugo-plugin:0.6.1"
}
}
apply plugin: "io.github.fstaudt.hugo"